#!/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