summaryrefslogtreecommitdiff
path: root/scripts/nfs
diff options
context:
space:
mode:
authorJeff Bailey <jbailey@ubuntu.com>2005-06-14 21:39:18 +0000
committerJeff Bailey <jbailey@ubuntu.com>2005-06-14 21:39:18 +0000
commit43528be821f50d8676ba29d7e51be6915d74cfae (patch)
tree92a2d45e2fc1672709b1b75fdbe7332375bbb11d /scripts/nfs
parent433e18f414f120c3c28568114ea6854167fe7c74 (diff)
downloadinitramfs-tools-43528be821f50d8676ba29d7e51be6915d74cfae.tar.gz
initramfs-tools-43528be821f50d8676ba29d7e51be6915d74cfae.zip
export command line parameters to run scripts. honour commandline readonly/readwrite parameters for nfs. Release initramfs 0.8
Diffstat (limited to 'scripts/nfs')
-rw-r--r--scripts/nfs8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/nfs b/scripts/nfs
index 9860ea7..d8a259a 100644
--- a/scripts/nfs
+++ b/scripts/nfs
@@ -12,7 +12,13 @@ mountroot ()
run_scripts /scripts/nfs-premount
- nfsmount ${NFSROOT} ${rootmnt}
+ if [ ${readonly} = y ]; then
+ roflag="-o ro"
+ else
+ roflag="-o rw"
+ fi
+
+ nfsmount ${roflag} ${NFSROOT} ${rootmnt}
run_scripts /scripts/nfs-bottom