Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*bugfix) uncomment the install script. #81

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/support/vm/openldap/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.ssh.forward_agent = true

# config.vm.provision "shell", inline: "apt-get update; exec env /vagrant_data/script/install-openldap"
# If install the openldap with apt-get failed, you can comment this line.
config.vm.provision "shell", inline: "apt-get update; exec env /vagrant_data/script/install-openldap"

config.vm.provision "shell", inline: 'echo "HIIIIIII"', run: "always"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think line 17 was added by mistake: we should remove this line as well.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Err, that's line 19 (the echo "HIIIIII" line).


config.vm.synced_folder "../../../..", "/vagrant_data"
Expand Down