Merge "Run fixfiles restore in chroot instead of firstboot."

This commit is contained in:
Jenkins 2013-05-17 22:39:06 +00:00 committed by Gerrit Code Review
commit 103bedacc7

View File

@ -1,6 +1,12 @@
#!/bin/bash
set -x
# Without fixing selinux file labels, sshd will run in the kernel_t domain
# instead of the sshd_t domain, making ssh connections fail with
# "Unable to get valid context for <user>" error message
touch /.autorelabel
setfiles /etc/selinux/targeted/contexts/files/file_contexts /
FIXFILES_LOG=$(mktemp)
fixfiles -l $FIXFILES_LOG restore
cat $FIXFILES_LOG
rm $FIXFILES_LOG