Last active
August 29, 2015 14:06
-
-
Save rcmachado/298d077b00242807010a to your computer and use it in GitHub Desktop.
Revisions
-
rcmachado revised this gist
Oct 16, 2014 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,11 @@ #!/bin/sh # Install & configure boxen SKIP_ENCRYPTION="--no-fde" BOXEN_REPOSITORY="https://github.com/rcmachado/my-boxen" sudo mkdir -p /opt/boxen sudo chown ${USER}:staff /opt/boxen git clone ${BOXEN_REPOSITORY} /opt/boxen/repo cd /opt/boxen/repo ./script/boxen ${SKIP_ENCRYPTION} -
rcmachado created this gist
Sep 23, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # Install & configure boxen SKIP_ENCRYPTION="--no-fde" sudo mkdir -p /opt/boxen sudo chown ${USER}:staff /opt/boxen git clone https://github.com/rcmachado/my-boxen /opt/boxen/repo cd /opt/boxen/repo ./script/boxen ${SKIP_ENCRYPTION}