This file is indexed.

/usr/share/doc/python-reconfigure-doc/html/ref/reconfigure.configs.html is in python-reconfigure-doc 0.1.74+git49a20890-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>reconfigure.configs &mdash; Reconfigure documentation</title>
    
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '1.0a1',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="top" title="Reconfigure documentation" href="../index.html" />
    <link rel="next" title="reconfigure.parsers" href="reconfigure.parsers.html" />
    <link rel="prev" title="Reconfig objects" href="../docs/architecture/config.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="reconfigure.parsers.html" title="reconfigure.parsers"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="../docs/architecture/config.html" title="Reconfig objects"
             accesskey="P">previous</a> |</li>
        <li><a href="../index.html">Reconfigure docs</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="reconfigure-configs">
<span id="id1"></span><h1>reconfigure.configs<a class="headerlink" href="#reconfigure-configs" title="Permalink to this headline"></a></h1>
<span class="target" id="module-reconfigure.configs"></span><p>Configs are ready-to-use objects that link together Parsers, Includers and Builders to provide direct conversion between config files and Data tree.</p>
<dl class="class">
<dt id="reconfigure.configs.Reconfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">Reconfig</tt><big>(</big><em>parser=None</em>, <em>includer=None</em>, <em>builder=None</em>, <em>path=None</em>, <em>content=None</em><big>)</big><a class="headerlink" href="#reconfigure.configs.Reconfig" title="Permalink to this definition"></a></dt>
<dd><p>Basic config class. Derivatives normally only need to override the constructor.</p>
<p>Config data is loaded either from <tt class="docutils literal"><span class="pre">path</span></tt> or from <tt class="docutils literal"><span class="pre">content</span></tt></p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
<li><strong>parser</strong> &#8211; overrides the Parser instance</li>
<li><strong>includer</strong> &#8211; overrides the Includer instance</li>
<li><strong>builder</strong> &#8211; overrides the Builder instance</li>
<li><strong>path</strong> &#8211; config file path. Not compatible with <tt class="docutils literal"><span class="pre">content</span></tt></li>
<li><strong>content</strong> &#8211; config file content. Not compatible with <tt class="docutils literal"><span class="pre">path</span></tt></li>
</ul>
</td>
</tr>
</tbody>
</table>
<dl class="method">
<dt id="reconfigure.configs.Reconfig.load">
<tt class="descname">load</tt><big>(</big><big>)</big><a class="headerlink" href="#reconfigure.configs.Reconfig.load" title="Permalink to this definition"></a></dt>
<dd><p>Loads the config data, parses and builds it. Sets <tt class="docutils literal"><span class="pre">tree</span></tt> attribute to point to Data tree.</p>
</dd></dl>

<dl class="method">
<dt id="reconfigure.configs.Reconfig.save">
<tt class="descname">save</tt><big>(</big><big>)</big><a class="headerlink" href="#reconfigure.configs.Reconfig.save" title="Permalink to this definition"></a></dt>
<dd><p>Unbuilds, stringifies and saves the config. If the config was loaded from string, returns <tt class="docutils literal"><span class="pre">{</span> <span class="pre">origin:</span> <span class="pre">data</span> <span class="pre">}</span></tt> dict</p>
</dd></dl>

</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.AjentiConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">AjentiConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.AjentiConfig" title="Permalink to this definition"></a></dt>
<dd></dd></dl>

<dl class="class">
<dt id="reconfigure.configs.BIND9Config">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">BIND9Config</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.BIND9Config" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">named.conf</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.CrontabConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">CrontabConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.CrontabConfig" title="Permalink to this definition"></a></dt>
<dd></dd></dl>

<dl class="class">
<dt id="reconfigure.configs.CTDBConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">CTDBConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.CTDBConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">CTDB</span> <span class="pre">main</span> <span class="pre">config</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.CTDBNodesConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">CTDBNodesConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.CTDBNodesConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">CTDB</span> <span class="pre">node</span> <span class="pre">list</span> <span class="pre">file</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.CTDBPublicAddressesConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">CTDBPublicAddressesConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.CTDBPublicAddressesConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">CTDB</span> <span class="pre">public</span> <span class="pre">address</span> <span class="pre">list</span> <span class="pre">file</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.DHCPDConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">DHCPDConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.DHCPDConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">DHCPD</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.ExportsConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">ExportsConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.ExportsConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/fstab</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.FSTabConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">FSTabConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.FSTabConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/fstab</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.GroupConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">GroupConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.GroupConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/group</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.HostsConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">HostsConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.HostsConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/hosts</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.IPTablesConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">IPTablesConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.IPTablesConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">iptables-save</span></tt> and <tt class="docutils literal"><span class="pre">iptables-restore</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.NetatalkConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">NetatalkConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.NetatalkConfig" title="Permalink to this definition"></a></dt>
<dd><p>Netatalk afp.conf</p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.NSDConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">NSDConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.NSDConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">NSD</span> <span class="pre">DNS</span> <span class="pre">server</span> <span class="pre">nsd.conf</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.PasswdConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">PasswdConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.PasswdConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/passwd</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.ResolvConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">ResolvConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.ResolvConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/resolv.conf</span></tt></p>
</dd></dl>

<dl class="class">
<dt id="reconfigure.configs.SambaConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">SambaConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.SambaConfig" title="Permalink to this definition"></a></dt>
<dd></dd></dl>

<dl class="class">
<dt id="reconfigure.configs.SquidConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">SquidConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.SquidConfig" title="Permalink to this definition"></a></dt>
<dd></dd></dl>

<dl class="class">
<dt id="reconfigure.configs.SupervisorConfig">
<em class="property">class </em><tt class="descclassname">reconfigure.configs.</tt><tt class="descname">SupervisorConfig</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#reconfigure.configs.SupervisorConfig" title="Permalink to this definition"></a></dt>
<dd><p><tt class="docutils literal"><span class="pre">/etc/supervisor/supervisord.conf</span></tt></p>
</dd></dl>

</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="../docs/architecture/config.html"
                        title="previous chapter">Reconfig objects</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="reconfigure.parsers.html"
                        title="next chapter">reconfigure.parsers</a></p>
  <h3>This Page</h3>
  <ul class="this-page-menu">
    <li><a href="../_sources/ref/reconfigure.configs.txt"
           rel="nofollow">Show Source</a></li>
  </ul>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="reconfigure.parsers.html" title="reconfigure.parsers"
             >next</a> |</li>
        <li class="right" >
          <a href="../docs/architecture/config.html" title="Reconfig objects"
             >previous</a> |</li>
        <li><a href="../index.html">Reconfigure docs</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2013, Eugeny Pankov.
      Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
    </div>
  </body>
</html>