1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/testing/aprx/aprx.pre-install
Milan P. Stanić 7106a097e1 testing/aprx: new aport
http://thelifeofkenneth.com/aprx/
aprx digipeater and iGate
2020-07-07 19:29:08 +00:00

8 lines
208 B
Bash

#!/bin/sh
if ! getent group aprx >/dev/null; then
addgroup -S aprx 2>/dev/null
fi
if ! getent passwd aprs >/dev/null; then
adduser -S -H -h /run/aprx -s /sbin/nologin -G aprx -g aprx aprx 2>/dev/null
fi