mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-29 10:21:10 +02:00
7 lines
144 B
Bash
7 lines
144 B
Bash
#!/bin/sh
|
|
addgroup -S motion 2>/dev/null
|
|
adduser -S -h /home/motion -s /bin/false -G motion -D motion 2>/dev/null
|
|
addgroup motion video
|
|
exit 0
|
|
|