You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
437 B
20 lines
437 B
diff --git a/tools/appliance-creator b/tools/appliance-creator
|
|
index c5f75f2..1708431 100755
|
|
--- a/tools/appliance-creator
|
|
+++ b/tools/appliance-creator
|
|
@@ -160,7 +160,14 @@ def main():
|
|
|
|
return 0
|
|
|
|
+def do_nss_sss_hack():
|
|
+ import ctypes as forgettable
|
|
+ hack = forgettable._dlopen('libnss_sss.so.2')
|
|
+ del forgettable
|
|
+ return hack
|
|
+
|
|
if __name__ == "__main__":
|
|
+ hack = do_nss_sss_hack()
|
|
sys.exit(main())
|
|
|
|
|