mirror of https://github.com/ceph/ceph
6 lines
150 B
Plaintext
6 lines
150 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
addgroup ceph -g 167 -S 2>/dev/null
|
||
|
adduser ceph -u 167 -S -G ceph -s /sbin/nologin -h /var/lib/ceph -g "Ceph Daemons" 2> /dev/null
|
||
|
exit 0
|