From ce44ba76e5146d4621f8a5abcb71ecce270f2817 Mon Sep 17 00:00:00 2001 From: Checksum Date: Sun, 18 Feb 2024 13:01:14 -0600 Subject: [PATCH] refactor: move vagrant scripts to a folder and add a post up message. --- Vagrantfile | 1 + provision.sh => vagrant/provision.sh | 0 2 files changed, 1 insertion(+) rename provision.sh => vagrant/provision.sh (100%) diff --git a/Vagrantfile b/Vagrantfile index a07b141f9..fcdb17390 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,6 +10,7 @@ Vagrant.configure("2") do |config| # setup the synced folder and provision the VM config.vm.synced_folder ".", "/var/www/pterodactyl" config.vm.provision "shell", path: "provision.sh" + config.vm.post_up_message = "Pterodactyl is up and running at http://localhost:3000. Login with username: dev@pyro.host, password: 'password'." # allocated testing ports config.vm.network "forwarded_port", guest: 25565, host: 25565, host_ip: "0.0.0.0" diff --git a/provision.sh b/vagrant/provision.sh similarity index 100% rename from provision.sh rename to vagrant/provision.sh