Created
September 25, 2012 22:30
-
-
Save supercow/3784859 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
file { 'long_ass_filename': | |
ensure => file, | |
path => '/var/www/some/really/freaking/long/path/name/do_you_want_to_repeat.html', | |
} | |
service { 'some_service': | |
ensure => running, | |
subscribe => File['long_ass_filename'], | |
} |
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
file { '/var/www/some/really/freaking/long/path/name/do_you_want_to_repeat.html': | |
ensure => file, | |
} | |
service { 'some_service': | |
ensure => running, | |
subscribe => File['/var/www/some/really/freaking/long/path/name/do_you_want_to_repeat.html'], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment