From c04cc1526981077544b3d3655a73282882efb030 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 20 May 2014 14:03:09 +0200 Subject: [PATCH] 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 --- ipsilon/login/authpam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.20.1