mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
another "grep -qi" -> "grep -i"
This commit is contained in:
parent
6df4e6957b
commit
cdac219b5e
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 -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"
|
||||
|
|
Loading…
Reference in a new issue