<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Start &amp;amp; Kill scripts in rc*.d in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487794#M363333</link>
    <description>&amp;gt; Does your script run successfully to kill your process(s) if you execute it at the commandline?&lt;BR /&gt;Yes, if i run it, it adds the stop statement in /etc/init.d/log file.</description>
    <pubDate>Fri, 28 Aug 2009 10:57:36 GMT</pubDate>
    <dc:creator>Vibhor Kumar Agarwal</dc:creator>
    <dc:date>2009-08-28T10:57:36Z</dc:date>
    <item>
      <title>Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487785#M363324</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am trying to put start &amp;amp; kill files in rc*.d folders.&lt;BR /&gt;&lt;BR /&gt;At the moment my S* scripts are getting executed from rc3.d, but K* scripts are not getting executed from and of the rc*.d folder.&lt;BR /&gt;&lt;BR /&gt;Here is my script:&lt;BR /&gt;start)&lt;BR /&gt;        echo "Start rc0 `date`" &amp;gt;&amp;gt; /etc/init.d/log&lt;BR /&gt;        ;;&lt;BR /&gt;stop)&lt;BR /&gt;        echo "Stop rc0 `date`" &amp;gt;&amp;gt; /etc/init.d/log&lt;BR /&gt;        ;;&lt;BR /&gt;*)&lt;BR /&gt;        echo Invalid $1 &amp;gt;&amp;gt; /etc/init.d/log&lt;BR /&gt;        ;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;Have put the K scripts rc0.d, rc1.d, rc2.d &amp;amp; rc3.d&lt;BR /&gt;After the system reboot, i could see only "Start rc3" entry in my log file (/etc/init.d/log)&lt;BR /&gt;&lt;BR /&gt;Could somebody help me in solving why the K scripts are not getting executed.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 28 Aug 2009 09:26:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487785#M363324</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2009-08-28T09:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487786#M363325</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;There is a document on this, but here is the quick run.&lt;BR /&gt;&lt;BR /&gt;Startup script must be in /sbin/init.d (HP-UX)&lt;BR /&gt;&lt;BR /&gt;soft link the S start script in /sbin/rc3.d pointing to startup script.&lt;BR /&gt;&lt;BR /&gt;Kill script is soft linked in /sbin/rc2.d pointing to the same script.&lt;BR /&gt;&lt;BR /&gt;When starting from scratch:&lt;BR /&gt;&lt;BR /&gt;cd /sbin/init.d&lt;BR /&gt;cp template myscript&lt;BR /&gt;# edit myscript&lt;BR /&gt;cd /sbin/rc3.d&lt;BR /&gt;ln -s /sbin/init.d/myscript S70myscript&lt;BR /&gt;cd /sbin/rc3.d&lt;BR /&gt;ln -s /sbin/init.d/myscript K30myscript&lt;BR /&gt;&lt;BR /&gt;That is the basics.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;hpuxadmin in gtalk&lt;BR /&gt;hpuxconsulting in yahoo messenger</description>
      <pubDate>Fri, 28 Aug 2009 09:40:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487786#M363325</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-08-28T09:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487787#M363326</link>
      <description>Sounds like you need to spend some time with the rc man page.  The scripts do not "go in" the rc directories.  They exist in the /sbin/init.d directory and are linked into the appropriate rc?.d directories.  That could be a major portion of your problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 28 Aug 2009 09:41:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487787#M363326</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-08-28T09:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487788#M363327</link>
      <description>Hi Vibhor,&lt;BR /&gt;&lt;BR /&gt;To ensure that you are conforming to the correct rules with regard to the shutdown "K" scripts do a "man rc" or refer to the following link, which is still relevant even though it relates to HP-UX 10.x :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/934/startup.pdf" target="_blank"&gt;http://docs.hp.com/en/934/startup.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Mark&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Aug 2009 09:41:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487788#M363327</guid>
      <dc:creator>Mark S Meadows</dc:creator>
      <dc:date>2009-08-28T09:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487789#M363328</link>
      <description>Thanks for the inputs.&lt;BR /&gt;&lt;BR /&gt;I have made the changes according to the document, still can't get the K* scripts getting executed.&lt;BR /&gt;&lt;BR /&gt;As you people have suggested, my scripts are in /sbin/init.d &amp;amp; all rc*d folers have links.&lt;BR /&gt;&lt;BR /&gt;bash-2.05# find /sbin -name "K990server" -exec ls -l {} \;&lt;BR /&gt;lrwxrwxrwx   1 root       sys             19 Aug 28 16:46 /sbin/rc2.d/K990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;lrwxrwxrwx   1 root       sys             19 Aug 28 16:46 /sbin/rc1.d/K990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;lrwxrwxrwx   1 root       sys             19 Aug 28 16:46 /sbin/rc0.d/K990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;lrwxrwxrwx   1 root       sys             19 Aug 28 16:46 /sbin/rc3.d/K990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;&lt;BR /&gt;bash-2.05# find /sbin -name "S990server" -exec ls -l {} \;&lt;BR /&gt;lrwxrwxrwx   1 root       sys             19 Aug 28 16:47 /sbin/rc3.d/S990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Any thoughts what i may be missing.</description>
      <pubDate>Fri, 28 Aug 2009 10:25:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487789#M363328</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2009-08-28T10:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487790#M363329</link>
      <description>Please read /etc/rc.log to see any error messages your script may have caused.&lt;BR /&gt;&lt;BR /&gt;The script you showed in your first message seems to be incomplete: the beginning of the "case" statement is missing. If your actual script has this error, this may cause strange behaviour.&lt;BR /&gt;&lt;BR /&gt;MK&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Aug 2009 10:26:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487790#M363329</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-08-28T10:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487791#M363330</link>
      <description>That was a typo, the case statement is complete.&lt;BR /&gt;&lt;BR /&gt;In /etc/rc.log, I could see a single entry of S990server without any error.&lt;BR /&gt;However, couldn't find a single entry of K990server.&lt;BR /&gt;&lt;BR /&gt;What could be the reason.</description>
      <pubDate>Fri, 28 Aug 2009 10:38:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487791#M363330</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2009-08-28T10:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487792#M363331</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Are you replicating the same kill script at every run-level as your post suggests?  If so, this isn't correct nor necessary.&lt;BR /&gt;&lt;BR /&gt;Remember that the environment provided to the run-level scripts is sparse.  That is, unless you specifically provide variables that you normally have in a login session, they will not be present.  Too, the PATH is limited.&lt;BR /&gt;&lt;BR /&gt;Does your script run successfully to kill your process(s) if you execute it at the commandline?&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 28 Aug 2009 10:48:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487792#M363331</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-08-28T10:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487793#M363332</link>
      <description>Yes, at the moment i am linking the same script in every run level.&lt;BR /&gt;&lt;BR /&gt;I couldn't figure out whether my service was getting stopped or just killed due to system boot.&lt;BR /&gt;&lt;BR /&gt;Hence, at the moment this is my only script.&lt;BR /&gt;This doesn't have any command that should require the full path. The only ones used are "echo" &amp;amp; "date" which should be available to all environments.</description>
      <pubDate>Fri, 28 Aug 2009 10:56:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487793#M363332</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2009-08-28T10:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487794#M363333</link>
      <description>&amp;gt; Does your script run successfully to kill your process(s) if you execute it at the commandline?&lt;BR /&gt;Yes, if i run it, it adds the stop statement in /etc/init.d/log file.</description>
      <pubDate>Fri, 28 Aug 2009 10:57:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487794#M363333</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2009-08-28T10:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487795#M363334</link>
      <description>&amp;gt;&amp;gt;In /etc/rc.log, &lt;BR /&gt;&lt;BR /&gt;For the K* scripts you need to look in /etc/rc.log.old.&lt;BR /&gt;&lt;BR /&gt;When you reboot or shut down the system, entries for the shutdown (K* scripts) gets appended to the current /etc/rc.log.&lt;BR /&gt;&lt;BR /&gt;When the system starts, /etc/rc.log gets moved to /etc/rc.log.old.  So there will only be entries for Startup.</description>
      <pubDate>Fri, 28 Aug 2009 12:09:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487795#M363334</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-08-28T12:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487796#M363335</link>
      <description>Time to return to the man page.  This time pay particular attention to the "Script Output" section.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 28 Aug 2009 12:18:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487796#M363335</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-08-28T12:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487797#M363336</link>
      <description>"46 /sbin/rc3.d/K990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;&lt;BR /&gt;bash-2.05# find /sbin -name "S990server" -exec ls -l {} \;&lt;BR /&gt;lrwxrwxrwx 1 root sys 19 Aug 28 16:47 /sbin/rc3.d/S990server -&amp;gt; /sbin/init.d/server&lt;BR /&gt;"&lt;BR /&gt;&lt;BR /&gt;note that if you use S990server at run level 3, the usual kill script would be K010server at run level 3.  Output from the kill script would be in th old log, as noted previously.  In that way, they start in the numerical sequence indicated by the S# and stop in the reverse order (last started becomes the first stopped)</description>
      <pubDate>Fri, 28 Aug 2009 12:20:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487797#M363336</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-08-28T12:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487798#M363337</link>
      <description>I still say this, that the sum of S number and K number should be 1000.</description>
      <pubDate>Fri, 28 Aug 2009 13:03:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487798#M363337</guid>
      <dc:creator>Tingli</dc:creator>
      <dc:date>2009-08-28T13:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487799#M363338</link>
      <description>&amp;gt;&amp;gt;I still say this, that the sum of S number and K number should be 1000.&lt;BR /&gt;&lt;BR /&gt;That is the common convention, but it is not a system requirement.&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Aug 2009 14:10:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487799#M363338</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-08-28T14:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487800#M363339</link>
      <description>"I still say this, that the sum of S number and K number should be 1000."&lt;BR /&gt;&lt;BR /&gt;As Patrick notes, that's the convention.  I don't see any difference between that statement and what I illustrated, either.</description>
      <pubDate>Fri, 28 Aug 2009 14:19:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487800#M363339</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-08-28T14:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487801#M363340</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;I still say this, that the sum of S number and K number should be 1000.&lt;BR /&gt;&lt;BR /&gt;If you examine the original whitepaper from 10.0 (referenced above and here) you will read:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/934/startup.pdf" target="_blank"&gt;http://docs.hp.com/en/934/startup.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;/*begin_quote*/&lt;BR /&gt;&lt;BR /&gt;Subsystems are killed in the opposite order they were started. This implies that kill scripts will generally not have the same numbers as their start script counterparts.  For example, if two subsystems must be started in a given order due to dependencies (e.g., S111sys1 followed by S222uses_sys1), the counterparts to these scripts must be numbered so that the subsystems are stopped in the opposite order in which they were started (e.g., K555uses_sys1 followed by K777sys1). Also, kill scripts for start scripts in directory /sbin/rcN.d reside in /sbin/rc(N-1).d.&lt;BR /&gt;&lt;BR /&gt;/*endof_quote*/&lt;BR /&gt;&lt;BR /&gt;Hence, the "delta-of-1000" makes it easy to conform to this, given the 3-digit sequence number notation. &lt;BR /&gt;&lt;BR /&gt;I would agree that for most folks with a small number of application scripts to start/stop, following this guideline (rule) may not make any difference.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 28 Aug 2009 14:36:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487801#M363340</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-08-28T14:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487802#M363341</link>
      <description>Maybe the word "should" is too strong.</description>
      <pubDate>Fri, 28 Aug 2009 15:05:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487802#M363341</guid>
      <dc:creator>Tingli</dc:creator>
      <dc:date>2009-08-28T15:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487803#M363342</link>
      <description>Okay,&lt;BR /&gt;Here is the present status:&lt;BR /&gt;&lt;BR /&gt;Changed the script to comply with "Script Output" section of rc man page. Now i am just echoing messages &amp;amp; not redirecting.&lt;BR /&gt;case $1 in&lt;BR /&gt;start)&lt;BR /&gt;        echo "Start Test Server `date`"&lt;BR /&gt;        ;;&lt;BR /&gt;stop)&lt;BR /&gt;        echo "Stop Test Server `date`"&lt;BR /&gt;        ;;&lt;BR /&gt;*)&lt;BR /&gt;        echo Invalid $1 &lt;BR /&gt;        ;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;Since adding up to 1000 is just a convention, I haven't changed that yet.&lt;BR /&gt;&lt;BR /&gt;Below is the output of /etc/rc.log&lt;BR /&gt;[snip]&lt;BR /&gt;Invalid start_msg&lt;BR /&gt;Output from "/sbin/rc3.d/S990server start":&lt;BR /&gt;----------------------------&lt;BR /&gt;Start Test Server Mon Aug 31 13:00:26 IST 2009&lt;BR /&gt;[/snip]&lt;BR /&gt;&lt;BR /&gt;The first line "Invalid start_msg" states i haven't implemented the start_msg call. Does it make any difference. The "start" call is getting executed which is what i need.&lt;BR /&gt;&lt;BR /&gt;I am not getting a single of K in /etc/rc.log.old leave alone my script "K990server"&lt;BR /&gt;&lt;BR /&gt;Any thoughts</description>
      <pubDate>Mon, 31 Aug 2009 06:36:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487803#M363342</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2009-08-31T06:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Start &amp; Kill scripts in rc*.d</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487804#M363343</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Did you checked the permission of your K script... &lt;BR /&gt;double check if you made any link.&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Mon, 31 Aug 2009 06:54:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/start-amp-kill-scripts-in-rc-d/m-p/4487804#M363343</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-08-31T06:54:04Z</dc:date>
    </item>
  </channel>
</rss>

