From: Alfredo Deza Date: Mon, 20 Jul 2015 18:31:54 +0000 (-0400) Subject: fix lack of SUDO in ceph-deploy setup script X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F104%2Fhead;p=ceph-build.git fix lack of SUDO in ceph-deploy setup script Signed-off-by: Alfredo Deza --- diff --git a/ceph-deploy/build/setup b/ceph-deploy/build/setup index 64b834f8..40da36ad 100644 --- a/ceph-deploy/build/setup +++ b/ceph-deploy/build/setup @@ -14,5 +14,5 @@ set -e rpm_deps="python-devel python-virtualenv python-mock python-tox pytest" if test -f /etc/redhat-release ; then - $SUDO yum install -y "$rpm_deps" + sudo yum install -y "$rpm_deps" fi