diff options
| author | 2023-03-04 12:42:33 +0000 | |
|---|---|---|
| committer | 2023-03-04 13:32:04 +0000 | |
| commit | 44d21c0218f2bcd482a956210e1b4201ecaec6b0 (patch) | |
| tree | 2156779bb6a64b6f4c1b088df817415ed58378c8 /roles/common | |
| parent | Bump pre-commit from 3.0.4 to 3.1.0 (#86) (diff) | |
Match casing of task handlers
Ansible is case sensitive when specifying a handler
Diffstat (limited to 'roles/common')
| -rw-r--r-- | roles/common/tasks/main.yml | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index d470030..b0537e5 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -21,7 +21,7 @@      line: "PasswordAuthentication no"      state: present    notify: -    - restart ssh +    - Restart ssh    tags:      - role::common @@ -33,7 +33,7 @@      owner: root      group: root    notify: -    - restart systemd-timesyncd +    - Restart systemd-timesyncd    tags:      - role::common | 
