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]
/
meteor
/
meteor.install
blob
c925710892f059eca2e689a3e877b97452aa8b9d
1
2
post_install() {
3
if [ ! `egrep '^meteor:' /etc/group` ]; then
4
groupadd meteor
5
fi
6
if [ ! `egrep '^meteor:' /etc/passwd` ]; then
7
useradd -g meteor -s /bin/false meteor
8
fi
9
chown -R meteor:meteor /srv/meteor/
10
}
11