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