apkbuilds @ 3e74fa3b3f4c1069616495decb06d601526986bd

 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