mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-13 22:10:21 +00:00
13 lines
292 B
Plaintext
Executable File
13 lines
292 B
Plaintext
Executable File
# package install script
|
|
|
|
action=$1
|
|
newversion=$2
|
|
oldversion=$3
|
|
|
|
case $action in
|
|
post-install)
|
|
getent group lightdm >/dev/null || groupadd -g 65 lightdm
|
|
getent passwd lightdm >/dev/null || useradd -c "Lightdm Daemon" -d /var/lib/lightdm -u 65 -g lightdm -s /bin/false lightdm
|
|
;;
|
|
esac
|