diff options
author | James Meyer <james.meyer@operamail.com> | 2012-09-10 22:45:15 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-09-10 22:45:15 (GMT) |
commit | 9390f29e452fe94e48ffbb7674f8ce5cc045cc3a (patch) | |
tree | 7183f68a6672920162ff6e9a4eaf0fdfaefdab60 /abs/core | |
parent | 98a003ea4ba6ffd0e529f30b14ce8cf24c4a9ebd (diff) | |
download | linhes_pkgbuild-9390f29e452fe94e48ffbb7674f8ce5cc045cc3a.zip linhes_pkgbuild-9390f29e452fe94e48ffbb7674f8ce5cc045cc3a.tar.gz linhes_pkgbuild-9390f29e452fe94e48ffbb7674f8ce5cc045cc3a.tar.bz2 |
mv_fileshare:data_config was missing from the function call for nfs clients.
Diffstat (limited to 'abs/core')
-rwxr-xr-x | abs/core/LinHES-config/mv_fileshare.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/abs/core/LinHES-config/mv_fileshare.py b/abs/core/LinHES-config/mv_fileshare.py index 06f3091..d8866c4 100755 --- a/abs/core/LinHES-config/mv_fileshare.py +++ b/abs/core/LinHES-config/mv_fileshare.py @@ -4,7 +4,7 @@ import mv_common import glob #client side -def setup_nfs_client(systemconfig): +def setup_nfs_client(systemconfig,data_config): nfslist=[] logging.info("____Start of setup_nfs__client____") scrubnfs(systemconfig.get("TEMPLATES")) @@ -325,7 +325,7 @@ def setup_fileshare(systemconfig,data_config): return logging.info("____Start of fileshare configuration____") #client - setup_nfs_client(systemconfig) + setup_nfs_client(systemconfig,data_config) #server setup_NFSshares(systemconfig.get("UseNFS"), systemconfig.get("TEMPLATES")+"/exports.template",data_config) |