blob: 31249dba6d4b7ccf2d3c398fbc51d3164c01500d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
addgroup -S haclient 2>/dev/null
adduser -S \
-h /var/lib/heartbeat/cores/hacluster \
-s /sbin/nologin \
-G haclient \
-g hacluster \
hacluster \
2>/dev/null
exit 0
|