diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-07 01:54:25 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-07 01:54:25 +0200 |
commit | 2ccf20e70715acd02f86415a61341476ef2c2f14 (patch) | |
tree | 9dbf4ecc9a054f1588cea2e0557ef02b49ab5ac4 /roles/influxdb/handlers | |
parent | 4000e16e20ae47423542db221b9ab636cf3d79b9 (diff) | |
download | ansible_collection-2ccf20e70715acd02f86415a61341476ef2c2f14.tar.gz |
add influxdb
Diffstat (limited to 'roles/influxdb/handlers')
-rw-r--r-- | roles/influxdb/handlers/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/influxdb/handlers/main.yml b/roles/influxdb/handlers/main.yml new file mode 100644 index 0000000..45970c0 --- /dev/null +++ b/roles/influxdb/handlers/main.yml @@ -0,0 +1,7 @@ +--- +- name: Restart influxdb + systemd: + name: influxdb + state: restarted + enabled: yes + become: yes |