diff options
author | Michael Scherer <misc@mageia.org> | 2011-06-17 10:59:50 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-06-17 10:59:50 +0000 |
commit | cd3fdad80e76f8690b8ae786d7fe624767296c14 (patch) | |
tree | 884860c43575b420578455d0bb0f05dc55b8af85 /modules | |
parent | e1cdff76a3a8848fdb83db40818c8b398bdc0066 (diff) | |
download | puppet-cd3fdad80e76f8690b8ae786d7fe624767296c14.tar puppet-cd3fdad80e76f8690b8ae786d7fe624767296c14.tar.gz puppet-cd3fdad80e76f8690b8ae786d7fe624767296c14.tar.bz2 puppet-cd3fdad80e76f8690b8ae786d7fe624767296c14.tar.xz puppet-cd3fdad80e76f8690b8ae786d7fe624767296c14.zip |
fix "Unrecognised escape sequence '\.' " warning, by using single quote
instead of double quote
Diffstat (limited to 'modules')
-rw-r--r-- | modules/subversion/manifests/init.pp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/modules/subversion/manifests/init.pp b/modules/subversion/manifests/init.pp index f4a7e269..1486fbca 100644 --- a/modules/subversion/manifests/init.pp +++ b/modules/subversion/manifests/init.pp @@ -103,33 +103,33 @@ class subversion { syntax_check{"check_perl": - regexp_ext => "\.p[lm]$", - check_cmd => "perl -c" + regexp_ext => '\.p[lm]$', + check_cmd => 'perl -c' } syntax_check{"check_puppet": - regexp_ext => "\.pp$", - check_cmd => "puppet --color=false --confdir=/tmp --vardir=/tmp --parseonly --ignoreimport" + regexp_ext => '\.pp$', + check_cmd => 'puppet --color=false --confdir=/tmp --vardir=/tmp --parseonly --ignoreimport' } syntax_check{"check_ruby": - regexp_ext => "\.rb$", - check_cmd => "ruby -c" + regexp_ext => '\.rb$', + check_cmd => 'ruby -c' } syntax_check{"check_puppet_templates": - regexp_ext => "modules/.*/templates/.*$", - check_cmd => "erb -P -x -T - | ruby -c" + regexp_ext => 'modules/.*/templates/.*$', + check_cmd => 'erb -P -x -T - | ruby -c' } syntax_check{"check_po": - regexp_ext => "\.po$", - check_cmd => "msgfmt -c -" + regexp_ext => '\.po$', + check_cmd => 'msgfmt -c -' } syntax_check{"check_php": - regexp_ext => "\.php$", - check_cmd => "php -l" + regexp_ext => '\.php$', + check_cmd => 'php -l' } } |