Hi Zeus_Dev,
I think I understand why it's not working.
When you run the command 'vagrant up myproject' this command looks for a machine named myproject to start up.
If it doesn't find it, it looks for a Vagrantfile in the local directory (which I'm guessing is the original Vagrantfile).
So it starts up from the original box you used in your Vagrantfile.
if you uploaded your box to a Vagrant cloud, then you need to reference that box in a new Vagrantfile (not use the old one).
So let me be specific:
# old Vagrantfile (pretend your using bento/ubuntu-14.04 as base box to create your drupal server)
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-14.04"
# you did all your provisioning in a script
end
# after you package the machine (lets say it's called zeus_dev/drupalproject)
# those project files should already be inside the box
# new Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "zeus_dev/drupalproject"
end
So inside a new directory, with a new Vagrantfile which references your vagrant-cloud box.
You can spin up a new machine (and it should already contain your drupal project files).
Remember, package takes a machine and turns it into a box. When you do 'vagrant up' it takes a box and creates a machine.
I think what you did wrong is that you're not referencing correctly the box you created.
Hope that helps,