From ad74d5d12c6d7e9b60e170040780d2fbe172ea4c Mon Sep 17 00:00:00 2001 From: Ossi Salmi Date: Sat, 17 Nov 2012 11:30:44 +0200 Subject: [PATCH] Removed redundant if in backuppc::server --- backuppc/manifests/init.pp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/backuppc/manifests/init.pp b/backuppc/manifests/init.pp index bd4f367..89799d0 100644 --- a/backuppc/manifests/init.pp +++ b/backuppc/manifests/init.pp @@ -115,10 +115,8 @@ class backuppc::server { } default: { $backuppc_seltype = "httpd_sys_rw_content_t" - if $::selinux == "true" { - selinux::manage_fcontext { "/etc/BackupPC(/.*)?": - type => $backuppc_seltype, - } + selinux::manage_fcontext { "/etc/BackupPC(/.*)?": + type => $backuppc_seltype, } } }