blob: 3ac80cc16eebdec760647423926f254dffc64b94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
# file: handlers/main.yaml
- name: "Start csit-initialize-vfs.service"
ansible.builtin.systemd:
enabled: true
state: "started"
name: "csit-initialize-vfs.service"
tags:
- start-vf-service
- name: "Update GRUB"
ansible.builtin.command: "update-grub"
tags:
- update-grub
- name: "Reboot server"
ansible.builtin.reboot:
reboot_timeout: 3600
tags:
- reboot-server
|