Skip to content

Instantly share code, notes, and snippets.

@apwiggins
Created January 28, 2022 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apwiggins/9cc9324490d652f3282323d82d5e9b9a to your computer and use it in GitHub Desktop.
Save apwiggins/9cc9324490d652f3282323d82d5e9b9a to your computer and use it in GitHub Desktop.
#!/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