Skip to content

Instantly share code, notes, and snippets.

@kepstin
Created June 14, 2012 18:41
Show Gist options
  • Select an option

  • Save kepstin/2932098 to your computer and use it in GitHub Desktop.

Select an option

Save kepstin/2932098 to your computer and use it in GitHub Desktop.
if $osfamily {
} else {
case $operatingsystem {
'Ubuntu': {
$osfamily = 'Debian'
}
'Scientific': {
$osfamily = 'RedHat'
}
default: {
fail("Could not determine osfamily for ${operatingsystem}")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment