Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > a918147e816a04e85f8654f72077e879 > files > 100

perl-Libconf-0.42.10-6.mga4.x86_64.rpm

<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>

<body style="background-color: white">



<ul id="index">
  <li><a href="#NAME">NAME</a></li>
  <li><a href="#DESCRIPTION">DESCRIPTION</a></li>
  <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
  <li><a href="#CONSTRUCTOR">CONSTRUCTOR</a></li>
  <li><a href="#GENERAL-METHODS">GENERAL METHODS</a></li>
  <li><a href="#SPECIFIC-METHODS">SPECIFIC METHODS</a></li>
</ul>

<h1 id="NAME">NAME</h1>

<p>Libconf::Templates::Group - Libconf low level template for group file styles config files</p>

<h1 id="DESCRIPTION">DESCRIPTION</h1>

<p>Libconf::Templates::Group is a template that handles files that contain informations like the ones in /etc/group, with lines like :</p>

<pre><code> group_name:passwd:GID:user_list</code></pre>

<h1 id="SYNOPSIS">SYNOPSIS</h1>

<pre><code> $template = new Libconf::Templates::Group({
                                            filename =&gt; &#39;group&#39;,
                                           });
 $template-&gt;read_conf();
 $template-&gt;edit_atom(-1, { key =&gt; &#39;daemon&#39;,
                            values =&gt; { passwd =&gt; &#39;xtest&#39;,
                                        GID =&gt; &#39;000456&#39;,
                                        user_list =&gt; &#39;root2,bin2,daemon2&#39;,
                                      },
                          });
 ...
 (see L&lt;Libconf::Templates&gt; for transformation methods on $template)
 ...
 $template-&gt;write_conf(&#39;group_output_2&#39;);</code></pre>

<h1 id="CONSTRUCTOR">CONSTRUCTOR</h1>

<dl>

<dt id="new-options"><b>new($options)</b></dt>
<dd>

<p>creates the template</p>

<pre><code>  $template = new Libconf::Templates::Group({
                                              filename =&gt; &#39;some_file&#39;,
                                            })</code></pre>

<p><b>arguments</b></p>

<p>$options [<b>type</b> : HASH_REF] specifies the options to create the new template instance.</p>

<p><b>options</b></p>

<p>filename [<b>type</b> : STRING, <b>default</b> : &#39;&#39;] : the filename of the config file you want to work on. Can be read and written lately by using set_filename and get_filename.</p>

</dd>
</dl>

<h1 id="GENERAL-METHODS">GENERAL METHODS</h1>

<p>See <a>Libconf::Templates</a> for the general list of methods you can call on this template.</p>

<h1 id="SPECIFIC-METHODS">SPECIFIC METHODS</h1>

<p>There is no specific methods</p>


</body>

</html>