diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-02 01:02:58 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-02 01:02:58 +0200 |
commit | 35adb541b668e1a70261023263a94e8908ac6d46 (patch) | |
tree | a3ab3a8e3d3250763bcd6808ca44f44ba629377f /roles/mariadb/handlers | |
parent | 2e3a53d879ef17f2e4afcce9e6b7f121ab25c571 (diff) | |
download | ansible_collection-35adb541b668e1a70261023263a94e8908ac6d46.tar.gz |
add mariadb
Diffstat (limited to 'roles/mariadb/handlers')
-rw-r--r-- | roles/mariadb/handlers/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/mariadb/handlers/main.yml b/roles/mariadb/handlers/main.yml new file mode 100644 index 0000000..9c9e4d0 --- /dev/null +++ b/roles/mariadb/handlers/main.yml @@ -0,0 +1,6 @@ +- name: Restart MariaDB + systemd: + name: mariadb.service + enabled: yes + state: restarted + become: yes |