Add package install support to swift

Change-Id: I4034e1a19306547a78265c8ecbc9a52fd83ced8c
This commit is contained in:
James Slagle 2014-01-20 13:55:01 -05:00
parent f1626c41be
commit ecf0f6d210
8 changed files with 22 additions and 4 deletions

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eux
install-packages openstack-swift-proxy

View File

@ -3,4 +3,4 @@ set -eu
os-svc-enable -n swift-proxy
service swift-proxy restart
os-svc-restart -n swift-proxy

View File

@ -0,0 +1,8 @@
#!/bin/bash
set -eux
install-packages \
openstack-swift-storage \
openstack-swift-account \
openstack-swift-container

View File

@ -5,6 +5,6 @@ os-svc-enable -n swift-account
os-svc-enable -n swift-container
os-svc-enable -n swift-object
service swift-account restart
service swift-container restart
service swift-object restart
os-svc-restart -n swift-account
os-svc-restart -n swift-container
os-svc-restart -n swift-object

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eux
install-packages openstack-swift