<?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 Run Control Script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990632#M781222</link>
    <description>I want to run the following script while system Booting &amp;amp; need to Halt at runlevel 2..&lt;BR /&gt;&lt;BR /&gt;THE SCRIPT /data/BACKUP&lt;BR /&gt;&lt;BR /&gt;I WANT TO START IN RUNLEVEL 3 &amp;amp; KILL AT LEVEL 2.&lt;BR /&gt;PlS PROVIDE ME THE SCRIPT FILE THAT WILL DO THIS ...&lt;BR /&gt;&lt;BR /&gt;The script that needs to pasted to init.d directory....</description>
    <pubDate>Thu, 13 Jul 2006 03:13:30 GMT</pubDate>
    <dc:creator>susee_sundar</dc:creator>
    <dc:date>2006-07-13T03:13:30Z</dc:date>
    <item>
      <title>Run Control Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990632#M781222</link>
      <description>I want to run the following script while system Booting &amp;amp; need to Halt at runlevel 2..&lt;BR /&gt;&lt;BR /&gt;THE SCRIPT /data/BACKUP&lt;BR /&gt;&lt;BR /&gt;I WANT TO START IN RUNLEVEL 3 &amp;amp; KILL AT LEVEL 2.&lt;BR /&gt;PlS PROVIDE ME THE SCRIPT FILE THAT WILL DO THIS ...&lt;BR /&gt;&lt;BR /&gt;The script that needs to pasted to init.d directory....</description>
      <pubDate>Thu, 13 Jul 2006 03:13:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990632#M781222</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-07-13T03:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Run Control Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990633#M781223</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/BACKUP&lt;BR /&gt;&lt;BR /&gt;It must be a script based on /sbin/init.d/template that accepts start and stop commands. If not, you need a new script.&lt;BR /&gt;&lt;BR /&gt;Lets say it complies&lt;BR /&gt;&lt;BR /&gt;cd /sbin/rc3.d&lt;BR /&gt;ln -s /sbin/init.d/BACKUP S900backup&lt;BR /&gt;&lt;BR /&gt;cd /sbin/rc2.d&lt;BR /&gt;ln -s /sbin/init.d/BACKUP K100backup&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If the script itself is right everything else will work. &lt;BR /&gt;&lt;BR /&gt;If this backup is big it will significantly slow down your system start and stop process.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2006 03:41:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990633#M781223</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-07-13T03:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Run Control Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990634#M781224</link>
      <description>Thats the Problem...I dont know how to make a template script..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Can anybody able to Provide me the same for the script Backup</description>
      <pubDate>Thu, 13 Jul 2006 04:30:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990634#M781224</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-07-13T04:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Run Control Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990635#M781225</link>
      <description>The /sbin/init.d/template script already exists.  It is an example of how a start/stop script should be.  Copy it and edit it to suit your needs.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 13 Jul 2006 04:53:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990635#M781225</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-07-13T04:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Run Control Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990636#M781226</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You can obtain a complete understanding of the startup requirements by examining the manpages for 'rc(1m)' and/or the document below:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-60127/rc.1M.html" target="_blank"&gt;http://docs.hp.com/en/B2355-60127/rc.1M.html&lt;/A&gt;&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;As already noted, you should model your script after '/sbin/init.d/template'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 13 Jul 2006 05:33:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990636#M781226</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-07-13T05:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Run Control Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990637#M781227</link>
      <description>Thanks to all...</description>
      <pubDate>Fri, 14 Jul 2006 00:48:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-control-script/m-p/4990637#M781227</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-07-14T00:48:38Z</dc:date>
    </item>
  </channel>
</rss>

