From 27892369e10e7e1d955a2915317509d2a26ef654 Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sat, 1 Apr 2023 06:33:54 +0300 Subject: [PATCH] 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. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 74f4d33..91c8f54 100644 --- a/justfile +++ b/justfile @@ -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: