blob: e4b1f772a36022cb9d2766c0246228d0141bca77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
chown -R eturnal:eturnal /opt/eturnal/
echo "Enable the systemd service using 'systemctl enable --now eturnal.service'"
echo ""
echo "An example configuration file is available at /usr/share/doc/eturnal/eturnal.yml"
echo "Place it in /etc/eturnal.yml to get it working."
}
#post_upgrade() {
# chown -R eturnal:eturnal /opt/eturnal/
#}
post_remove() {
echo "To remove remaining configuration files, please run 'rm -rf /opt/eturnal' and 'rm -rf /etc/eturnal.yml"
}
|