Do not use “-y” for package install

According to "code conventions" [1], do not use "-y" option.
Instead, use apt-get install package, yum install package,
or zypper install package.

[1] https://docs.openstack.org/doc-contrib-guide/writing-style/
code-conventions.html

Change-Id: Idb0c9c0cc64b28b12c7b511bc8985c829a8a5984
This commit is contained in:
Vu Cong Tuan 2017-11-07 13:12:59 +07:00
parent cb02f1c19b
commit b341e2e350
1 changed files with 3 additions and 3 deletions

View File

@ -117,9 +117,9 @@ it, follow the instructions for installing prerequisites above and
- On Fedora 23::
sudo dnf install -y dnf-plugins-core
sudo dnf copr enable -y mstuchli/Python3.5
dnf install -y python35-python3
sudo dnf install dnf-plugins-core
sudo dnf copr enable mstuchli/Python3.5
dnf install python35-python3
Python Prerequisites
--------------------