diff --git a/cluster/vagrant/provision-node.sh b/cluster/vagrant/provision-node.sh index 7b151e698ef..c7473255a06 100755 --- a/cluster/vagrant/provision-node.sh +++ b/cluster/vagrant/provision-node.sh @@ -79,6 +79,7 @@ else fi install-salt +add-volume-support run-salt diff --git a/cluster/vagrant/provision-utils.sh b/cluster/vagrant/provision-utils.sh index 81f91c95b86..30d612a0984 100755 --- a/cluster/vagrant/provision-utils.sh +++ b/cluster/vagrant/provision-utils.sh @@ -25,6 +25,14 @@ function prepare-package-manager() { dnf update -y dnf dnf-plugins-core } + +function add-volume-support() { + echo "Adding nfs volume support" + + # we need nfs-utils to support volumes + dnf install -y nfs-utils +} + function write-salt-config() { local role="$1"