diff options
author | 2005-06-20 21:43:15 +0000 | |
---|---|---|
committer | 2005-06-20 21:43:15 +0000 | |
commit | dd888ac3b2047d7c14e8f8034766c196d4995e4b (patch) | |
tree | e14d8addf3b86743bc17729dd2d6d281fcd0969e /net-analyzer/hyperic-hq-agent/files | |
parent | Patched vmware-config.pl to no longer install .desktop and mime-type files. ... (diff) | |
download | gentoo-2-dd888ac3b2047d7c14e8f8034766c196d4995e4b.tar.gz gentoo-2-dd888ac3b2047d7c14e8f8034766c196d4995e4b.tar.bz2 gentoo-2-dd888ac3b2047d7c14e8f8034766c196d4995e4b.zip |
version bump
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-analyzer/hyperic-hq-agent/files')
-rw-r--r-- | net-analyzer/hyperic-hq-agent/files/digest-hyperic-hq-agent-2.1.20 | 2 | ||||
-rwxr-xr-x | net-analyzer/hyperic-hq-agent/files/hyperic-hq-agent.init-2.1.20 | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/net-analyzer/hyperic-hq-agent/files/digest-hyperic-hq-agent-2.1.20 b/net-analyzer/hyperic-hq-agent/files/digest-hyperic-hq-agent-2.1.20 new file mode 100644 index 000000000000..f98d14668b45 --- /dev/null +++ b/net-analyzer/hyperic-hq-agent/files/digest-hyperic-hq-agent-2.1.20 @@ -0,0 +1,2 @@ +MD5 29d2c009d5d38508f54ac30fc9b43fe3 hyperic-hq-agent-2.1.20-x86-linux.tgz 46244342 +MD5 2279b6ad7f5432522c166cc771c3e869 hyperic-hq-agent-2.1.20-amd64-linux.tgz 49863307 diff --git a/net-analyzer/hyperic-hq-agent/files/hyperic-hq-agent.init-2.1.20 b/net-analyzer/hyperic-hq-agent/files/hyperic-hq-agent.init-2.1.20 new file mode 100755 index 000000000000..f405afeb9f0e --- /dev/null +++ b/net-analyzer/hyperic-hq-agent/files/hyperic-hq-agent.init-2.1.20 @@ -0,0 +1,17 @@ +#!/sbin/runscript + +depend() { + need net clock hostname +} + +start() { + ebegin "Starting Hyperic HQ Agent" + start-stop-daemon --start --quiet --chuid hyperic:hyperic --exec /opt/hyperic-hq-agent-2.1.20/hq-agent.sh -- start + eend $? +} + +stop() { + ebegin "Stopping Hyperic HQ Agent" + start-stop-daemon --stop --quiet --user hyperic --retry 5 + eend $? +} |