Skip to content

Instantly share code, notes, and snippets.

View benwynn's full-sized avatar

Ben Wynn benwynn

  • Isobar Federal
  • Canton, MA
View GitHub Profile
@benwynn
benwynn / vagrant-hybrisdev-mysql.sh
Last active November 1, 2017 17:47
Vagrant shell provisioning script to install mysql server
#!/bin/sh
debconf-set-selections <<< 'mysql-server mysql-server/root_password password vagrant'
debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password vagrant'
apt-get update
apt-get install -y mysql-server