Remove time from "just run" command

People who need to time things should do it themselves, explicitly.
Forcing `time` on people is a little rude.
This commit is contained in:
Slavi Pantaleev 2023-04-01 06:33:54 +03:00
parent ac00853671
commit 27892369e1

View file

@ -35,7 +35,7 @@ setup-all *extra_args: (run-tags "setup-all,start" extra_args)
# Runs the playbook with the given list of arguments
run +extra_args:
time ansible-playbook -i inventory/hosts setup.yml {{ extra_args }}
ansible-playbook -i inventory/hosts setup.yml {{ extra_args }}
# Runs the playbook with the given list of comma-separated tags and optional arguments
run-tags tags *extra_args: