Skip to content

Instantly share code, notes, and snippets.

View dushaun's full-sized avatar
🎯
Focusing

DuShaun dushaun

🎯
Focusing
  • United Kingdom
  • 15:08 (UTC +01:00)
View GitHub Profile
@fideloper
fideloper / install.sh
Last active October 30, 2023 20:03
Vagrant Provisioning Script for PHP applications. This installs a LAMP stack.
#!/usr/bin/env bash
echo ">>> Starting Install Script"
# Update
sudo apt-get update
# Install MySQL without prompt
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root'
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root'