[puppet/modules/apcupsd]
checkout = git clone git://git.sarava.org/puppet-apcupsd.git apcupsd
+[puppet/modules/apparmor]
+checkout = git clone git://git.sarava.org/puppet-apparmor.git apparmor
+
[puppet/modules/apt]
checkout = git clone git://git.sarava.org/puppet-apt.git apt
[puppet/modules/bitcoind]
checkout = git clone git://git.sarava.org/puppet-bitcoind.git bitcoind
+[puppet/modules/bootstrap]
+checkout = git clone git://git.sarava.org/puppet-bootstrap.git bootstrap
+
[puppet/modules/common]
checkout = git clone git://git.sarava.org/puppet-common.git common
[puppet/modules/shorewall]
checkout = git clone git://git.sarava.org/puppet-shorewall.git shorewall
+[puppet/modules/smartmonster]
+checkout = git clone git://git.sarava.org/puppet-smartmonster.git smartmonster
+
[puppet/modules/smartmontools]
checkout = git clone git://git.sarava.org/puppet-smartmontools.git smartmontools
touch .mrconfig
# Fetch repository list and updtate mrconfig
-curl --stderr - $URL | grep "^puppet-" | while read module; do
+curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | while read module; do
folder="`echo $module | sed -e 's/^puppet-//'`"
folder="`basename $folder .git`"
- if [ "$module" != "$bootstrap" ];
+ if [ "$module" != "$bootstrap" ]; then
echo "Processing $folder..."
- mr config puppet/modules/$folder checkout="git clone --recursive git://$GIT/$module $folder"
+ mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder"
fi
done