<?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: how to keep scripts current in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944783#M289367</link>
    <description>May I suggest rdist? Just setup the /etc/distfile, a cronjob and off you go.</description>
    <pubDate>Wed, 14 Feb 2007 15:42:25 GMT</pubDate>
    <dc:creator>hpuxrox</dc:creator>
    <dc:date>2007-02-14T15:42:25Z</dc:date>
    <item>
      <title>how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944780#M289364</link>
      <description>We have 5 servers that we run the same scripts on.  We currently have about 10 such scripts.  What is the best practice for keeping all these scripts in sync on all 5 servers?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 14 Feb 2007 15:18:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944780#M289364</guid>
      <dc:creator>Charles Li_1</dc:creator>
      <dc:date>2007-02-14T15:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944781#M289365</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Simplest, declare a single server to be the gold version of all scripts.&lt;BR /&gt;&lt;BR /&gt;All work occurs on that server.&lt;BR /&gt;&lt;BR /&gt;Use scp or rsync to keep the script library current on all other nodes via cron&lt;BR /&gt;&lt;BR /&gt;If you really have a lot of scripts you can go to a version management system. Something that elaborate is not something I ever needed to do.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 14 Feb 2007 15:23:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944781#M289365</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-02-14T15:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944782#M289366</link>
      <description>1) Consider having one copy of the scripts and NFS mount a /utils (or something directory).&lt;BR /&gt;&lt;BR /&gt;2) Create a makefile that uses make to push the scripts to the listed nodes. Make is a good choice in that if any of your platforms change, you can set up dependencies to adapt to a particular environment.&lt;BR /&gt;&lt;BR /&gt;3) Use rdist under cron to push the scripts periodically.&lt;BR /&gt;&lt;BR /&gt;If your network is robust, 1) has a lot of merit.</description>
      <pubDate>Wed, 14 Feb 2007 15:35:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944782#M289366</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-02-14T15:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944783#M289367</link>
      <description>May I suggest rdist? Just setup the /etc/distfile, a cronjob and off you go.</description>
      <pubDate>Wed, 14 Feb 2007 15:42:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944783#M289367</guid>
      <dc:creator>hpuxrox</dc:creator>
      <dc:date>2007-02-14T15:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944784#M289368</link>
      <description>We have both RH linux and HP-UX.  I did not find rsync on HP-UX.  We have 11i.  Is rsync a standard package on HPUX?</description>
      <pubDate>Wed, 14 Feb 2007 16:00:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944784#M289368</guid>
      <dc:creator>Charles Li_1</dc:creator>
      <dc:date>2007-02-14T16:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944785#M289369</link>
      <description>Both rsync and ssh are currently optional on HP-UX. Download both from software.hp.com:&lt;BR /&gt; &lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111&lt;/A&gt;&lt;BR /&gt; &lt;BR /&gt;For good security, I would use ssh with rsync so the data is encrypted as it is distributed:&lt;BR /&gt; &lt;BR /&gt;rsync -vzat --rsh=ssh mysystem:archive1/ archive1</description>
      <pubDate>Wed, 14 Feb 2007 16:07:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944785#M289369</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2007-02-14T16:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep scripts current</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944786#M289370</link>
      <description>Another possibility is using cfengine. &lt;BR /&gt;It's bundled with UX 11.23 starting&lt;BR /&gt;with the December '05 OE update.&lt;BR /&gt;&lt;BR /&gt;cfengine is logically like using rdist/rsync&lt;BR /&gt;and would additionally allow you to &lt;BR /&gt;perform other synchronization actions in &lt;BR /&gt;a controlled fashion. If you just&lt;BR /&gt;need the 5 scripts cfengine is likely overkill. &lt;BR /&gt;If you want to synchronize a larger set&lt;BR /&gt;of files, directories, check/manage permissions&lt;BR /&gt;on files, perform controlled edits to files (e.g.&lt;BR /&gt;ensure the same cron job is defined across&lt;BR /&gt;N systems), check for specific processes, perform&lt;BR /&gt;tidy operations, etc. etc., cfengine would&lt;BR /&gt;be worth looking at. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Feb 2007 09:29:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-keep-scripts-current/m-p/3944786#M289370</guid>
      <dc:creator>PeterWolfe</dc:creator>
      <dc:date>2007-02-15T09:29:51Z</dc:date>
    </item>
  </channel>
</rss>

