Skip to content
Snippets Groups Projects
bootstrap.sh 1.07 KiB
Newer Older
  • Learn to ignore specific revisions
  • wonko's avatar
    wonko committed
    #!/bin/bash -x
    
    wonko's avatar
    wonko committed
    
    GITPROJ=https://chaos.expert/ccc-ffm/4Refugees-InternetCafe
    
    ATHQ=false
    HQSERVER="install.hq"
    PROXYURL="http://${HQSERVER}:8080/"
    
    wonko's avatar
    wonko committed
    if [ "$1" != "RUNME" ]; then
    
    wonko's avatar
    wonko committed
    
        #pull myself from git repo
        wget "${GITPROJ}/raw/master/bootstrap.sh" -O /root/bootstrap.sh
    
    wonko's avatar
    wonko committed
        chmod u+x /root/bootstrap.sh
    
    wonko's avatar
    wonko committed
        exec /root/bootstrap.sh RUNME
    
    wonko's avatar
    wonko committed
        exit
    
    wonko's avatar
    wonko committed
    #check for install.hq
    
    if ping -c 5 ${HQSERVER}; then
        ATHQ=true
    fi
    
    
    if [ "$ATHQ" = true ]; then
        echo 'Acquire::http::Proxy "${PROXYURL}";' > /etc/apt/apt.conf
    
    wonko's avatar
    wonko committed
    else
        echo "#no proxy" > /etc/apt/apt.conf
    fi
    
    wonko's avatar
    wonko committed
    apt update
    
    wonko's avatar
    wonko committed
    apt install --assume-yes git puppet vim curl
    
    wonko's avatar
    wonko committed
    apt full-upgrade --assume-yes
    
    wonko's avatar
    wonko committed
    if [ ! -e /etc/puppet/.git ]; then  
        mv /etc/puppet /etc/puppet.orig
        git clone ${GITPROJ}.git /etc/puppet
    fi
    
    git remote set-url origin ${GITPROJ}.git
    
    wonko's avatar
    wonko committed
    git pull
    
    git submodule init
    git submodule update
    
    wonko's avatar
    wonko committed
    git pull
    
    puppet apply /etc/puppet/manifests/site.pp
    
    
    if [ "$ATHQ" = true ]; then
    
    wonko's avatar
    wonko committed
        facter --yaml --puppet > /tmp/facts.yaml
    
        curl -T /tmp/facts.yaml ftp://${HQSERVER}/refugee-notebooks/${HOSTNAME}.yaml
    fi