From cdac219b5ecd0b9d5af65029e3878fd784bfeff5 Mon Sep 17 00:00:00 2001 From: A Holt Date: Mon, 11 Dec 2017 19:40:24 -0500 Subject: [PATCH] another "grep -qi" -> "grep -i" --- scripts/ansible | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ansible b/scripts/ansible index e90637af6..25d5221c6 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -42,7 +42,7 @@ if ! [ `which ansible-playbook` ]; then fi FOUND="true" # FAMILY="debian" # NOT USED AS OF 2017-12-11 - elif [[ `grep -i ubuntu /etc/lsb-release` ]] || [[ `grep -qi ubuntu /etc/os-release` ]]; then + elif [[ `grep -i ubuntu /etc/lsb-release` ]] || [[ `grep -q ubuntu /etc/os-release` ]]; then apt -y install python-pip python-setuptools python-wheel patch apt-add-repository -y ppa:ansible/ansible FOUND="true"