diff options
author | Michael Scherer <misc@mageia.org> | 2011-08-19 13:30:27 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-08-19 13:30:27 +0000 |
commit | 9b0eab0b661c79263d0d30001428b8ccc46287c9 (patch) | |
tree | a58a9db7f4d15515a1925ee4546fd8979cb10cd2 | |
parent | b33d3cc93ccc5f7346a1e6da29701393be0de22a (diff) | |
download | puppet-9b0eab0b661c79263d0d30001428b8ccc46287c9.tar puppet-9b0eab0b661c79263d0d30001428b8ccc46287c9.tar.gz puppet-9b0eab0b661c79263d0d30001428b8ccc46287c9.tar.bz2 puppet-9b0eab0b661c79263d0d30001428b8ccc46287c9.tar.xz puppet-9b0eab0b661c79263d0d30001428b8ccc46287c9.zip |
fix syntax error caused by previous commit
-rw-r--r-- | modules/sympa/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp index 63001dab..4cd9192f 100644 --- a/modules/sympa/manifests/init.pp +++ b/modules/sympa/manifests/init.pp @@ -201,7 +201,7 @@ class sympa { file { "$xml_file": owner => root, group => root, - content => template('sympa/list.xml') + content => template('sympa/list.xml'), require => Package[sympa], } |