1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

grep -q -> grep -i

This commit is contained in:
A Holt 2017-12-11 20:10:00 -05:00 committed by GitHub
parent 5fda074a62
commit f169946549
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
FOUND="true"
# FAMILY="debian" # NOT USED AS OF 2017-12-11
elif [[ `grep -i ubuntu /etc/lsb-release` ]] || [[ `grep -q ubuntu /etc/os-release` ]]; then
elif [[ `grep -i ubuntu /etc/lsb-release` ]] || [[ `grep -i ubuntu /etc/os-release` ]]; then
apt -y install python-pip python-setuptools python-wheel patch
apt-add-repository -y ppa:ansible/ansible
FOUND="true"