diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2004-09-23 16:28:28 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2004-09-23 16:28:28 +0000 |
commit | 476d579d3c352126e28074fcb6f9b1fa812e7cf9 (patch) | |
tree | dc3c797e2150c756641e53d55bacd27ac4e0975c /app-admin/skey | |
parent | import old ghetto use.mask (diff) | |
download | historical-476d579d3c352126e28074fcb6f9b1fa812e7cf9.tar.gz historical-476d579d3c352126e28074fcb6f9b1fa812e7cf9.tar.bz2 historical-476d579d3c352126e28074fcb6f9b1fa812e7cf9.zip |
add comments
Diffstat (limited to 'app-admin/skey')
-rw-r--r-- | app-admin/skey/Manifest | 2 | ||||
-rw-r--r-- | app-admin/skey/skey-1.1.5-r4.ebuild | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-admin/skey/Manifest b/app-admin/skey/Manifest index ae2912d1482a..6cdc29336bb4 100644 --- a/app-admin/skey/Manifest +++ b/app-admin/skey/Manifest @@ -1,4 +1,4 @@ -MD5 1690c5239d625330b3da6d8f2a7aecf0 skey-1.1.5-r4.ebuild 2824 +MD5 23679dbffb5128b808afff33c26e5c98 skey-1.1.5-r4.ebuild 2867 MD5 72cc897e65fb378c9fb62b35c2c3a95a skey-1.1.5-r1.ebuild 2479 MD5 9eef830d442da8aae38f0242283be14e skey-1.1.5-r3.ebuild 2268 MD5 f0da1a5ab53e7a824dcdd7ec8c477a17 skey-1.1.5.ebuild 1861 diff --git a/app-admin/skey/skey-1.1.5-r4.ebuild b/app-admin/skey/skey-1.1.5-r4.ebuild index 54e584223028..1c5ad26c416f 100644 --- a/app-admin/skey/skey-1.1.5-r4.ebuild +++ b/app-admin/skey/skey-1.1.5-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/skey/skey-1.1.5-r4.ebuild,v 1.2 2004/09/23 11:16:28 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/skey/skey-1.1.5-r4.ebuild,v 1.3 2004/09/23 16:28:28 taviso Exp $ inherit flag-o-matic ccc eutils @@ -86,9 +86,12 @@ pkg_postinst() { # do not include /etc/skey/skeykeys in the package, as quickpkg # may package personal files. # This also fixes the etc-update issue with #64974. - touch /etc/skey/skeykeys && chmod 0600 /etc/skey/skeykeys || { - ewarn "Please verify the permissions of /etc/skey/skeykeys are 0600." - } + + # skeyinit will not function if this file is not present. + touch /etc/skey/skeykeys + + # these permissions are applied by the skey system if missing. + chmod 0600 /etc/skey/skeykeys einfo "For an instroduction into using s/key authentication, take" einfo "a look at the EXAMPLES section from the skey(1) manpage." |