9 lines
163 B
Text
9 lines
163 B
Text
|
#!/bin/bash
|
||
|
# Install baseline packages and tools.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
apt-get -y update
|
||
|
apt-get -y install python-software-properties
|
||
|
add-apt-repository -y ppa:tripleo/demo
|