Compare commits

..

2 Commits

Author SHA1 Message Date
907a02bebc Merge branch 'master' of git.charlesreid1.com:dotfiles/cloud-init
* 'master' of git.charlesreid1.com:dotfiles/cloud-init:
  Update 'linode/deploy_charlesreid1.com'
  Update 'linode/deploy_charlesreid1.com'
2018-03-12 02:23:37 -07:00
bc106935e4 flatten linode deploy script 2018-03-12 02:23:24 -07:00

View File

@@ -6,20 +6,21 @@
# bash <( curl https://charlesreid1.com:3000/dotfiles/cloud-init/raw/master/linode/deploy_charlesreid1.com ) # bash <( curl https://charlesreid1.com:3000/dotfiles/cloud-init/raw/master/linode/deploy_charlesreid1.com )
# first things first # first things first
apt-get update
apt-get install -y git apt-get install -y git
cd ~ cd $HOME
(
mkdir codes
cd codes
( mkdir -p $HOME/codes
mkdir dotfiles cd $HOME/codes
cd dotfiles
mkdir -p $HOME/codes/dotfiles
cd $HOME/codes/dotfiles
git clone https://charlesreid1.com:3000/dotfiles/debian.git git clone https://charlesreid1.com:3000/dotfiles/debian.git
(
cd debian cd $HOME/codes/dotfiles/debian
./pre_bootstrap.sh ./pre_bootstrap.sh
./make_user_charles.sh ./make_user_charles.sh
./bootstrap.sh -f ./bootstrap.sh -f
@@ -29,7 +30,3 @@ cd debian
./set_machine_name.sh krash ./set_machine_name.sh krash
sudo -H -i -u charles ./charles_tasks.sh sudo -H -i -u charles ./charles_tasks.sh
)
)
)