diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-16 15:49:26 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-16 15:49:26 +0000 |
commit | c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4 (patch) | |
tree | c8e3df361e8247febdfe458a6c0ea947618bb2a9 /modules/sympa | |
parent | a814520aeeebc97dbc56060e2a9fa55fd85518d1 (diff) | |
download | puppet-c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4.tar puppet-c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4.tar.gz puppet-c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4.tar.bz2 puppet-c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4.tar.xz puppet-c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4.zip |
remove useless +x set on all config file
Diffstat (limited to 'modules/sympa')
-rw-r--r-- | modules/sympa/manifests/init.pp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp index d0b8f227..e7b1df08 100644 --- a/modules/sympa/manifests/init.pp +++ b/modules/sympa/manifests/init.pp @@ -71,43 +71,36 @@ class sympa { file { ["/etc/sympa/scenari/subscribe.open_web_only_notify", "/etc/sympa/scenari/unsubscribe.open_web_only_notify"]: - mode => 755, source => "puppet:///modules/sympa/scenari/open_web_only_notify", } file { ["/etc/sympa/scenari/send.subscriber_moderated"]: - mode => 755, source => "puppet:///modules/sympa/scenari/subscriber_moderated", } file { ["/etc/sympa/scenari/create_list.forbidden"]: - mode => 755, source => "puppet:///modules/sympa/scenari/forbidden", } file { ["/etc/sympa/topics.conf"]: - mode => 755, source => "puppet:///modules/sympa/topics.conf", } define ldap_search_filter { file { "/etc/sympa/search_filters/$name.ldap": - mode => 755, content => template('sympa/search_filters/group.ldap') } } define ldap_group_datasource { file { "/etc/sympa/data_sources/$name.incl": - mode => 755, content => template('sympa/data_sources/ldap_group.incl') } } define scenario_sender_ldap_group { file { "/etc/sympa/scenari/send.restricted_$name": - mode => 755, content => template('sympa/scenari/sender.ldap_group') } } @@ -115,7 +108,6 @@ class sympa { define scenario_sender_email { $sender_email_file = regsubst($name,'\@','-at-') file { "/etc/sympa/scenari/send.restricted_$sender_email_file": - mode => 755, content => template('sympa/scenari/sender.email') } } |