[
https://issues.apache.org/jira/browse/DTACLOUD-63?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ronelle Landy closed DTACLOUD-63.
---------------------------------
Resolution: Fixed
This should no longer be an issue.
init scipt now uses:
echo -n $"Shutting down $prog: "
if [ -f $PIDFILE ]; then
kill -9 `cat $PIDFILE`
> The /etc/init.d/deltacloud-core script for Fedora/RHEL kills *every*
> deltacloudd processes when shutting down, rather than just its own
> ---------------------------------------------------------------------------------------------------------------------------------------
>
> Key: DTACLOUD-63
> URL: https://issues.apache.org/jira/browse/DTACLOUD-63
> Project: DeltaCloud
> Issue Type: Bug
> Environment: RHEL 6.1
> Reporter: Justin Clift
> Assignee: David Lutterkort
> Priority: Minor
> Attachments: deltacloud-ec2-us-east-1
>
>
> When shutting down deltacloud-core on a server with several deltacloudd
> processes (ie Aeolus 0.3.0 release), the deltacloud-core script blindly kills
> every deltacloud daemon on the server instead of just the deltacloud-core one.
> This is because the init.d script is using:
> stop() {
> echo -n $"Shutting down $prog: "
> killproc deltacloudd
> Instead of using the PID of the correct process.
> Something like this should work, if the start() function is updated to save
> the pid in PIDFILE:
> killproc -p $PIDFILE deltacloudd
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira