mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
8 lines
262 B
Text
8 lines
262 B
Text
post_install() {
|
|
getent group beaglidx >/dev/null || usr/sbin/groupadd -g 86 beaglidx
|
|
getent passwd beaglidx >/dev/null || usr/sbin/useradd -c 'User for Beagle indexing' -u 86 -g beaglidx -d '/' -s /bin/false beaglidx
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|