summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-30 22:58:35 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-30 22:58:35 -0500
commitfac265341195905d3c5abdcd525a00f1be52c30a (patch)
treedfbd88577cd340c607d89c610aa667add6194614 /modules/base/manifests
parent6c5793038a64c0c1c6c987ffca0004db1c2765e7 (diff)
downloadpuppet-tozt-fac265341195905d3c5abdcd525a00f1be52c30a.tar.gz
puppet-tozt-fac265341195905d3c5abdcd525a00f1be52c30a.zip
basic script for running updates
Diffstat (limited to 'modules/base/manifests')
-rw-r--r--modules/base/manifests/bootstrap.pp10
1 files changed, 7 insertions, 3 deletions
diff --git a/modules/base/manifests/bootstrap.pp b/modules/base/manifests/bootstrap.pp
index 313204d..d7ce0bc 100644
--- a/modules/base/manifests/bootstrap.pp
+++ b/modules/base/manifests/bootstrap.pp
@@ -7,8 +7,12 @@ class base::bootstrap {
ensure => installed,
}
- file { '/usr/local/bin/puppet-tozt':
- source => 'puppet:///modules/base/puppet-tozt',
- mode => '0755';
+ file {
+ '/usr/local/bin/puppet-tozt':
+ source => 'puppet:///modules/base/puppet-tozt',
+ mode => '0755';
+ '/usr/local/bin/update':
+ source => 'puppet:///modules/base/update',
+ mode => '0755';
}
}