diff options
author | Rob Woolley <rob.woolley@windriver.com> | 2015-03-09 19:52:56 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-16 17:42:04 +0000 |
commit | f6c9b4f0eb0c9a4483de519f0c9ef6f44fa931b4 (patch) | |
tree | d6dc1a6ed317aa48ef784b63dc899107cb55b31e /meta | |
parent | 4851a67e6cf042bc2475259dfa390fbd3c725bc8 (diff) | |
download | poky-f6c9b4f0eb0c9a4483de519f0c9ef6f44fa931b4.tar.gz |
nfs-utils: Install nfsmount.conf
The file nfsmount.conf is present in nfs-utils but not installed to the
filesystem. It has been added to nfs-utils-client as it seemed to be
missing accidentally rather than being removed intentionally. The binary
files in nfs-utils-client have a hard-coded reference to it and we
already provide the manpage for it in nfs-utils-doc.
Signed-off by: Rob Woolley <rob.woolley@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb index e4655d9a60..1439063363 100644 --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb | |||
@@ -73,6 +73,7 @@ FILES_${PN}-client = "${base_sbindir}/*mount.nfs* ${sbindir}/*statd \ | |||
73 | ${sbindir}/showmount ${sbindir}/nfsstat \ | 73 | ${sbindir}/showmount ${sbindir}/nfsstat \ |
74 | ${localstatedir}/lib/nfs \ | 74 | ${localstatedir}/lib/nfs \ |
75 | ${sysconfdir}/nfs-utils.conf \ | 75 | ${sysconfdir}/nfs-utils.conf \ |
76 | ${sysconfdir}/nfsmount.conf \ | ||
76 | ${sysconfdir}/init.d/nfscommon \ | 77 | ${sysconfdir}/init.d/nfscommon \ |
77 | ${systemd_unitdir}/system/nfs-statd.service" | 78 | ${systemd_unitdir}/system/nfs-statd.service" |
78 | FILES_${PN}-stats = "${sbindir}/mountstats ${sbindir}/nfsiostat" | 79 | FILES_${PN}-stats = "${sbindir}/mountstats ${sbindir}/nfsiostat" |
@@ -90,6 +91,8 @@ do_install_append () { | |||
90 | install -m 0755 ${WORKDIR}/nfscommon ${D}${sysconfdir}/init.d/nfscommon | 91 | install -m 0755 ${WORKDIR}/nfscommon ${D}${sysconfdir}/init.d/nfscommon |
91 | 92 | ||
92 | install -m 0755 ${WORKDIR}/nfs-utils.conf ${D}${sysconfdir} | 93 | install -m 0755 ${WORKDIR}/nfs-utils.conf ${D}${sysconfdir} |
94 | install -m 0755 ${S}/utils/mount/nfsmount.conf ${D}${sysconfdir} | ||
95 | |||
93 | install -d ${D}${systemd_unitdir}/system | 96 | install -d ${D}${systemd_unitdir}/system |
94 | install -m 0644 ${WORKDIR}/nfs-server.service ${D}${systemd_unitdir}/system/ | 97 | install -m 0644 ${WORKDIR}/nfs-server.service ${D}${systemd_unitdir}/system/ |
95 | install -m 0644 ${WORKDIR}/nfs-mountd.service ${D}${systemd_unitdir}/system/ | 98 | install -m 0644 ${WORKDIR}/nfs-mountd.service ${D}${systemd_unitdir}/system/ |