Created
November 15, 2012 09:09
-
-
Save raphink/4077545 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# puppet resource puppet_auth | |
puppet_auth { 'Auth rule for /': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule for /certificate/': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule for /certificate/ca': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule for /certificate_request': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule for /certificate_revocation_list/ca': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule for /file': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule for /report': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule matching ^/catalog/([^/]+)$': | |
ensure => 'absent', | |
} | |
puppet_auth { 'Auth rule matching ^/node/([^/]+)$': | |
ensure => 'absent', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment