You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
484 B
15 lines
484 B
## -- this is all the basic ansible config to ensure it can begin pulling configs down.
|
|
|
|
## pull down some files
|
|
mkdir /root/bin
|
|
cd /root/bin
|
|
|
|
wget https://config.tombstones.org.uk:23000/tombstones/files/raw/branch/master/root/deploy.sh
|
|
wget https://config.tombstones.org.uk:23000/tombstones/files/raw/branch/master/root/pull.sh
|
|
wget https://config.tombstones.org.uk:23000/tombstones/files/raw/branch/master/root/site.sh
|
|
|
|
chmod 750 *.sh
|
|
|
|
## -- now run the script(s):
|
|
~/bin/deploy.sh
|
|
|
|
|