Created
January 28, 2022 21:03
-
-
Save apwiggins/9cc9324490d652f3282323d82d5e9b9a to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# split installation into two parts | |
# - part 1 - build VM and do initial provisioning; because PATH isn't immediately | |
# available, a logout is required and installation continues in part 2 | |
# - part 2 - complete the remaining installation | |
# part 1 install | |
vagrant up | |
# part 2 install | |
vagrant ssh -c \ | |
"cd shared/release-8.0.0/core-release-8.0.0; \ | |
inv install; \ | |
sudo systemctl enable core-daemon; \ | |
sudo systemctl start core-daemon" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment