mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 16:06:42 +02:00
https://github.com/ncarlier/webhookd A very simple webhook server launching shell scripts
6 lines
149 B
Bash
6 lines
149 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S webhookd 2>/dev/null
|
|
adduser -S -D -h /var/lib/webhookd -s /sbin/nologin -G webhookd -g webhookd webhookd 2>/dev/null
|
|
|
|
exit 0
|