aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--manifests/nodes.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/nodes.pp b/manifests/nodes.pp
index 0c0441d8..f461cb00 100644
--- a/manifests/nodes.pp
+++ b/manifests/nodes.pp
@@ -1,11 +1,20 @@
# svn, big important server
node valstar {
include default_mageia_server
+
# for puppet svn checkout
package {"subversion":
ensure => "installed"
}
+ # svn spam log with
+ # Oct 26 13:30:01 valstar svn: No worthy mechs found
+ # without it, source http://mail-index.netbsd.org/pkgsrc-users/2008/11/23/msg008706.html
+ #
+ package {"sasl-plug-anonymous":
+ ensure => "installed"
+ }
+
# update the puppet snapshot
cron { puppet_update:
command => "cd /etc/puppet && /usr/bin/svn update -q",