suppression sudo inutile

This commit is contained in:
abenmiloud 2019-05-22 16:29:13 +02:00
parent 11f8b46a23
commit 0e2b0d27d6

View file

@ -85,9 +85,9 @@ On commence par installer `ceph-deploy`, l'outil qui permet de déployer un clus
~~~
# apt update && apt install apt-transport-https
# wget -q -O- 'https://download.ceph.com/keys/release.asc' | sudo apt-key add -
# echo deb https://download.ceph.com/debian-luminous/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
# apt update && sudo apt install ceph-deploy
# wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
# echo deb https://download.ceph.com/debian-luminous/ $(lsb_release -sc) main | tee /etc/apt/sources.list.d/ceph.list
# apt update && apt install ceph-deploy
~~~
> Les commandes précédentes ne sont à exécuter que sur le nœud maître.
@ -205,7 +205,7 @@ L'installation du client est analogue à celle des nœuds. On install Ceph sur l
~~~
# apt install apt-transport-https
# wget -q -O- 'https://download.ceph.com/keys/release.asc' | sudo apt-key add -
# wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
# echo deb https://download.ceph.com/debian-luminous/ $(lsb_release -sc) main | tee /etc/apt/sources.list.d/ceph.list
# apt update && apt install ceph-common
~~~