]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
install: install/uninstall radosgw package too 268/head
authorSage Weil <sage@redhat.com>
Tue, 17 Mar 2015 23:44:21 +0000 (16:44 -0700)
committerSage Weil <sage@redhat.com>
Tue, 17 Mar 2015 23:44:21 +0000 (16:44 -0700)
Signed-off-by: Sage Weil <sage@redhat.com>
ceph_deploy/hosts/centos/install.py
ceph_deploy/hosts/centos/uninstall.py
ceph_deploy/hosts/debian/install.py
ceph_deploy/hosts/debian/uninstall.py
ceph_deploy/hosts/fedora/install.py
ceph_deploy/hosts/fedora/uninstall.py
ceph_deploy/hosts/rhel/install.py
ceph_deploy/hosts/rhel/uninstall.py
ceph_deploy/hosts/suse/install.py
ceph_deploy/hosts/suse/uninstall.py

index ca10d7384bc798f9b8ed273a853021de571ca682..1ba388a827b5474e06d05e35d48cefa193e12bbb 100644 (file)
@@ -109,6 +109,7 @@ def install(distro, version_kind, version, adjust_repos):
             '-y',
             'install',
             'ceph',
+            'radosgw',
         ],
     )
 
index 9af8c139d9e6126921ef04fa3d9cc15b864fb808..1f43e3bcf1ffe08b04a44f0ec5a336e25a53f60c 100644 (file)
@@ -6,6 +6,7 @@ def uninstall(conn, purge=False):
         'ceph',
         'ceph-release',
         'ceph-common',
+        'radosgw',
         ]
 
     pkg_managers.yum_remove(
index b6a89e862b7c715a9e0ed96b4a50dc276f8dfbf9..b59f1084dc22d640f3240013f0a87c8dfbae487e 100644 (file)
@@ -91,6 +91,7 @@ def install(distro, version_kind, version, adjust_repos):
             'ceph-mds',
             'ceph-common',
             'ceph-fs-common',
+            'radosgw',
             # ceph only recommends gdisk, make sure we actually have
             # it; only really needed for osds, but minimal collateral
             'gdisk',
index 98c45fb9c9c6265ee366e8132aa44dcd42d5d4cb..ce2013f140a07a843e17ec5d80d9b7edcc012d31 100644 (file)
@@ -7,6 +7,7 @@ def uninstall(conn, purge=False):
         'ceph-mds',
         'ceph-common',
         'ceph-fs-common',
+        'radosgw',
         ]
     pkg_managers.apt_remove(
         conn,
index a6f4385cd3dabdf63cc2c739e6e93272e12ed973..bf9fe709bff097bcb3ec8dd6532a4faca41207fa 100644 (file)
@@ -80,5 +80,6 @@ def install(distro, version_kind, version, adjust_repos):
             '-q',
             'install',
             'ceph',
+            'radosgw',
         ],
     )
index 2a31549e079e638f8117feea8da88c25ff245fc1..f1f07b8e9b7ebf06aa082eb5f2fb747fcb0ba84d 100644 (file)
@@ -5,6 +5,7 @@ def uninstall(conn, purge=False):
     packages = [
         'ceph',
         'ceph-common',
+        'radosgw',
         ]
 
     pkg_managers.yum_remove(
index c65b10cfdac7ed0bf10b6438e67610383947acd6..83b540c9a95cae6973a2127ca716e834422a327c 100644 (file)
@@ -75,4 +75,4 @@ def repo_install(distro, reponame, baseurl, gpgkey, **kw):
 
     # Some custom repos do not need to install ceph
     if install_ceph:
-        pkg_managers.yum(distro.conn, ['ceph', 'ceph-mon', 'ceph-osd'])
+        pkg_managers.yum(distro.conn, ['ceph', 'ceph-mon', 'ceph-osd', 'radosgw'])
index 432d441f4f70175b3e3e4f6f11a9df5cc8418741..d5a7ba1b81ad46407f847924dfcd3117f22bdf9c 100644 (file)
@@ -6,7 +6,8 @@ def uninstall(conn, purge=False):
         'ceph',
         'ceph-common',
         'ceph-mon',
-        'ceph-osd'
+        'ceph-osd',
+        'radosgw'
         ]
 
     pkg_managers.yum_remove(
index 4efb4922fedd8d7e77d1b58f5ea2e89a3eb4b65c..65f1177a20590104b8ebee13f33a9da56bc5fe6e 100644 (file)
@@ -80,6 +80,7 @@ def install(distro, version_kind, version, adjust_repos):
             '--quiet',
             'install',
             'ceph',
+            'radosgw',
             ],
         )
 
index 9d815e738ee718eb6eb4e348bb2d9a1974a7e8ee..c3b742d9a45e733321830bb4f0e0d25e59edc538 100644 (file)
@@ -7,6 +7,7 @@ def uninstall(conn, purge=False):
         'libcephfs1',
         'librados2',
         'librbd1',
+        'radosgw',
         ]
     cmd = [
         'zypper',