diff options
author | Garrett Holmstrom <gholms@eucalyptus.com> | 2012-09-19 10:02:55 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-09-19 10:02:55 -0400 |
commit | 9c0cffeabfcc7ddfa5fdac2d22d91e336c538376 (patch) | |
tree | 92bf9abd36dea127756405c76bcc018aa4617ee4 /cloudinit | |
parent | 62450b525e217b792dcf702fb2bd79d41bee17b7 (diff) | |
parent | 11db1e91ddc047728b0161eb1da30e54084ae5eb (diff) | |
download | vyos-cloud-init-9c0cffeabfcc7ddfa5fdac2d22d91e336c538376.tar.gz vyos-cloud-init-9c0cffeabfcc7ddfa5fdac2d22d91e336c538376.zip |
Add support for 'selinux_user' key to useradd cloud-config syntax
Fedora and RHEL and friends' useradd program supports an "--selinux-user"
option that sets what SELinux user a new user should log in with. This commit
introduces an "selinux-user" directive to cloud-config "users" lists that
exposes this option.
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/distros/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index 40c6aa4f..3e9d934d 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -239,6 +239,7 @@ class Distro(object): "shell": '--shell', "expiredate": '--expiredate', "inactive": '--inactive', + "selinux_user": '--selinux-user', } adduser_opts_flags = { |