Created
October 6, 2013 15:21
-
-
Save igalic/6855321 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# special bots | |
node /bots(32|26)/ { | |
# make sure our base profile is applied first: | |
anchor { 'bots-begin': } -> | |
class { 'base': } -> | |
# These bots are speshul: | |
class { 'specialbot': } -> | |
anchor { 'bots-end': } | |
} | |
# all other bots: | |
node /bots.*/ { | |
# make sure our base profile is applied first: | |
anchor { 'bots-begin': } -> | |
class { 'base': } -> | |
# then, the bot stuff: | |
class { 'bot': } -> | |
anchor { 'bots-end': } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment