From acddc6dfb86baa8c0a2b88271d1043b7ea5347c4 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 30 May 2018 18:30:30 -0300 Subject: Renames certbot::standalone to certbot::auto --- manifests/auto.pp | 9 +++++++++ manifests/standalone.pp | 9 --------- 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 manifests/auto.pp delete mode 100644 manifests/standalone.pp diff --git a/manifests/auto.pp b/manifests/auto.pp new file mode 100644 index 0000000..3227ac4 --- /dev/null +++ b/manifests/auto.pp @@ -0,0 +1,9 @@ +class certbot::auto { + # Warning: this offers poor verification for the downloaded application + exec { 'getcertbot': + 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::script_base}/${certbot::tool}", + } +} diff --git a/manifests/standalone.pp b/manifests/standalone.pp deleted file mode 100644 index 49757f6..0000000 --- a/manifests/standalone.pp +++ /dev/null @@ -1,9 +0,0 @@ -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::script_base}/${certbot::tool} && chmod +x ${certbot::script_base}/${certbot::tool}", - user => 'root', - cwd => '/tmp', - creates => "${certbot::script_base}/${certbot::tool}", - } -} -- cgit v1.2.3