Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class myclass::common {
  2. case $operatingsystem {
  3. redhat: {
  4. $pkg = 'redhat-pkgname'
  5. }
  6. solaris: {
  7. $pkg = 'solaris-pkgname'
  8. }
  9. }
  10. }
  11.  
  12. class myclass inherits myclass::common {
  13. package { $pkg: ensure => 'installed' }
  14. }
Add Comment
Please, Sign In to add comment