summarylogtreecommitdiffstats
path: root/0004-libsemanage-save-homedir_template-in-the-policy-stor.patch
diff options
context:
space:
mode:
Diffstat (limited to '0004-libsemanage-save-homedir_template-in-the-policy-stor.patch')
-rw-r--r--0004-libsemanage-save-homedir_template-in-the-policy-stor.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/0004-libsemanage-save-homedir_template-in-the-policy-stor.patch b/0004-libsemanage-save-homedir_template-in-the-policy-stor.patch
deleted file mode 100644
index 490630642ab9..000000000000
--- a/0004-libsemanage-save-homedir_template-in-the-policy-stor.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 95ea431f76b07b3e6c804b16cae8be38d2047d5a Mon Sep 17 00:00:00 2001
-From: Steve Lawrence <slawrence@tresys.com>
-Date: Thu, 3 Sep 2015 09:28:08 -0400
-Subject: [PATCH 4/5] libsemanage: save homedir_template in the policy store
- for genhomedircon
-
-We don't currently store homedir_template in the policy store, which
-means genhomedircon only has a template file to use if the
-homedir_template was generated from the file contexts in the same
-transaction. But homedir_template isn't always generated, as in the
-case with setsebool -P. In this and other cases, genhomedircon will not
-have a template file resulting in an empty file_contexts.homedir file.
-
-This commit changes this so that homedir_template is always stored in
-the policy store so it can be used by genhomedircon regardless of how
-policy was built. Also add the homedir_template file to the migration
-script.
-
-Signed-off by: Steve Lawrence <slawrence@tresys.com>
-Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
----
- libsemanage/src/direct_api.c | 1 -
- libsemanage/utils/semanage_migrate_store | 3 ++-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/libsemanage/src/direct_api.c b/libsemanage/src/direct_api.c
-index fa4e0eed0603..d77a3e2dff12 100644
---- a/libsemanage/src/direct_api.c
-+++ b/libsemanage/src/direct_api.c
-@@ -1303,7 +1303,6 @@ static int semanage_direct_commit(semanage_handle_t * sh)
-
- /* remove files that are automatically generated and no longer needed */
- unlink(semanage_path(SEMANAGE_TMP, SEMANAGE_FC_TMPL));
-- unlink(semanage_path(SEMANAGE_TMP, SEMANAGE_HOMEDIR_TMPL));
- unlink(semanage_path(SEMANAGE_TMP, SEMANAGE_USERS_EXTRA));
-
- if (sh->do_rebuild || modified || bools_modified || fcontexts_modified) {
-diff --git a/libsemanage/utils/semanage_migrate_store b/libsemanage/utils/semanage_migrate_store
-index 644300277b62..915471501174 100755
---- a/libsemanage/utils/semanage_migrate_store
-+++ b/libsemanage/utils/semanage_migrate_store
-@@ -245,7 +245,8 @@ if __name__ == "__main__":
- "disable_dontaudit",
- "preserve_tunables",
- "policy.kern",
-- "file_contexts"]
-+ "file_contexts",
-+ "homedir_template"]
-
-
- create_dir(newroot_path(), 0o755)
---
-2.5.1
-