<?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: System Default Inactive Time Setting in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881332#M400526</link>
    <description>Those data are stored in /tcb/files/auth/system/default.&lt;BR /&gt;</description>
    <pubDate>Thu, 20 Jan 2005 14:33:53 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2005-01-20T14:33:53Z</dc:date>
    <item>
      <title>System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881331#M400525</link>
      <description>Hi&lt;BR /&gt;I'm trying to write a script that returns a list of users along with their Inactive Time, Password Expirty Time, Password Life time etc. I can do that using getprpw command and the respective -m options. But for cases where I get a -1, it actually means that the entry was not found in the database and which in turn I assume, means that the user takes the setting from system default.&lt;BR /&gt;My question now, is how can i get system default settings like Inactive period, password life etc through commandline. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Nell</description>
      <pubDate>Thu, 20 Jan 2005 14:20:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881331#M400525</guid>
      <dc:creator>Nellian Solaiappan</dc:creator>
      <dc:date>2005-01-20T14:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881332#M400526</link>
      <description>Those data are stored in /tcb/files/auth/system/default.&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Jan 2005 14:33:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881332#M400526</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-01-20T14:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881333#M400527</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Correct -1 is default.&lt;BR /&gt;&lt;BR /&gt;exptm = Password Expiration Time (default is 180 days)&lt;BR /&gt;lftm = Password Life time (default is 210 days)&lt;BR /&gt;expwarn = Password Expiration Warning Time (default is 21 days)&lt;BR /&gt;mintm = Time between password changes (default is 60 days)&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 20 Jan 2005 14:34:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881333#M400527</guid>
      <dc:creator>Robert-Jan Goossens_1</dc:creator>
      <dc:date>2005-01-20T14:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881334#M400528</link>
      <description>Hi&lt;BR /&gt;I did find the system default values, even before I started this thread,in the /tcb/files/auth/system/default file. But I dont have a direct answer to my question in that file since the entry that im concerned with is&lt;BR /&gt;:u_llogin#7776000 which is how the value 90 is represented. How can read this value from the file into meaningful number of days.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Nellian</description>
      <pubDate>Thu, 20 Jan 2005 14:40:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881334#M400528</guid>
      <dc:creator>Nellian Solaiappan</dc:creator>
      <dc:date>2005-01-20T14:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881335#M400529</link>
      <description>7776000 / (24X60X60) = 90 days&lt;BR /&gt;&lt;BR /&gt;nuber of seconds / seconds per day&lt;BR /&gt;&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 20 Jan 2005 14:49:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881335#M400529</guid>
      <dc:creator>Robert-Jan Goossens_1</dc:creator>
      <dc:date>2005-01-20T14:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881336#M400530</link>
      <description>The value you list is in seconds so simply take the value and divide it by the number of seconds per day (24 * 60 * 60) = 86400&lt;BR /&gt;&lt;BR /&gt;In your example:&lt;BR /&gt;7776000 / 86400 = 90&lt;BR /&gt;&lt;BR /&gt;Other time values are stored as the number of seconds since 1-1-1970 00:00:00 UCT (epoch seconds). To cenvert these:&lt;BR /&gt;perl -e 'print scalar localtime(xxxxxx)'&lt;BR /&gt;where xxxxxx is the epoch seconds value.&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Jan 2005 14:50:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881336#M400530</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-01-20T14:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881337#M400531</link>
      <description>Hi Nell,&lt;BR /&gt;&lt;BR /&gt;There is an example of a script, check below page.&lt;BR /&gt;&lt;BR /&gt;Trusted system - How to find user's passwords about to expire&lt;BR /&gt;Document id: USECKBAN00000934&lt;BR /&gt;&lt;BR /&gt;US&lt;BR /&gt;&lt;A href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000074740865" target="_blank"&gt;http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000074740865&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Europe&lt;BR /&gt;&lt;A href="http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000074740865" target="_blank"&gt;http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000074740865&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 20 Jan 2005 15:02:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881337#M400531</guid>
      <dc:creator>Robert-Jan Goossens_1</dc:creator>
      <dc:date>2005-01-20T15:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: System Default Inactive Time Setting</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881338#M400532</link>
      <description>Thank you Clay and Robert! you guys are wonderful. I did the conversion of secs in my script and it works fine.</description>
      <pubDate>Thu, 20 Jan 2005 15:37:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-default-inactive-time-setting/m-p/4881338#M400532</guid>
      <dc:creator>Nellian Solaiappan</dc:creator>
      <dc:date>2005-01-20T15:37:25Z</dc:date>
    </item>
  </channel>
</rss>

