summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xci/playbooks/roles/configure-nfs/vars/centos.yml11
-rwxr-xr-xxci/xci-deploy.sh2
2 files changed, 12 insertions, 1 deletions
diff --git a/xci/playbooks/roles/configure-nfs/vars/centos.yml b/xci/playbooks/roles/configure-nfs/vars/centos.yml
new file mode 100644
index 00000000..89a71ce7
--- /dev/null
+++ b/xci/playbooks/roles/configure-nfs/vars/centos.yml
@@ -0,0 +1,11 @@
+---
+# SPDX-license-identifier: Apache-2.0
+##############################################################################
+# Copyright (c) 2017 Nokia Oyj and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+nfs_server_package: "nfs-utils"
+nfs_server_service: "nfs-server"
diff --git a/xci/xci-deploy.sh b/xci/xci-deploy.sh
index fd3849be..90133f8d 100755
--- a/xci/xci-deploy.sh
+++ b/xci/xci-deploy.sh
@@ -44,7 +44,7 @@ fi
#-------------------------------------------------------------------------------
# Sanitize local development environment variables
#-------------------------------------------------------------------------------
-user_local_dev_vars=(OPNFV_RELENG_DEV_PATH OPNFV_OSA_DEV_PATH OPNFV_BIFROST_DEV_PATH)
+user_local_dev_vars=(OPNFV_RELENG_DEV_PATH OPENSTACK_OSA_DEV_PATH OPENSTACK_BIFROST_DEV_PATH)
for local_user_var in ${user_local_dev_vars[@]}; do
[[ -n ${!local_user_var:-} ]] && export $local_user_var=${!local_user_var%/}/
done