diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-16 17:30:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-16 17:30:26 +0000 |
commit | 31263b423280fcea24bcedf28bc0cf0b10be6b0c (patch) | |
tree | 9ae10eb28031757981e7331767dd2b8c338fd1d4 /sys-apps | |
parent | Keyworded ~ppc-macos. (diff) | |
download | historical-31263b423280fcea24bcedf28bc0cf0b10be6b0c.tar.gz historical-31263b423280fcea24bcedf28bc0cf0b10be6b0c.tar.bz2 historical-31263b423280fcea24bcedf28bc0cf0b10be6b0c.zip |
make sure checkconfig returns true #67559
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/cpudyn/Manifest | 8 | ||||
-rw-r--r-- | sys-apps/cpudyn/files/cpudyn.init | 4 |
2 files changed, 7 insertions, 5 deletions
diff --git a/sys-apps/cpudyn/Manifest b/sys-apps/cpudyn/Manifest index 227751430287..f613cce32ec4 100644 --- a/sys-apps/cpudyn/Manifest +++ b/sys-apps/cpudyn/Manifest @@ -6,13 +6,13 @@ MD5 b82d65788ad9b14893f23d69e6ef6322 cpudyn-1.0.ebuild 986 MD5 2c60519258a78ccd06d3bfe30cb50e73 cpudyn-0.99.0.ebuild 1071 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 18c8ec21370d4ce089720fe94de89e6c files/digest-cpudyn-1.0 58 -MD5 0856b699f523f97c7618f07b8e146e77 files/cpudyn.init 3034 +MD5 7ffc3b456504f872563622cdb0413ac0 files/cpudyn.init 3045 MD5 1d3f888c7c5af12d57517e8c7ebb27d8 files/cpudyn-0.99.0-init_conf_updates.patch 816 MD5 14510794829fd0435f8342da60c5ba46 files/digest-cpudyn-0.99.0 61 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.9.10 (GNU/Linux) -iD8DBQFBbBv7HTu7gpaalycRAgxLAJ9L8b3FY1Tx2EIS1sjW8elMfYktCwCeNFXS -g38jBX+rphjE8eBGsjpmkkk= -=ub83 +iD8DBQFBcVq+HTu7gpaalycRAo7aAJsHSNUEIe/kPOPFeJdt+wLOsBucRwCdFRUo +4kTU9pdJZCg8pksXx6am2BM= +=/1wB -----END PGP SIGNATURE----- diff --git a/sys-apps/cpudyn/files/cpudyn.init b/sys-apps/cpudyn/files/cpudyn.init index ab4d530f33ce..9d1349d73397 100644 --- a/sys-apps/cpudyn/files/cpudyn.init +++ b/sys-apps/cpudyn/files/cpudyn.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpudyn/files/cpudyn.init,v 1.6 2004/10/12 18:01:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpudyn/files/cpudyn.init,v 1.7 2004/10/16 17:30:26 vapier Exp $ # # Based on the Debian init script written by Celso Gonzalez <celso@bulma.net>, # and on the cpufreqd Gentoo init script written by Robert Gogolok <robertgogolok@web.de>. @@ -52,6 +52,8 @@ checkconfig() { modprobe -q cpufreq_userspace modprobe -q cpufreq_ondemand fi + + return 0 } |