diff options
author | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2015-12-07 23:35:36 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2015-12-11 11:31:03 -0600 |
commit | c1128645a2ae777f37d83477d2bccfd310e4d7c9 (patch) | |
tree | c43dc3538431a3d2c7e4d7d43bd6a3b1bcc76f85 | |
parent | Disable nfs by default (diff) | |
download | livecd-tools-c1128645a2ae777f37d83477d2bccfd310e4d7c9.tar.gz livecd-tools-c1128645a2ae777f37d83477d2bccfd310e4d7c9.tar.bz2 livecd-tools-c1128645a2ae777f37d83477d2bccfd310e4d7c9.zip |
Allow nfs to be activated from the kernel command line
-rw-r--r-- | init.d/autoconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/init.d/autoconfig b/init.d/autoconfig index 0e5d769..7b31b88 100644 --- a/init.d/autoconfig +++ b/init.d/autoconfig @@ -132,6 +132,9 @@ get_config() { donet) NET="yes" ;; + donfs) + NFS="yes" + ;; dopata) PATA="yes" ;; |