summarylogtreecommitdiffstats
path: root/peercoin.install
blob: ebfad360448c538d16b32d22c50defca31d64eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
    update-desktop-database -q
    systemctl daemon-reload
    ln -s /usr/bin/peercoind /usr/bin/ppcoind

    echo ""
    echo "If you are having troubles with blockchain download, just backup wallet.dat, remove .ppcoin directory and start over."
}

post_upgrade() {
    post_install $1
}

post_remove() {
    post_install $1
    rm /usr/bin/peercoind
}