<?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: RDIST tool notify option in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057485#M737109</link>
    <description>&lt;A href="http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40G_HTML/MAN/MAN1/0305____.HTM" target="_blank"&gt;http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40G_HTML/MAN/MAN1/0305____.HTM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;u need to change distfile</description>
    <pubDate>Tue, 21 Aug 2007 05:23:53 GMT</pubDate>
    <dc:creator>AwadheshPandey</dc:creator>
    <dc:date>2007-08-21T05:23:53Z</dc:date>
    <item>
      <title>RDIST tool notify option</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057484#M737108</link>
      <description>Dear All,&lt;BR /&gt;&lt;BR /&gt;I am using Rdist to replicate some directories from one AIX server (say ukblx157) to another AIX server (say ukapx063).&lt;BR /&gt;Rdist tool has a option called notify which sends mail after successfull completion of the replication activity &amp;amp; it also send mail in case of any error.&lt;BR /&gt;The problem with it is that the subject line of the alert mail generated is fixed (e.g. Files updated by rdist from ukblx157 to ukapx063)&lt;BR /&gt;I want to know is there any way/option to change this?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vishal</description>
      <pubDate>Tue, 21 Aug 2007 05:02:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057484#M737108</guid>
      <dc:creator>Vishal Ranjan</dc:creator>
      <dc:date>2007-08-21T05:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: RDIST tool notify option</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057485#M737109</link>
      <description>&lt;A href="http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40G_HTML/MAN/MAN1/0305____.HTM" target="_blank"&gt;http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40G_HTML/MAN/MAN1/0305____.HTM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;u need to change distfile</description>
      <pubDate>Tue, 21 Aug 2007 05:23:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057485#M737109</guid>
      <dc:creator>AwadheshPandey</dc:creator>
      <dc:date>2007-08-21T05:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: RDIST tool notify option</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057486#M737110</link>
      <description>I use rdist - but notify like this:&lt;BR /&gt;&lt;BR /&gt;Root cron:&lt;BR /&gt;&lt;BR /&gt;# Copy prdadm across to the DR site.&lt;BR /&gt;05 01 * * *     /app/admin/drp/update-binaries.sh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat /app/admin/drp/update-binaries.sh&lt;BR /&gt;#! /bin/sh&lt;BR /&gt;&lt;BR /&gt;# Keep the DRP copy of the prdadm up-to-date.&lt;BR /&gt;# Currently the files are in:&lt;BR /&gt;#&lt;BR /&gt;#       /home/prdadm/DR&lt;BR /&gt;#&lt;BR /&gt;# See the rdist(1M) distfile for a list of exclusions.&lt;BR /&gt;&lt;BR /&gt;DRPDIR=/app/admin/drp&lt;BR /&gt;DRPHOST=svr031&lt;BR /&gt;&lt;BR /&gt;HOST=`/usr/bin/uname -n`&lt;BR /&gt;PRD=`cmviewcl |grep prddbci |awk '{print $5}'`&lt;BR /&gt;if [ "$HOST" = "$PRD" ]&lt;BR /&gt;then&lt;BR /&gt;        mount | grep /home &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;        if [ $? -eq 0 ]&lt;BR /&gt;        then&lt;BR /&gt;                for vg in `ls -d /dev/vg6* |awk -F/ '{print $3}'`&lt;BR /&gt;                do&lt;BR /&gt;                        /usr/sbin/vgexport -p -s -v -m /home/prdadm/DR/$vg.map /dev/$vg&lt;BR /&gt;                done&lt;BR /&gt;                cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl /home/prdadm/DR/&lt;BR /&gt;                cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl.full /home/prdadm/DR/&lt;BR /&gt;                cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl.mountonly /home/prdadm/DR/&lt;BR /&gt;                ( su - prdadm -c "rdist -f $DRPDIR/distfile prdadm"; ) 2&amp;gt;&amp;amp;1 |\&lt;BR /&gt;                tee $DRPDIR/drp.log 2&amp;gt;&amp;amp;1 |\&lt;BR /&gt;                mailx -s "prdadm DRP rdist output" sysadm&lt;BR /&gt;        fi&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat /app/admin/drp/distfile&lt;BR /&gt;PRDDR  = ( svr031 )&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;# File systems to be copied over to the DR host.&lt;BR /&gt;# Don't use -R in install - so as not to remove files on destination host&lt;BR /&gt;PRDADM   = /home/prdadm&lt;BR /&gt;&lt;BR /&gt;prdadm: ( ${PRDADM} ) -&amp;gt; ( ${PRDDR} )&lt;BR /&gt;        install -w ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Aug 2007 08:44:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rdist-tool-notify-option/m-p/4057486#M737110</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-08-21T08:44:32Z</dc:date>
    </item>
  </channel>
</rss>

