From f20e3bf3557451047a3ab035de503cd2ce35a550 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 21 May 2023 19:01:59 +0200 Subject: fix some ansible-lint warnings --- roles/vagrant/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'roles/vagrant/tasks/main.yml') diff --git a/roles/vagrant/tasks/main.yml b/roles/vagrant/tasks/main.yml index 53a64c2..32e9722 100644 --- a/roles/vagrant/tasks/main.yml +++ b/roles/vagrant/tasks/main.yml @@ -1,9 +1,9 @@ - name: Update plugins - command: vagrant plugin update + ansible.builtin.command: vagrant plugin update - name: Prune invalid entries - command: vagrant global-status --prune + ansible.builtin.command: vagrant global-status --prune become: true - name: Clean up boxes - command: vagrant box prune --force --keep-active-boxes + ansible.builtin.command: vagrant box prune --force --keep-active-boxes -- cgit v1.2.3