mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-29 23:42:03 +01:00
6 lines
169 B
Bash
6 lines
169 B
Bash
#!/bin/sh
|
|
groupadd tvheadend 2>/dev/null
|
|
adduser -H -h /home/tvheadend -g tvheadend -D -s /bin/false tvheadend 2>/dev/null
|
|
gpasswd -a tvheadend video 2>/dev/null
|
|
exit 0
|