[Fedora-livecd-list] 2 commits - Makefile tools/livecd-creator

Brian C. Lane bcl at fedoraproject.org
Tue Oct 21 19:15:58 UTC 2014


 Makefile             |    2 +-
 tools/livecd-creator |    7 +++++++
 2 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 4dcf44f852072c60abb6547f973c8bfc5af71694
Author: Brian C. Lane <bcl at redhat.com>
Date:   Tue Oct 21 12:11:48 2014 -0700

    Preload the libnss_sss library (#1127103)
    
    This is a total hack, but in order to make sure the library is loaded
    from the build host and not from the target chroot we need to do this.
    
    This also means that the spec needs to Require: sssd-client

diff --git a/tools/livecd-creator b/tools/livecd-creator
index ac81cbb..f761d14 100755
--- a/tools/livecd-creator
+++ b/tools/livecd-creator
@@ -225,5 +225,12 @@ 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())


commit 3cb6d9577b0b1da16c3a69a777e791fef35db892
Author: Brian C. Lane <bcl at redhat.com>
Date:   Mon Oct 20 10:01:14 2014 -0700

    Version 21.3

diff --git a/Makefile b/Makefile
index 78de9cf..8925df1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 
-VERSION = 21.2
+VERSION = 21.3
 
 INSTALL = /usr/bin/install -c
 INSTALL_PROGRAM = ${INSTALL}




More information about the livecd mailing list