libsemanage: ensure migrated files have the correct types

All files in /var/lib/selinux/ are now labeled the same as those in
/etc/selinux/<store>/modules/active, which in refpolicy is semanage_store_t.

Signed-off-by: Steve Lawrence <slawrence@tresys.com>
Reviewed-by: Yuli Khodorkovskiy <ykhodorkovskiy@tresys.com>
This commit is contained in:
Steve Lawrence 2014-12-02 13:43:46 -05:00
parent b9abc5c6e7
commit f21b2e138c

View File

@ -138,8 +138,8 @@ def migrate_store(store):
print("Migrating from %s to %s" % (oldstore, newstore))
# Build up new directory structure
create_dir_from(selinux.selinux_policy_root(), "%s/%s" % (newroot_path(), store), 0o755)
create_dir_from(oldmodules, newstore, 0o700)
create_dir_from(oldstore, "%s/%s" % (newroot_path(), store), 0o755)
create_dir_from(oldstore, newstore, 0o700)
create_dir_from(oldstore, newmodules, 0o700)
create_dir_from(oldstore, bottomdir, 0o700)
create_dir_from(oldstore, disabledmodules, 0o700)