]> git.phdru.name Git - ansible.git/blob - playbooks/run-playbook
Update(logcheck): Update `local-spamassassin`
[ansible.git] / playbooks / run-playbook
1 #! /bin/sh
2
3 if [ -z "$1" ]; then
4    echo "Usage: $0 playbook.yml [...params...]" >&2
5    exit 1
6 fi
7
8 if which less >/dev/null 2>&1; then
9    LESS="S$LESS"
10 fi
11
12 ansible-playbook "$@" -v | ${PAGER:-more}