diff options
author | Sage Weil <sage@inktank.com> | 2013-02-08 21:09:20 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-02-08 21:09:20 -0800 |
commit | 20255d9846063012bb6188fc2fa7468ef8cfefe4 (patch) | |
tree | f2f33c5502bd11aae99b1e3d57b9e012b597c34f | |
parent | 38dd59ba7cebe1941b864646246f98c75bb395c5 (diff) | |
download | ceph-20255d9846063012bb6188fc2fa7468ef8cfefe4.tar.gz |
doc: update commands for fetching release PGP keys
Use https to ceph.com. The gitweb URLs aren't as pretty, but our
cert is at least valid!
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | doc/install/debian.rst | 4 | ||||
-rw-r--r-- | doc/install/rpm.rst | 5 | ||||
-rw-r--r-- | doc/start/quick-start.rst | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/doc/install/debian.rst b/doc/install/debian.rst index fbdebca1976..0c8db696683 100644 --- a/doc/install/debian.rst +++ b/doc/install/debian.rst @@ -14,7 +14,7 @@ Packages are cryptographically signed with the ``release.asc`` key. Add our release key to your system's list of trusted keys to avoid a security warning:: - wget -q -O- https://raw.github.com/ceph/ceph/master/keys/release.asc | sudo apt-key add - + wget -q -O- 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc' | sudo apt-key add - Add Release Packages ==================== @@ -85,7 +85,7 @@ Packages are cryptographically signed with the ``autobuild.asc`` key. Add our autobuild key to your system's list of trusted keys to avoid a security warning:: - wget -q -O- https://raw.github.com/ceph/ceph/master/keys/autobuild.asc | sudo apt-key add - + wget -q -O- 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/autobuild.asc' | sudo apt-key add - Add our package repository to your system's list of APT sources, but replace ``{BRANCH}`` with the branch you'd like to use (e.g., chef-3, diff --git a/doc/install/rpm.rst b/doc/install/rpm.rst index b83fe5fd66a..386e39ec73a 100644 --- a/doc/install/rpm.rst +++ b/doc/install/rpm.rst @@ -13,7 +13,8 @@ Install Release Key Packages are cryptographically signed with the ``release.asc`` key. Add our release key to your system's list of trusted keys to avoid a security warning:: - sudo rpm --import https://raw.github.com/ceph/ceph/master/keys/release.asc + sudo rpm --import 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc' + Add Release Packages ==================== @@ -54,7 +55,7 @@ prior to release. Packages are cryptographically signed with the ``release.asc`` key. Add our release key to your system's list of trusted keys to avoid a security warning:: - sudo rpm --import https://raw.github.com/ceph/ceph/master/keys/release.asc + sudo rpm --import 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/autobuild.asc' Packages are currently built for the CentOS-6 and Fedora 17 platforms. The repository package installs the repository details on your local system for use diff --git a/doc/start/quick-start.rst b/doc/start/quick-start.rst index 33d7c844103..2fb29f99402 100644 --- a/doc/start/quick-start.rst +++ b/doc/start/quick-start.rst @@ -41,7 +41,7 @@ To get the latest Ceph packages, add a release key to :abbr:`APT (Advanced Package Tool)`, add a source location to the ``/etc/apt/sources.list`` on your Ceph server and client machines, update your systems and install Ceph. :: - wget -q -O- https://raw.github.com/ceph/ceph/master/keys/release.asc | sudo apt-key add - + wget -q -O- 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc' | sudo apt-key add - echo deb http://ceph.com/debian/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list sudo apt-get update && sudo apt-get install ceph |