10 lines
340 B
Bash
Executable File
10 lines
340 B
Bash
Executable File
#!/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
|
|
|