mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
- updated to the latest release - re-enabled ffmpeg support - switched to openrc init - used /var/lib/motion for storage - disabled cpu optimization
7 lines
170 B
Bash
7 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
|