Mercurial > repos > other > Puppet
comparison manifests/templates.pp @ 330:0cccb75d7639
Add rsync to tools so that backups work
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 08 Mar 2020 19:54:42 +0000 |
parents | 63e0b5149cfb |
children | f69e2d197302 |
comparison
equal
deleted
inserted
replaced
329:f5ce1a5542ee | 330:0cccb75d7639 |
---|---|
262 use_epel => false, | 262 use_epel => false, |
263 } | 263 } |
264 } | 264 } |
265 | 265 |
266 class tools { | 266 class tools { |
267 $packages = [ 'sqlite', 'bash-completion', 'nano', 'bzip2', 'mlocate', 'patch', 'tmux', 'wget', 'yum-utils' ] | 267 $packages = [ 'sqlite', 'bash-completion', 'nano', 'bzip2', 'mlocate', 'patch', 'tmux', 'wget', 'yum-utils', 'rsync' ] |
268 package { $packages: | 268 package { $packages: |
269 ensure => installed; | 269 ensure => installed; |
270 } | 270 } |
271 } | 271 } |
272 | 272 |