You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
post_install() { |
|
# We need to know uid and gid to create /var/lib/jenkins with proper |
|
# permissions. So keep sysusers invocation here despite having |
|
# pacman hooks. |
|
sysusers jenkins.conf |
|
[[ -d var/lib/jenkins ]] || install -dm 750 -o jenkins -g jenkins var/lib/jenkins |
|
}
|
|
|