aboutsummaryrefslogtreecommitdiff
path: root/apks/firefly3/firefly3.post-install
blob: a92883d15c27ef04f278ed1613081909a2e2ab68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

printf "  *\n  * Add the configration to '/etc/firefly3/env' \n"
printf "  * Without it firefly3 won't run.\n  *\n"

user=firefly
group=firefly

chown $user:$group /usr/share/webapps/firefly3
chown $user:$group /var/lib/firefly3

exit 0