Guest User

Untitled

a guest
Jul 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. node host1, host2 {
  2. $type = cron1
  3. ...
  4. }
  5.  
  6. node host3, host4 {
  7. $type = cron2
  8. ...
  9. }
  10.  
  11.  
  12. cron { 'cron-apt':
  13. command => $type ? {
  14. cron1 => 'command1',
  15. cron2 => 'command2',
  16. default => 'command3',
  17. },
  18. user => root,
  19. hour => 2,
  20. minute => 0
  21. }
Add Comment
Please, Sign In to add comment