13 lines
380 B
Bash
Executable File
13 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
sudo add-apt-repository --yes ppa:juju/stable
|
|
sudo apt-get update --yes
|
|
sudo apt-get install --yes python-amulet \
|
|
python-distro-info \
|
|
python-neutronclient \
|
|
python-keystoneclient \
|
|
python-novaclient \
|
|
python-glanceclient
|