37 lines
1.4 KiB
Bash
37 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
OS=$(/bin/bash /vagrant/shell/os-detect.sh ID)
|
|
CODENAME=$(/bin/bash /vagrant/shell/os-detect.sh CODENAME)
|
|
|
|
if [[ ! -d /.puphpet-stuff ]]; then
|
|
cat /vagrant/shell/self-promotion.txt
|
|
mkdir /.puphpet-stuff
|
|
echo "Created directory /.puphpet-stuff"
|
|
fi
|
|
|
|
if [[ ! -f /.puphpet-stuff/initial-setup-repo-update ]]; then
|
|
if [ "$OS" == 'debian' ] || [ "$OS" == 'ubuntu' ]; then
|
|
echo "Running initial-setup apt-get update"
|
|
apt-get update >/dev/null
|
|
touch /.puphpet-stuff/initial-setup-repo-update
|
|
echo "Finished running initial-setup apt-get update"
|
|
elif [[ "$OS" == 'centos' ]]; then
|
|
echo "Running initial-setup yum update"
|
|
yum update -y >/dev/null
|
|
echo "Finished running initial-setup yum update"
|
|
|
|
echo "Installing basic development tools (CentOS)"
|
|
yum -y groupinstall "Development Tools" >/dev/null
|
|
echo "Finished installing basic development tools (CentOS)"
|
|
touch /.puphpet-stuff/initial-setup-repo-update
|
|
fi
|
|
fi
|
|
|
|
if [[ "$OS" == 'ubuntu' && ("$CODENAME" == 'lucid' || "$CODENAME" == 'precise') && ! -f /.puphpet-stuff/ubuntu-required-libraries ]]; then
|
|
echo 'Installing basic curl packages (Ubuntu only)'
|
|
apt-get install -y libcurl3 libcurl4-gnutls-dev >/dev/null
|
|
echo 'Finished installing basic curl packages (Ubuntu only)'
|
|
|
|
touch /.puphpet-stuff/ubuntu-required-libraries
|
|
fi
|