blob: 678ef851991f3770d842fbf95af86d29fad72d23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
_notice() {
echo "==> Wire Desktop defaults to using gnome-keyring for secret storage."
echo " To change this, e.g. to kwallet, set the environment variable"
echo " WIRE_PASSWORD_STORE. For possible options, see:"
echo " https://www.electronjs.org/docs/latest/api/safe-storage#safestoragegetselectedstoragebackend-linux"
}
post_install() {
_notice
}
post_upgrade() {
_notice
}
|