Fix typo in selinux boolean name
authorSimo Sorce <simo@redhat.com>
Tue, 20 May 2014 12:03:09 +0000 (14:03 +0200)
committerSimo Sorce <simo@redhat.com>
Tue, 20 May 2014 12:03:46 +0000 (14:03 +0200)
This was causing pam auth to fail, as the boolean was not being turned on.

Signed-off-by: Simo Sorce <simo@redhat.com>
ipsilon/login/authpam.py

index 14ebae4..9da41b3 100755 (executable)
@@ -191,6 +191,6 @@ class Installer(object):
         try:
             subprocess.call(['/usr/sbin/setsebool', '-P',
                              'httpd_mod_auth_pam=on',
         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
         except Exception:  # pylint: disable=broad-except
             pass