diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2017-03-08 22:31:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-08 22:31:47 +0300 |
commit | 94293b0f9417acb1648dbc9e659a8f21452a508d (patch) | |
tree | efdcf0d4bb3251a5caae3da9eeb9ac24ac192d16 /test-vm | |
parent | 2f387376aaad69953a8d13324de794bc87772642 (diff) | |
parent | bdb16a81c156bd409f76e979c35621dba7471837 (diff) |
Merge pull request #424 from dritter/add_freebsd_vm
Add FreeBSD VM
Diffstat (limited to 'test-vm')
-rw-r--r-- | test-vm/Vagrantfile | 2 | ||||
-rw-r--r-- | test-vm/plain.sh | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/test-vm/Vagrantfile b/test-vm/Vagrantfile index ee53fcdf..a421c706 100644 --- a/test-vm/Vagrantfile +++ b/test-vm/Vagrantfile @@ -16,7 +16,7 @@ Vagrant.configure(2) do |config| # Bootstrap config.vm.provision :shell, path: "bootstrap.sh", privileged: false - config.vm.provision :shell, path: "plain.sh", privileged: false + config.vm.provision :shell, path: "../test-vm-providers/plain.sh", privileged: false config.vm.provision :shell, path: "antigen.sh" config.vm.provision :shell, path: "prezto.sh" config.vm.provision :shell, path: "omz.sh" diff --git a/test-vm/plain.sh b/test-vm/plain.sh deleted file mode 100644 index 9c8445f4..00000000 --- a/test-vm/plain.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/zsh - -echo 'source /vagrant_data/powerlevel9k.zsh-theme' > ~/.zshrc |