From 446e5d8ed29eab242cceb113522e28cb946c043e Mon Sep 17 00:00:00 2001 From: John Wilkins Date: Thu, 14 Jun 2012 09:35:17 -0700 Subject: doc: fixed bash syntax error. Signed-off-by: John Wilkins --- doc/install/debian.rst | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'doc') diff --git a/doc/install/debian.rst b/doc/install/debian.rst index a2b60e25b42..b1456b2cf54 100644 --- a/doc/install/debian.rst +++ b/doc/install/debian.rst @@ -19,7 +19,7 @@ Add our package repository to your system's list of APT sources. See `the Debian repository`_ for a complete list of distributions supported. :: - echo deb http://ceph.com/debian/ ${lsb_release -sc} main | sudo tee /etc/apt/sources.list.d/ceph.list + echo deb http://ceph.com/debian/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list Add Development Packages ------------------------ @@ -36,17 +36,14 @@ Add our package repository to your system's list of APT sources, but replace ``{ with the branch you'd like to use (e.g., chef-3, wip-hack, master, stable). We support ``maveric``, ``oneiric``, and ``precise`` distributions. :: - echo deb http://gitbuilder.ceph.com/ceph-deb-${lsb_release -sc}-x86_64-basic/ref/{BRANCH} ${lsb_release -sc} main | sudo tee /etc/apt/sources.list.d/ceph.list + echo deb http://gitbuilder.ceph.com/ceph-deb-$(lsb_release -sc)-x86_64-basic/ref/{BRANCH} $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list Installing Packages ------------------- Once you have added either release or development packages to APT, -you should update APT's database:: +you should update APT's database and install Ceph:: - sudo apt-get update + sudo apt-get update && sudo apt-get install ceph -Install Ceph:: - - sudo apt-get install ceph .. _the Debian repository: http://ceph.com/debian/dists -- cgit v1.2.1