Fixed dynldap.py deployment to OpenBSD.
This commit is contained in:
parent
bf52947b15
commit
0efc6d58d4
1 changed files with 4 additions and 1 deletions
|
@ -289,7 +289,10 @@ class ldap::client::python {
|
||||||
source => "puppet:///modules/ldap/dynldap.py",
|
source => "puppet:///modules/ldap/dynldap.py",
|
||||||
mode => "0644",
|
mode => "0644",
|
||||||
owner => "root",
|
owner => "root",
|
||||||
group => "root",
|
group => $::operatingsystem ? {
|
||||||
|
"openbsd" => "wheel",
|
||||||
|
default => "root",
|
||||||
|
},
|
||||||
require => Package["python-ldap"],
|
require => Package["python-ldap"],
|
||||||
}
|
}
|
||||||
python::compile { "${::pythonsitedir}/dynldap.py": }
|
python::compile { "${::pythonsitedir}/dynldap.py": }
|
||||||
|
|
Loading…
Add table
Reference in a new issue