15 lines
327 B
Python
Executable file
15 lines
327 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("/usr/lib64/iscsi")
|
|
runners.nsswitch()
|
|
|
|
r = subprocess.run(sys.argv[1:], check=False)
|
|
sys.exit(r.returncode)
|