diff options
author | Simo Sorce <simo@redhat.com> | 2014-05-20 14:03:09 +0200 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2014-05-20 14:03:46 +0200 |
commit | c04cc1526981077544b3d3655a73282882efb030 (patch) | |
tree | 9f33df484d20d22b72e478771a45a624f09fd6e5 /ipsilon/login/authpam.py | |
parent | 3a174ea2d8b2266fc847e568fec373971b42def3 (diff) | |
download | ipsilon.git-c04cc1526981077544b3d3655a73282882efb030.tar.gz ipsilon.git-c04cc1526981077544b3d3655a73282882efb030.tar.xz ipsilon.git-c04cc1526981077544b3d3655a73282882efb030.zip |
Fix typo in selinux boolean name
This was causing pam auth to fail, as the boolean was not being turned on.
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'ipsilon/login/authpam.py')
-rwxr-xr-x | ipsilon/login/authpam.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsilon/login/authpam.py b/ipsilon/login/authpam.py index 14ebae4..9da41b3 100755 --- a/ipsilon/login/authpam.py +++ b/ipsilon/login/authpam.py @@ -191,6 +191,6 @@ class Installer(object): try: subprocess.call(['/usr/sbin/setsebool', '-P', 'httpd_mod_auth_pam=on', - 'httpd_tmp_t=on']) + 'httpd_tmp_exec=on']) except Exception: # pylint: disable=broad-except pass |