Merge pull request #80 from wvh-github/feature/create_pre_and_post_hook
create pre and post hookspull/154/head
commit
6bb2ed6436
@ -0,0 +1,15 @@ |
|||||||
|
#!/bin/bash |
||||||
|
# {{ ansible_managed }} |
||||||
|
|
||||||
|
{% for item in certbot_create_standalone_stop_services %} |
||||||
|
echo "starting service {{ item }}" |
||||||
|
{% if ansible_service_mgr == 'systemd' %} |
||||||
|
systemctl start {{ item }} |
||||||
|
{% elif ansible_service_mgr == 'upstart' %} |
||||||
|
initctl start {{ item }} |
||||||
|
{% elif ansible_service_mgr == 'openrc' %} |
||||||
|
rc-service {{ item }} start |
||||||
|
{% else %} |
||||||
|
service {{ item }} start |
||||||
|
{% endif %} |
||||||
|
{% endfor %} |
@ -0,0 +1,15 @@ |
|||||||
|
#!/bin/bash |
||||||
|
# {{ ansible_managed }} |
||||||
|
|
||||||
|
{% for item in certbot_create_standalone_stop_services %} |
||||||
|
echo "stopping service {{ item }}" |
||||||
|
{% if ansible_service_mgr == 'systemd' %} |
||||||
|
systemctl stop {{ item }} |
||||||
|
{% elif ansible_service_mgr == 'upstart' %} |
||||||
|
initctl stop {{ item }} |
||||||
|
{% elif ansible_service_mgr == 'openrc' %} |
||||||
|
rc-service {{ item }} stop |
||||||
|
{% else %} |
||||||
|
service {{ item }} stop |
||||||
|
{% endif %} |
||||||
|
{% endfor %} |
Loading…
Reference in new issue