diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-10-30 17:17:03 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-10-30 17:17:03 -0400 |
commit | 25824d2007e062f32a7bf3c502eaf9b8f2bf4c15 (patch) | |
tree | 9a70da85e6faf0265386dac0ce7ea08d01ece44c /cloudinit/CloudConfig/cc_ssh.py | |
parent | 6d9f6dfcf7e28f398b426c18ca36adeec24f8061 (diff) | |
download | vyos-cloud-init-25824d2007e062f32a7bf3c502eaf9b8f2bf4c15.tar.gz vyos-cloud-init-25824d2007e062f32a7bf3c502eaf9b8f2bf4c15.zip |
Restore created files' selinux contexts
This adds a restorecon_if_possible method which uses selinux
python module, and uses that for files modified in /etc.
taken from
git://pkgs.fedoraproject.org/cloud-init.git
commit 87f33190f43d2b26cced4597e7298835024466c2
Author: Garrett Holmstrom <gholms@fedoraproject.org>
Patch3: cloud-init-0.6.2-filecontext.patch
Diffstat (limited to 'cloudinit/CloudConfig/cc_ssh.py')
-rw-r--r-- | cloudinit/CloudConfig/cc_ssh.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cloudinit/CloudConfig/cc_ssh.py b/cloudinit/CloudConfig/cc_ssh.py index 50b6a73c..727fd398 100644 --- a/cloudinit/CloudConfig/cc_ssh.py +++ b/cloudinit/CloudConfig/cc_ssh.py @@ -66,6 +66,8 @@ def handle(name,cfg,cloud,log,args): genkeys+='ssh-keygen -f /etc/ssh/ssh_host_ecdsa_key -t ecdsa -N ""; ' subprocess.call(('sh', '-c', "{ %s } </dev/null" % (genkeys))) + util.restorecon_if_possible('/etc/ssh', recursive=True) + try: user = util.get_cfg_option_str(cfg,'user') disable_root = util.get_cfg_option_bool(cfg, "disable_root", True) |