10 lines
340 B
Plaintext
10 lines
340 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Install controller openstack packages
|
||
|
|
||
|
set -e
|
||
|
set -o xtrace
|
||
|
|
||
|
apt-get -y install keystone glance nova-api nova-cert nova-common nova-scheduler python-nova python-novaclient nova-consoleauth novnc nova-novncproxy cinder-api cinder-scheduler cinder-volume iscsitarget open-iscsi iscsitarget-dkms python-cinderclient nova-network
|
||
|
|