diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-09-01 00:26:13 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-09-01 00:26:13 +0200 |
commit | a89e16c44ee6d038e4f4cf435902e66558cc5cf4 (patch) | |
tree | 745201ec1b6b2e6f5239cf4feaf790fb4a138654 /roles/my_dotfiles/tasks | |
parent | apt: don't remove after autoremoving dependencies (diff) | |
download | infra-ansible-a89e16c44ee6d038e4f4cf435902e66558cc5cf4.tar.gz infra-ansible-a89e16c44ee6d038e4f4cf435902e66558cc5cf4.zip |
sort module args, add missing state args, etc.
Diffstat (limited to '')
-rw-r--r-- | roles/my_dotfiles/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/my_dotfiles/tasks/main.yml b/roles/my_dotfiles/tasks/main.yml index 9851658..0acdf65 100644 --- a/roles/my_dotfiles/tasks/main.yml +++ b/roles/my_dotfiles/tasks/main.yml @@ -1,8 +1,8 @@ - name: Pull repositories ansible.builtin.git: - accept_hostkey: true - dest: '{{ my_dotfiles_dir }}' repo: '{{ my_dotfiles_repo }}' + dest: '{{ my_dotfiles_dir }}' + accept_hostkey: true - name: Run setup.sh ansible.builtin.command: ./setup.sh |