Blame ecryptfs-utils-99-selinux.patch

9471b7
diff -up ecryptfs-utils-108/src/utils/ecryptfs-migrate-home.selinux ecryptfs-utils-108/src/utils/ecryptfs-migrate-home
9471b7
--- ecryptfs-utils-108/src/utils/ecryptfs-migrate-home.selinux	2015-08-11 14:44:04.362809487 +0200
9471b7
+++ ecryptfs-utils-108/src/utils/ecryptfs-migrate-home	2015-08-11 14:44:04.377809448 +0200
538c2f
@@ -136,6 +136,7 @@ encrypt_dir () {
538c2f
 		error "Cannot proceed."
538c2f
 	fi
538c2f
 	# start encryption
6c611c
+	[[ "$(getsebool use_ecryptfs_home_dirs 2>/dev/null)" =~ off$ ]] && setsebool -P use_ecryptfs_home_dirs=1 1>/dev/null 2>&1 ||:
538c2f
 	orig=$(mktemp /home/$USER_NAME.XXXXXXXX)
538c2f
 	rm "$orig" && mv "$USER_HOME" "$orig"
538c2f
 	chmod 700 "$orig"
5d5bca
@@ -158,8 +159,12 @@ encrypt_dir () {
538c2f
 	fi
538c2f
 	info "Encrypted home has been set up, encrypting files now...this may take a while."
538c2f
 	# Show progress, but on stderr, in case the user wants to filter that out
538c2f
+	semanage fcontext -a -e /home /home/.ecryptfs >/dev/null 2>&1 ||:
5d5bca
+	restorecon /home/.ecryptfs/ /home/.ecryptfs/$USER_NAME >/dev/null 2>&1 ||:
538c2f
 	rsync -aP "$orig/" "$USER_HOME/" 1>&2
5d5bca
+	restorecon -R /home/.ecryptfs/$USER_NAME >/dev/null 2>&1 ||:
538c2f
 	umount "$USER_HOME/"
5d5bca
+	restorecon -R "$USER_HOME" >/dev/null 2>&1 ||:
538c2f
 	echo
5d5bca
 	echo "========================================================================"
5d5bca
 	echo "Some Important Notes!"