From: Micah Anderson Date: Tue, 14 Apr 2009 00:35:51 +0000 (-0400) Subject: puppet wants a backslash escaped X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0a7ffc7d633ae83be5e8cd58cf2fd6273eff4f9d;p=puppet-apt.git puppet wants a backslash escaped --- diff --git a/manifests/init.pp b/manifests/init.pp index 829c8c1..929e24f 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -142,7 +142,7 @@ class apt { recurse => true, mode => 0755, owner => root, group => root, } - exec { "find ${apt_base_dir}/keys.d -type f -exec apt-key add '{}' \; && apt-get update": + exec { "find ${apt_base_dir}/keys.d -type f -exec apt-key add '{}' \\; && apt-get update": alias => "custom_keys", subscribe => File["${apt_base_dir}/keys.d"], refreshonly => true,