blob: 1adcdb8235a26760fd49dd7c5cf09caff454cdc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
printf " *\n * Add the configration to '/etc/firefly3/env' \n"
printf " * Without it firefly3 won't run.\n *\n"
user=firefly3
group=firefly3
chown $user:$group /usr/share/webapps/firefly3
chown $user:$group /var/lib/firefly3
chown $user:$group /var/log/firefly3
exit 0
|