summaryrefslogtreecommitdiffstats
path: root/tozt/tozt/manifests/bootstrap.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tozt/tozt/manifests/bootstrap.pp')
-rw-r--r--tozt/tozt/manifests/bootstrap.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tozt/tozt/manifests/bootstrap.pp b/tozt/tozt/manifests/bootstrap.pp
new file mode 100644
index 0000000..7d18444
--- /dev/null
+++ b/tozt/tozt/manifests/bootstrap.pp
@@ -0,0 +1,14 @@
+class tozt::bootstrap {
+ package {
+ [
+ "puppet",
+ "rsync",
+ ]:
+ ensure => installed,
+ }
+
+ file { '/usr/local/bin/puppet-tozt':
+ source => 'puppet:///modules/tozt/puppet-tozt',
+ mode => '0755';
+ }
+}