Skip to content

Commit

Permalink
Merge pull request #26 from kubostech/release-changes
Browse files Browse the repository at this point in the history
1.0 provisioning cleanup
  • Loading branch information
kyleparrott authored Jun 28, 2017
2 parents 5ff071f + ddf7b40 commit 3665cdc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion builder/provision.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ class BoxProvisioner(BoxAutomator):
VAGRANT_REPO_URL = 'https://github.com/kubostech/kubos-vagrant'
DUMP_LOG_LINES = 50 #Number of lines to dump from end of logs on an error
status_steps = {
'base' : ['privileged',
'base' : ['file',
'privileged',
'test',
'pre-package'],
'kubos-dev' : ['privileged',
'non-privileged',
Expand Down
2 changes: 1 addition & 1 deletion kubos-dev/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "kubostech/base"
config.vm.provision "privileged", type: "shell", path: "./script/privileged-provision.sh"
config.vm.provision "non-privilege", type: "shell", path: "./script/non-privileged-provision.sh", privileged: false
config.vm.provision "non-privileged", type: "shell", path: "./script/non-privileged-provision.sh", privileged: false
config.vm.provision "test", type: "shell", path: "./script/provision-test.sh"
config.vm.provision "pre-package", type: "shell", path: "./script/pre-package.sh"
config.vm.synced_folder ".", "/vagrant"
Expand Down

0 comments on commit 3665cdc

Please sign in to comment.