Last active
May 28, 2019 10:07
-
-
Save DilwoarH/8421138cd949782a3eba36c6411e8421 to your computer and use it in GitHub Desktop.
GOV.UK DEV VM
This file contains 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 characters
cd /var/govuk | |
function app { | |
cd /var/govuk/$1; | |
} | |
function dev-vm { | |
cd /var/govuk/govuk-puppet/development-vm; | |
} | |
function xbowl { | |
(cd /var/govuk/govuk-puppet/development-vm; bowl $1) | |
} | |
function update { | |
(cd /var/govuk/govuk-puppet/development-vm; ./update-$1.sh) | |
} | |
function startup { | |
(cd /var/govuk/$1; ./startup.sh) | |
} | |
function startup-live { | |
(cd /var/govuk/$1; ./startup.sh --live) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment