repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git]
/
typo3
/
typo3.install
blob
fcd84bbf4ae83fa2c32648c66bf31c59a52e43b9
1
2
set_permissions() {
3
if ! cat /etc/group |grep -q http; then
4
groupadd http
5
fi
6
chgrp -R http /srv/http/typo3_src
7
}
8
9
post_install() {
10
set_permissions
11
}
12
13
post_upgrade() {
14
set_permissions
15
}
16
17
# vim:set ts=2 sw=2 et: