<?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 Saving Defined ACL's in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965494#M618682</link>
    <description>Is there a way to collect all the ACL's that are  defined to the system (via getacl) so we could have the ability to restore (via a setacl).  Want to play it safe for Disaster Recovery.  This is for HP/UX 11.0 (JFS 3.3), 11.11 and 11.23&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
    <pubDate>Wed, 08 Mar 2006 07:57:31 GMT</pubDate>
    <dc:creator>Richard Ross</dc:creator>
    <dc:date>2006-03-08T07:57:31Z</dc:date>
    <item>
      <title>Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965494#M618682</link>
      <description>Is there a way to collect all the ACL's that are  defined to the system (via getacl) so we could have the ability to restore (via a setacl).  Want to play it safe for Disaster Recovery.  This is for HP/UX 11.0 (JFS 3.3), 11.11 and 11.23&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 08 Mar 2006 07:57:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965494#M618682</guid>
      <dc:creator>Richard Ross</dc:creator>
      <dc:date>2006-03-08T07:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965495#M618683</link>
      <description>Richard,&lt;BR /&gt;man fbackup &lt;BR /&gt;gives you:&lt;BR /&gt;"&lt;BR /&gt;      -A             Do not back up optional entries of access control lists&lt;BR /&gt;                     (ACLs) for files.  Normally, all mode information is&lt;BR /&gt;                     backed up including the optional ACL entries.  With the&lt;BR /&gt;                     -A option, the summary mode information (as returned by&lt;BR /&gt;                     stat()) is backed up.  Use this option when backing up&lt;BR /&gt;                     files from a system that contains ACLs to be recovered&lt;BR /&gt;                     on a system that does not understand ACLs (see acl(5)).&lt;BR /&gt;"&lt;BR /&gt;So fbackup would have a copy of your ACL.</description>
      <pubDate>Wed, 08 Mar 2006 08:06:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965495#M618683</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-03-08T08:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965496#M618684</link>
      <description>Peter .. Thanks, but I was thinking more standalone .. we do not use fbackup.</description>
      <pubDate>Wed, 08 Mar 2006 08:15:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965496#M618684</guid>
      <dc:creator>Richard Ross</dc:creator>
      <dc:date>2006-03-08T08:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965497#M618685</link>
      <description>Richard,&lt;BR /&gt;as a last resort:&lt;BR /&gt;cd /&lt;BR /&gt;find / -exec getacl {} \; &amp;gt; /tmp/acls.lis&lt;BR /&gt;&lt;BR /&gt;This will search all files on the machine and execute a getacl, dumping the output into a file.&lt;BR /&gt;You could then use that file to extract the information required for setacl.&lt;BR /&gt;&lt;BR /&gt;Rather messy and I am sure somebody else will have a better idea.&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Mar 2006 08:24:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965497#M618685</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-03-08T08:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965498#M618686</link>
      <description>Well .. After looking into more detail .. looks like the following will work:&lt;BR /&gt;&lt;BR /&gt;find / -aclv opt | xargs getacl&lt;BR /&gt;&lt;BR /&gt;My problem is I need to perform this on Linux and AIX and those platforms don't support the -aclv param on find.  But one down and 2 to go&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 08 Mar 2006 09:08:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965498#M618686</guid>
      <dc:creator>Richard Ross</dc:creator>
      <dc:date>2006-03-08T09:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965499#M618687</link>
      <description>Richard,&lt;BR /&gt;happy the find command set you on the way.&lt;BR /&gt;&lt;BR /&gt;Probably best to close this thread and raise new ones in the relevant fora.&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Mar 2006 09:57:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965499#M618687</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-03-08T09:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Defined ACL's</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965500#M618688</link>
      <description>find / -aclv opt | xargs getacl&lt;BR /&gt;&lt;BR /&gt;Will do the job .. Thanks for the help</description>
      <pubDate>Wed, 08 Mar 2006 10:30:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/saving-defined-acl-s/m-p/4965500#M618688</guid>
      <dc:creator>Richard Ross</dc:creator>
      <dc:date>2006-03-08T10:30:00Z</dc:date>
    </item>
  </channel>
</rss>

