summaryrefslogtreecommitdiff
path: root/manifests/standalone.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-11-16 11:26:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-11-16 11:26:26 -0200
commitc638af630e56ef44c4d58365ec00787818f4c693 (patch)
tree23849a8a1fdc013e7861d423b11cfc08b6fbdeee /manifests/standalone.pp
parentebb9cbf7224f497a39f60c408b00f9da09b03f7f (diff)
downloadpuppet-certbot-c638af630e56ef44c4d58365ec00787818f4c693.tar.gz
puppet-certbot-c638af630e56ef44c4d58365ec00787818f4c693.tar.bz2
Switch base_path to script_base
Diffstat (limited to 'manifests/standalone.pp')
-rw-r--r--manifests/standalone.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/standalone.pp b/manifests/standalone.pp
index ac2ddaa..1442788 100644
--- a/manifests/standalone.pp
+++ b/manifests/standalone.pp
@@ -1,9 +1,9 @@
class certbot::standalone {
# Warning: this offers poor verification for the downloaded application
exec { 'getcertbot':
- command => "/usr/bin/wget https://dl.eff.org/certbot-auto -O ${certbot::base_path}/${certbot::tool} && chmod +x ${certbot::base_path}/${certbot::tool}",
+ command => "/usr/bin/wget https://dl.eff.org/certbot-auto -O ${certbot::script_base}/${certbot::tool} && chmod +x ${certbot::script_base}/${certbot::tool}",
user => 'root',
cwd => '/tmp',
- creates => '${certbot::base_path}/${certbot::tool}',
+ creates => '${certbot::script_base}/${certbot::tool}',
}
}