diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-07-01 16:41:57 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-07-01 16:41:57 +0000 |
commit | 1c8d916897afca4accc08bd020b62efb302218b4 (patch) | |
tree | 723b6cfa616e5065fa62be15084b7c2ccc7852cf /net-fs | |
parent | Add unit file (#515568 by Tim Mohlmann) (diff) | |
download | gentoo-2-1c8d916897afca4accc08bd020b62efb302218b4.tar.gz gentoo-2-1c8d916897afca4accc08bd020b62efb302218b4.tar.bz2 gentoo-2-1c8d916897afca4accc08bd020b62efb302218b4.zip |
Add a warning too, bug #514372
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/nfs-utils/ChangeLog | 5 | ||||
-rw-r--r-- | net-fs/nfs-utils/nfs-utils-1.3.0.ebuild | 11 |
2 files changed, 14 insertions, 2 deletions
diff --git a/net-fs/nfs-utils/ChangeLog b/net-fs/nfs-utils/ChangeLog index 6b549f7e994e..179d3cf82e54 100644 --- a/net-fs/nfs-utils/ChangeLog +++ b/net-fs/nfs-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-fs/nfs-utils # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.250 2014/06/28 08:17:11 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.251 2014/07/01 16:41:57 pacho Exp $ + + 01 Jul 2014; Pacho Ramos <pacho@gentoo.org> nfs-utils-1.3.0.ebuild: + Add a warning too, bug #514372 28 Jun 2014; Sergey Popov <pinkbyte@gentoo.org> nfs-utils-1.2.9-r3.ebuild: amd64/arm/x86 stable, wrt bug #504714 diff --git a/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild b/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild index ba5d0f29599d..76ee39db1238 100644 --- a/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild +++ b/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild,v 1.2 2014/06/24 22:54:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild,v 1.3 2014/07/01 16:41:57 pacho Exp $ EAPI="4" @@ -153,4 +153,13 @@ pkg_postinst() { einfo "Copying default ${f##*/} from ${EPREFIX}/usr/$(get_libdir)/nfs to ${EPREFIX}/var/lib/nfs" cp -pPR "${f}" "${EROOT}"/var/lib/nfs/ done + + if systemd_is_booted; then + if [[ ${REPLACING_VERSIONS} < 1.3.0 ]]; then + ewarn "We have switched to upstream systemd unit files. Since" + ewarn "they got renamed, you should probably enable the new ones." + ewarn "You can run 'equery files nfs-utils | grep systemd'" + ewarn "to know what services you need to enable now." + fi + fi } |