mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-03 03:21:35 +02:00
16 lines
248 B
Bash
Executable File
16 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
pre_install)
|
|
adduser -h /dev/null -s /bin/false -D freeswitch 2>/dev/null
|
|
;;
|
|
post_install)
|
|
chown -R freeswitch:freeswitch /etc/freeswitch/
|
|
;;
|
|
post_deinstall)
|
|
deluser freeswitch
|
|
delgroup freeswitch
|
|
;;
|
|
esac
|
|
|