Created
April 20, 2012 21:39
-
-
Save jasonwbarnett/2432058 to your computer and use it in GitHub Desktop.
Workaround for puppet bug 9361
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
class updated::config { | |
file { '/updated/bin/': | |
ensure => directory, | |
recurse => true, | |
purge => true, | |
force => true, | |
owner => root, | |
group => root, | |
mode => 775, | |
source => "puppet:///modules/updated/bin/", | |
} | |
file { '/updated/bin/left_bracket': | |
path => '/updated/bin/[', | |
ensure => present, | |
owner => root, | |
group => root, | |
mode => 755, | |
source => "puppet:///modules/updated/bin/%5b", | |
} | |
File['/updated/bin/left_bracket'] -> File['/updated/bin/'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
changing the title from '/updated/bin/%5b' to '/updated/bin/left_bracket' got rid of the annoying duplicate error.