diff options
author | Julien Dessaux | 2021-03-04 13:38:44 +0100 |
---|---|---|
committer | Julien Dessaux | 2021-03-04 13:38:44 +0100 |
commit | 2451b5ced341e37fe004b4f36b040a55a97ce03e (patch) | |
tree | dc334ead4e601de6960b8546ab9819185b09dee2 /tasks | |
parent | Moved borg action plugin into its own role (diff) | |
download | borg-ansible-role-2451b5ced341e37fe004b4f36b040a55a97ce03e.tar.gz borg-ansible-role-2451b5ced341e37fe004b4f36b040a55a97ce03e.tar.bz2 borg-ansible-role-2451b5ced341e37fe004b4f36b040a55a97ce03e.zip |
Fixed stupid ansible python sucks silent name collision
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks/main.yml b/tasks/main.yml index 69df94d..3433cb8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,11 +1,11 @@ --- -- action: init +- action: borg_init - import_tasks: common.yml - when: is_borg_server or borg_server is defined + when: borg.is_server or borg_server is defined - import_tasks: server.yml - when: is_borg_server + when: borg.is_server - import_tasks: client.yml when: borg_server is defined |