summarylogtreecommitdiffstats
path: root/keepass-plugin-rpc.install
blob: 979c2e743fff77a1f66c325a73b73f52eb69e216 (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
## arg 1:  the new package version
post_install() {
    echo "> The plugin has been installed to the following location:"
    echo ">     /usr/share/keepass/plugins/"
    echo ">"
    echo "> If you are using KeePass for Firefox, please set this as"
    echo "> the KeePassRPC installation directory in the KeeFox addon"
    echo "> options on the \"KeePass\" tab."
}

## arg 1:  new package full version string
## arg 2:  old package full version string
post_upgrade() {
    if [ "$2" = "1.4.4-1" ]; then
        echo "> Important change:"
        echo "> -----------------"
        echo ">"
        echo "> The plugin has been moved to the following location:"
        echo ">     /usr/share/keepass/plugins/"
        echo ">"
        echo "> If you are using KeePass for Firefox, please set this as"
        echo "> the KeePassRPC installation directory in the KeeFox addon"
        echo "> options on the \"KeePass\" tab."
    fi
}