aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-07-13 13:19:04 +0200
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-07-13 13:19:04 +0200
commitc9feb9ba3e89e255aab8f1fcc60040786694abc2 (patch)
tree753ef0168fb2a429642e1b0bf0c8c99822aefe3d /bootstrap
parentc017090d8b4869591746f75b0aa000a3e1a5bb07 (diff)
[CODESEARCH] Always run the 'run_codesearch' provisioner
This will automatically run the Hound engine after box reload. Change-Id: If9e2e186ab16f461b63e963a2ec189783cda0010 Issue-ID: INT-1940 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/codesearch/Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/codesearch/Vagrantfile b/bootstrap/codesearch/Vagrantfile
index 3df687a96..ba2339d0c 100644
--- a/bootstrap/codesearch/Vagrantfile
+++ b/bootstrap/codesearch/Vagrantfile
@@ -34,7 +34,7 @@ Vagrant.configure("2") do |config|
s.inline = "python3 #{synced_folder}/create_config.py --git ${1} > #{houndd_config}"
s.args = [onap_git]
end
- config.vm.provision "run_codesearch", type: :shell, privileged: false, inline: <<-SHELL
+ config.vm.provision "run_codesearch", type: :shell, run: "always", privileged: false, inline: <<-SHELL
tmux new -d -s codesearch #{houndd_bin} -conf #{houndd_config}
SHELL
end