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:
parent
5fda074a62
commit
f169946549
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue