summaryrefslogtreecommitdiffstats
path: root/docs/master_nfs_node.sh
diff options
context:
space:
mode:
authorGuillaume Lambert <guillaume.lambert@orange.com>2021-03-08 21:38:31 +0100
committerGuillaume Lambert <guillaume.lambert@orange.com>2021-06-15 20:18:11 +0200
commit62178a49cc9e4088019d426636657d9f2980d242 (patch)
treeadc2fb79281e74a6ac7a1b6ae53235792526a66d /docs/master_nfs_node.sh
parent38634d6ef44d9d4954e553445451992e33c1f2f5 (diff)
[COMMON] Fix a few bashisms
pointed out by checkbashisms: - variable name HOSTNAME - source instead of . - variable increments - sleep with suffix And migrate a few shebangs to /bin/sh Issue-ID: OOM-2643 Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com> Change-Id: I82981bcff17e88cf824935b841ce37a585ddde00
Diffstat (limited to 'docs/master_nfs_node.sh')
-rw-r--r--docs/master_nfs_node.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/master_nfs_node.sh b/docs/master_nfs_node.sh
index 4a7a8dbc12..32574c9f29 100644
--- a/docs/master_nfs_node.sh
+++ b/docs/master_nfs_node.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
usage () {
echo "Usage:"
@@ -23,7 +23,7 @@ sudo chown nobody:nogroup /dockerdata-nfs/
#Update the /etc/exports
NFS_EXP=""
for i in $@; do
- NFS_EXP+="$i(rw,sync,no_root_squash,no_subtree_check) "
+ NFS_EXP="${NFS_EXP}$i(rw,sync,no_root_squash,no_subtree_check) "
done
echo "/dockerdata-nfs "$NFS_EXP | sudo tee -a /etc/exports