blob: c4f4fa334211e39b3c9c249c816956153f16977e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
post_install() {
post_upgrade
}
post_upgrade() {
cat << EOF
NOTE: You need to run the script below to finish setting things up for your user account.
/opt/tresorit/archlinux_user_install
It'll install tresorit to ~/.local/share/tresorit directory for the user you run it as.
EOF
}
post_remove() {
cat << EOF
NOTE: To fully clean up you should also remove the following directory if you don't need your tresorit data anymore:
\$HOME/.local/share/tresorit
Also remove the application shortcut:
\$HOME/.local/share/applications/tresorit.desktop
EOF
}
|