1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00

another "grep -qi" -> "grep -i"

This commit is contained in:
A Holt 2017-12-11 19:40:24 -05:00 committed by GitHub
parent 6df4e6957b
commit cdac219b5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ if ! [ `which ansible-playbook` ]; then
fi fi
FOUND="true" FOUND="true"
# FAMILY="debian" # NOT USED AS OF 2017-12-11 # 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 -y install python-pip python-setuptools python-wheel patch
apt-add-repository -y ppa:ansible/ansible apt-add-repository -y ppa:ansible/ansible
FOUND="true" FOUND="true"