18 lines
364 B
Python
Executable file
18 lines
364 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
from osbuild import api
|
|
from osbuild.util import runners
|
|
|
|
if __name__ == "__main__":
|
|
with api.exception_handler():
|
|
runners.ldconfig()
|
|
runners.sysusers()
|
|
runners.tmpfiles()
|
|
runners.nsswitch()
|
|
|
|
r = subprocess.run(sys.argv[1:], check=False)
|
|
|
|
sys.exit(r.returncode)
|