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