summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Kinsella <jlkinsel@gmail.com>2012-02-22 10:41:04 -0800
committerJohn Kinsella <jlkinsel@gmail.com>2012-02-22 10:41:04 -0800
commitbe5f31a3afb6084f803633b5f2d31681db11cc65 (patch)
tree82058138de6e76549505693d17fee074cca4ec73
parent7e4bfd5317bea23b931f7f6c6080e62506cddfa0 (diff)
Prepended cp and rm commands with /bin. This stops errors like "is not qualified and no path was specified. Please qualify the command or specify a path."
-rw-r--r--manifests/client.pp2
-rw-r--r--manifests/server.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 82e498a..fd94796 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -119,7 +119,7 @@ define openvpn::client($server, $remote_host = $fqdn) {
exec {
"tar the thing ${server} with ${name}":
cwd => "/etc/openvpn/${server}/download-configs/",
- command => "rm ${name}.tar.gz; tar --exclude=\\*.conf.d -chzvf ${name}.tar.gz ${name}",
+ command => "/bin/rm ${name}.tar.gz; tar --exclude=\\*.conf.d -chzvf ${name}.tar.gz ${name}",
refreshonly => true,
require => [ File["/etc/openvpn/${server}/download-configs/${name}/${name}.conf"],
File["/etc/openvpn/${server}/download-configs/${name}/keys/ca.crt"],
diff --git a/manifests/server.pp b/manifests/server.pp
index b279b02..aa0c32d 100644
--- a/manifests/server.pp
+++ b/manifests/server.pp
@@ -19,7 +19,7 @@ define openvpn::server($country, $province, $city, $organization, $email) {
exec {
"copy easy-rsa to openvpn config folder ${name}":
- command => "cp -r /usr/share/doc/openvpn/examples/easy-rsa/2.0 /etc/openvpn/${name}/easy-rsa",
+ command => "/bin/cp -r /usr/share/doc/openvpn/examples/easy-rsa/2.0 /etc/openvpn/${name}/easy-rsa",
creates => "/etc/openvpn/${name}/easy-rsa",
require => File["/etc/openvpn/${name}"];
}