diff options
author | marcel <marcel@FreeBSD.org> | 1999-09-18 03:24:39 +0800 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-09-18 03:24:39 +0800 |
commit | f4654f765b1b67934acafd3c19958d0d4c72d9a4 (patch) | |
tree | d8a3d22ce92bfd50e617b138c0369ad8f04106b9 /emulators/linux_base | |
parent | fb384f54c41059a427dba368a6345a4b4a39313e (diff) | |
download | freebsd-ports-gnome-f4654f765b1b67934acafd3c19958d0d4c72d9a4.tar.gz freebsd-ports-gnome-f4654f765b1b67934acafd3c19958d0d4c72d9a4.tar.zst freebsd-ports-gnome-f4654f765b1b67934acafd3c19958d0d4c72d9a4.zip |
Linux needs a yp.conf file for NIS to work. Install a sample yp.conf so that
NIS users now what to do. Display a note after installation of the port/package
to draw attention to it.
Creating the proper yp.conf on the fly is being considered...
PR: 12748
Originator: Palle Girgensohn <girgen@partitur.se>
Solution by: Palle
Thanks to: nsayer
Diffstat (limited to 'emulators/linux_base')
-rw-r--r-- | emulators/linux_base/Makefile | 4 | ||||
-rw-r--r-- | emulators/linux_base/files/yp.conf | 15 | ||||
-rw-r--r-- | emulators/linux_base/pkg-message | 3 | ||||
-rw-r--r-- | emulators/linux_base/pkg-plist.alpha | 1 | ||||
-rw-r--r-- | emulators/linux_base/pkg-plist.i386 | 1 |
5 files changed, 24 insertions, 0 deletions
diff --git a/emulators/linux_base/Makefile b/emulators/linux_base/Makefile index 1604af2de118..d214c72634c8 100644 --- a/emulators/linux_base/Makefile +++ b/emulators/linux_base/Makefile @@ -156,6 +156,10 @@ do-install: rpm -i ${RPMFLAGS} ${RPMDIR}/$$R; \ done # +# Install yp.conf as a hint to NIS users +# + ${INSTALL} ${COPY} -m 644 ${FILESDIR}/yp.conf ${PREFIX}/etc +# # Finish # .if defined(NEEDLOADLINK) diff --git a/emulators/linux_base/files/yp.conf b/emulators/linux_base/files/yp.conf new file mode 100644 index 000000000000..76d442bd6a87 --- /dev/null +++ b/emulators/linux_base/files/yp.conf @@ -0,0 +1,15 @@ +# sample yp.conf file +# +# Legal entries are: +# +# domainname <domain> Override the default YP domain +# (If not set uses the one from +# the getdomainname() syscall) +# +# ypserver <grape> [<domain>] Define which host to contact +# for YP service. If the <domain> +# argument is included then this +# host service the specified YP +# domain. +domainname my.domain +ypserver localhost diff --git a/emulators/linux_base/pkg-message b/emulators/linux_base/pkg-message index df097041d208..bbfd3e0cad6c 100644 --- a/emulators/linux_base/pkg-message +++ b/emulators/linux_base/pkg-message @@ -4,3 +4,6 @@ Linux binaries, the Linux kernel module must be loaded. See linux(8). You may consider loading the Linux kernel module at boot time. See rc.conf(5). + +When using NIS, don't forget to edit +yp.conf in /compat/linux/etc. diff --git a/emulators/linux_base/pkg-plist.alpha b/emulators/linux_base/pkg-plist.alpha index 3259345d10d8..52c45bbb7074 100644 --- a/emulators/linux_base/pkg-plist.alpha +++ b/emulators/linux_base/pkg-plist.alpha @@ -49,6 +49,7 @@ etc/DIR_COLORS etc/ld.so.conf etc/pam.d/su etc/redhat-release +etc/yp.conf lib/ld-2.0.7.so lib/ld-linux.so.2 lib/libBrokenLocale-2.0.7.so diff --git a/emulators/linux_base/pkg-plist.i386 b/emulators/linux_base/pkg-plist.i386 index 1e29d3d10ba5..3230303e8eee 100644 --- a/emulators/linux_base/pkg-plist.i386 +++ b/emulators/linux_base/pkg-plist.i386 @@ -49,6 +49,7 @@ etc/DIR_COLORS etc/ld.so.conf etc/pam.d/su etc/redhat-release +etc/yp.conf lib/ld-2.0.7.so lib/ld-linux.so.2 lib/libBrokenLocale-2.0.7.so |