aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/repository.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-16 22:47:03 +0000
committerMichael Scherer <misc@mageia.org>2012-03-16 22:47:03 +0000
commit1d20c44d422aa8c6dea577eca256c857f985190c (patch)
tree400bae72ed80916ffe85ffbb484e49f3bbecc7db /modules/buildsystem/manifests/repository.pp
parentbc9d9e24b44c7ba3efeca8d6485ba9097a808d4b (diff)
downloadpuppet-1d20c44d422aa8c6dea577eca256c857f985190c.tar
puppet-1d20c44d422aa8c6dea577eca256c857f985190c.tar.gz
puppet-1d20c44d422aa8c6dea577eca256c857f985190c.tar.bz2
puppet-1d20c44d422aa8c6dea577eca256c857f985190c.tar.xz
puppet-1d20c44d422aa8c6dea577eca256c857f985190c.zip
refactor and split all operation for the repository ( ie /distrib/bootstrap, that should be renamed one day, since that's not longer a bootstrap ) in one submodule, thus emptying a little bit more mainnode.pp
Diffstat (limited to 'modules/buildsystem/manifests/repository.pp')
-rw-r--r--modules/buildsystem/manifests/repository.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/buildsystem/manifests/repository.pp b/modules/buildsystem/manifests/repository.pp
new file mode 100644
index 00000000..19e69eff
--- /dev/null
+++ b/modules/buildsystem/manifests/repository.pp
@@ -0,0 +1,6 @@
+class buildsystem::repository {
+ $dir = '/distrib/bootstrap'
+ file { $dir:
+ ensure => directory,
+ }
+}