blob: f5ca232cf2dafe9173a36b6d10aadaf04ad4653e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
chown -R nobody /data/srv/hobbit
# chown -R nobody /data/srv/httpd/htdocs/hobbit
# chown -R nobody /var/log/hobbit
}
post_upgrade() {
post_install $1
}
op=$1
shift
$op $*
# vim: ft=sh ts=2
|