blob: 3ae77409a1c42cd85828d36adedf5f48da74288e (
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 documentation: https://github.com/gearnode/privatebin/blob/master/doc/handbook.md"
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
}
|