mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 22:37:12 +02:00
- updated to the latest release - re-enabled ffmpeg support - switched to openrc init - used /var/lib/motion for storage - disabled cpu optimization
8 lines
170 B
Bash
8 lines
170 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S motion 2>/dev/null
|
|
adduser -S -D -h /var/lib/motion -s /bin/false -G motion -g motion motion 2>/dev/null
|
|
addgroup motion video 2>/dev/null
|
|
|
|
exit 0
|