blob: 6ef7e40b0d6245f98a0d14a45a702fc12eb5a68a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo ''
echo ' Enable service with $(systemctl enable flaresolverr.service)'
echo ' Start service with $(systemctl start flaresolverr.service)'
echo ''
echo ' If you want to run flaresolverr as a user, add the user to'
echo ' the flaresolverr group $(usermod -a -G flaresolverr $(whoami))\n'
echo ''
}
post_upgrade() {
post_install "${1}"
}
|