enable ssh and add quotes around

This commit is contained in:
James Slagle 2014-02-09 11:48:42 -05:00
parent 40de31eba9
commit 4c27fc102f
2 changed files with 5 additions and 1 deletions

View File

@ -72,7 +72,7 @@ diskimage-builder applies the element to an image build.
# $MACS and $PM_* variables should be in the same node order, e.g., the
# first MAC address should correspond to the first power management
# IP, etc.
setup-baremetal $CPU $MEM $DISK $ARCH $MACS undercloud $PM_IPS $PM_USERS $PM_PASSWORDS
setup-baremetal $CPU $MEM $DISK $ARCH "$MACS" undercloud $PM_IPS $PM_USERS $PM_PASSWORDS
7. Create your overcloud heat template. You can adjust COMPUTESCALE to launch
more than one compute node if you choose to.

View File

@ -35,6 +35,10 @@ sudo systemctl start iptables
sudo yum -y install mariadb-server
sudo rm -f /var/log/mariadb/mariadb.log
# Make sure ssh is enabled and running
sudo systemctl enable sshd
sudo systemctl start sshd
pushd instack
sudo pip install -e .
popd