From 48cd58f9a0b9f5d1ae0e28b48e987d6ea60fbb52 Mon Sep 17 00:00:00 2001 From: Garrett Holmstrom Date: Fri, 20 Sep 2013 16:41:45 -0700 Subject: [PATCH] Fix restorecon failure when selinux is disabled https://bugzilla.redhat.com/show_bug.cgi?id=967002 https://bugs.launchpad.net/bugs/1228441 --- cloud-init-0.7.2-selinux-enabled.patch | 20 ++++++++++++++++++++ cloud-init.spec | 8 ++++++++ 2 files changed, 28 insertions(+) create mode 100644 cloud-init-0.7.2-selinux-enabled.patch diff --git a/cloud-init-0.7.2-selinux-enabled.patch b/cloud-init-0.7.2-selinux-enabled.patch new file mode 100644 index 0000000..9c6f4ea --- /dev/null +++ b/cloud-init-0.7.2-selinux-enabled.patch @@ -0,0 +1,20 @@ +Index: cloud-init-0.7.2/cloudinit/util.py +=================================================================== +--- cloud-init-0.7.2.orig/cloudinit/util.py ++++ cloud-init-0.7.2/cloudinit/util.py +@@ -161,13 +161,13 @@ class SeLinuxGuard(object): + self.recursive = recursive + + def __enter__(self): +- if self.selinux: ++ if self.selinux and self.selinux.is_selinux_enabled(): + return True + else: + return False + + def __exit__(self, excp_type, excp_value, excp_traceback): +- if self.selinux: ++ if self.selinux and self.selinux.is_selinux_enabled(): + path = os.path.realpath(os.path.expanduser(self.path)) + do_restore = False + try: diff --git a/cloud-init.spec b/cloud-init.spec index 80c4cd6..9107747 100644 --- a/cloud-init.spec +++ b/cloud-init.spec @@ -27,6 +27,12 @@ Patch1: cloud-init-0.7.2-puppetagent.patch # https://bugs.launchpad.net/bugs/1228434 Patch2: cloud-init-0.7.2-nodevconsole.patch +# Fix restorecon failure when SELinux is disabled +# https://bugzilla.redhat.com/show_bug.cgi?id=967002 +# https://bugs.launchpad.net/bugs/1228441 +Patch3: cloud-init-0.7.2-selinux-enabled.patch + + BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -66,6 +72,7 @@ ssh keys and to let the user run various scripts. %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 cp -p %{SOURCE2} README.fedora @@ -149,6 +156,7 @@ fi * Fri Sep 20 2013 Garrett Holmstrom - 0.7.2-5 - Fixed puppet agent service name [RH:1008250] - Let systemd handle console output [RH:977952 LP:1228434] +- Fixed restorecon failure when selinux is disabled [RH:967002 LP:1228441] * Sat Aug 03 2013 Fedora Release Engineering - 0.7.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild