mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-03 15:01:44 +01:00
url: https://git.sr.ht/~gsthnz/satellite pkgdesc: Satellite is a small Gemini server for serving static files
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S satellite 2>/dev/null
|
|
adduser -S -D -H -h /var/empty -s /sbin/nologin -G satellite -g satellite satellite 2>/dev/null
|
|
|
|
exit 0
|
|
|