mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-22 04:41:09 +02:00
12 lines
159 B
Bash
12 lines
159 B
Bash
#!/bin/sh
|
|
|
|
addgroup haclient 2>/dev/null
|
|
adduser hacluster \
|
|
-h /var/lib/heartbeat/cores/hacluster \
|
|
-G haclient \
|
|
-s /sbin/nologin \
|
|
2>/dev/null
|
|
|
|
exit 0
|
|
|