summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gaffney <agaffney@gentoo.org>2008-03-26 18:41:57 +0000
committerAndrew Gaffney <agaffney@gentoo.org>2008-03-26 18:41:57 +0000
commitc0ca7adfec13e0eceead22964c19f28a5b04801c (patch)
tree5c35801406f2c1adb061a52d7c7df2ded7995180 /autoconfig
parentLet's clean up openglify so it works on both older and newer versions of X.Or... (diff)
downloadlivecd-tools-c0ca7adfec13e0eceead22964c19f28a5b04801c.tar.gz
livecd-tools-c0ca7adfec13e0eceead22964c19f28a5b04801c.tar.bz2
livecd-tools-c0ca7adfec13e0eceead22964c19f28a5b04801c.zip
explicitly start portmap before nfsmount
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/livecd-tools/trunk@147 7bf51bff-881f-0410-a643-fba68b97345e
Diffstat (limited to 'autoconfig')
-rwxr-xr-xautoconfig7
1 files changed, 5 insertions, 2 deletions
diff --git a/autoconfig b/autoconfig
index 08e4f6e..44a0ffe 100755
--- a/autoconfig
+++ b/autoconfig
@@ -539,8 +539,11 @@ start() {
fi
fi
done
- [ "${NFS}" = "yes" ] \
- && [ -x /etc/init.d/nfsmount ] && start_service nfsmount
+ if [ "${NFS}" = "yes" ]
+ then
+ [ -x /etc/init.d/portmap ] && start_service portmap
+ [ -x /etc/init.d/nfsmount ] && start_service nfsmount
+ fi
if [ "${PASSWD}" = "no" ]
then
echo "root:${PASSWORD}" | chpasswd > /dev/null 2>&1