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