Makefile | 2 +- imgcreate/kickstart.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit bd7c399756359916628a8016ff69a1064dd2f521 Author: Warren Togami wtogami@redhat.com Date: Mon Oct 19 22:22:27 2009 -0400
version 030
diff --git a/Makefile b/Makefile index 8175ed6..3d1db26 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@
-VERSION = 029 +VERSION = 030
INSTALL = /usr/bin/install -c INSTALL_PROGRAM = ${INSTALL}
commit fb71c65c1d6cb478969b3214c5caa94dc4b2b9af Author: Warren Togami wtogami@redhat.com Date: Mon Oct 19 22:21:59 2009 -0400
I am a moron, committed wrong version of this patch.
diff --git a/imgcreate/kickstart.py b/imgcreate/kickstart.py index c926977..328043c 100644 --- a/imgcreate/kickstart.py +++ b/imgcreate/kickstart.py @@ -406,7 +406,7 @@ class SelinuxConfig(KickstartConfig): """A class to apply a kickstart selinux configuration to a system.""" def relabel(self, ksselinux): # touch some files which get unhappy if they're not labeled correctly - for fn in ("/etc/resolv.conf"): + for fn in ("/etc/resolv.conf",): path = self.path(fn) f = file(path, "w+") os.chmod(path, 0644)