You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@vcl.apache.org by "Tony Miller (Created) (JIRA)" <ji...@apache.org> on 2012/02/21 20:39:46 UTC

[jira] [Created] (VCL-558) vcld_cron_check uses incorrect name of VCL Daemon

vcld_cron_check uses incorrect name of VCL Daemon
-------------------------------------------------

                 Key: VCL-558
                 URL: https://issues.apache.org/jira/browse/VCL-558
             Project: VCL
          Issue Type: Bug
          Components: vcld (backend)
    Affects Versions: 2.2.1
            Reporter: Tony Miller
            Priority: Minor


The managementnode/bin/vcld_cron_check script is looking for and invoking /etc/init.d/vcld.start.  It should either invoke /etc/init.d/vcld or, preferably, use the service command.

--
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

        

[jira] [Resolved] (VCL-558) vcld_cron_check uses incorrect name of VCL Daemon

Posted by "Aaron Peeler (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/VCL-558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aaron Peeler resolved VCL-558.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.3

Thanks Tony for finding and submitting a fix.
Aaron
                
> vcld_cron_check uses incorrect name of VCL Daemon
> -------------------------------------------------
>
>                 Key: VCL-558
>                 URL: https://issues.apache.org/jira/browse/VCL-558
>             Project: VCL
>          Issue Type: Bug
>          Components: vcld (backend)
>    Affects Versions: 2.2.1
>            Reporter: Tony Miller
>            Priority: Minor
>              Labels: patch
>             Fix For: 2.3
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The managementnode/bin/vcld_cron_check script is looking for and invoking /etc/init.d/vcld.start.  It should either invoke /etc/init.d/vcld or, preferably, use the service command.

--
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

        

[jira] [Commented] (VCL-558) vcld_cron_check uses incorrect name of VCL Daemon

Posted by "Tony Miller (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/VCL-558?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13212841#comment-13212841 ] 

Tony Miller commented on VCL-558:
---------------------------------

Patch entry for this bug:


22,23c22,23
< if ! /etc/init.d/vcld.start status &> /dev/null; then
<    if /etc/init.d/vcld.start start &> /dev/null; then
---
> if ! service vcld status &> /dev/null; then
>    if service vcld start &> /dev/null; then

                
> vcld_cron_check uses incorrect name of VCL Daemon
> -------------------------------------------------
>
>                 Key: VCL-558
>                 URL: https://issues.apache.org/jira/browse/VCL-558
>             Project: VCL
>          Issue Type: Bug
>          Components: vcld (backend)
>    Affects Versions: 2.2.1
>            Reporter: Tony Miller
>            Priority: Minor
>              Labels: patch
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The managementnode/bin/vcld_cron_check script is looking for and invoking /etc/init.d/vcld.start.  It should either invoke /etc/init.d/vcld or, preferably, use the service command.

--
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