23 lines
515 B
Python
23 lines
515 B
Python
#!/usr/bin/python
|
|
|
|
import os, re
|
|
|
|
OUR_ID = 101
|
|
OUR_NAME = "dbus"
|
|
OUR_DESC = "dbus"
|
|
|
|
|
|
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
|
try:
|
|
os.system ("groupadd -g %d %s" % (OUR_ID, OUR_NAME))
|
|
os.system ("useradd -m -d /run/dbus -r -s /bin/false -u %d -g %d %s -c \"%s\"" % (OUR_ID, OUR_ID, OUR_NAME, OUR_DESC))
|
|
except:
|
|
pass
|
|
|
|
def postRemove():
|
|
try:
|
|
os.system ("userdel %s" % OUR_NAME)
|
|
os.system ("groupdel %s" % OUR_NAME)
|
|
except:
|
|
pass
|