Hello,
The certbot task return a LocalJumpError when certbot_enable_ssl is false, because block can't use return statement.
You can use instead abort, next , or define a method :
Example :
abort('aborting certbot install') unless fetch(:certbot_enable_ssl)
Hello,
The certbot task return a LocalJumpError when certbot_enable_ssl is false, because block can't use return statement.
You can use instead abort, next , or define a method :
Example :