summarylogtreecommitdiffstats
path: root/privatebin-cli.install
blob: 3cf3c80888b317e66eda46515779d12a75edd778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
post_install() {
    echo
    echo "You need to configure the privatebin instance to use."
    echo "Read the manual: man privatebin.conf"
    echo
    echo "Or create a config for the default instance:"
    echo "mkdir -p ~/.config/privatebin/"
    echo 'cat << EOF > ~/.config/privatebin/config.json
{
    "bin": [
        {
            "name": "",
            "host": "https://privatebin.net"
        }
    ]
}
EOF'
    echo
}