rebuild *tox*

This commit is contained in:
4fury-c3440d8
2022-04-28 19:53:00 +03:00
parent f6af1e01c8
commit 9daeac2e90
10 changed files with 224 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
import os
DIR = "/var/lib/tox-bootstrapd"
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
try:
os.system("useradd -r -m -d %s -s /sbin/nologin -U tox-bootstrapd" % DIR)
except:
pass
os.chmod(DIR, 0700)
def postRemove():
try:
os.system("userdel -r tox-bootstrapd")
os.system("groupdel tox-bootstrapd")
except:
pass