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=firefly
7group=firefly
8
9chown $user:$group /usr/share/webapps/firefly3
10chown $user:$group /var/lib/firefly3
11
12exit 0