From 254d1a11ab7626cf462ea0aebf67865f77b08108 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 2 Jan 2026 18:18:38 +0300 Subject: [PATCH] Feat(run-playbook): Redirect stderr to stdout Do not distort the screen and allow `less` to scroll. Do not hide errors behind the pager. --- playbooks/run-playbook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/run-playbook b/playbooks/run-playbook index 00658a3..61984f7 100755 --- a/playbooks/run-playbook +++ b/playbooks/run-playbook @@ -9,4 +9,4 @@ if which less >/dev/null 2>&1; then LESS="S$LESS" fi -ansible-playbook "$@" -v | ${PAGER:-more} +ansible-playbook "$@" -v 2>&1 | ${PAGER:-more} -- 2.47.3