Skip to content

Instantly share code, notes, and snippets.

@morganfletcher
Created February 21, 2013 00:56
Show Gist options
  • Save morganfletcher/5001060 to your computer and use it in GitHub Desktop.
Save morganfletcher/5001060 to your computer and use it in GitHub Desktop.
anchor pattern attempt
class base {
anchor { 'base::begin': }
anchor { 'base::end': }
class{'yumrepos':
require => Anchor['base::begin'],
}
class{'base::dependant_module':
require => Class['yumrepos'],
before => Anchor['base::end'],
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment