This file is indexed.

/usr/share/doc/python-hpilo-doc/html/media.html is in python-hpilo-doc 3.9-1.

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
<!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>Virtual media &#8212; python-hpilo 3.9 documentation</title>
    
    <link rel="stylesheet" href="_static/cloud.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Noticia+Text|Open+Sans|Droid+Sans+Mono" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '3.9',
        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>
    <script type="text/javascript" src="_static/cloud.js"></script>
    <link rel="index" title="Index" href="genindex.html" />
    <link rel="search" title="Search" href="search.html" />
    <link rel="top" title="python-hpilo 3.9 documentation" href="index.html" />
    <link rel="next" title="Keyboard and mouse settings" href="input.html" />
    <link rel="prev" title="Boot settings and rebooting" href="boot.html" /> 
        <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body role="document">
    <div class="relbar-top">
        
    <div class="related" role="navigation" aria-label="related navigation">
      <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> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="input.html" title="Keyboard and mouse settings"
             accesskey="N">next</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="boot.html" title="Boot settings and rebooting"
             accesskey="P">previous</a> &nbsp; &nbsp;</li>
    <li><a href="index.html">python-hpilo 3.9 documentation</a> &#187;</li>
 
      </ul>
    </div>
    </div>
  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="virtual-media">
<h1>Virtual media<a class="headerlink" href="#virtual-media" title="Permalink to this headline"></a></h1>
<p>The iLO can make an iso file located on another machine available to the server
as virtual floppy or cdrom device. This can be used to e.g. install an
operating system remotely.</p>
<dl class="class">
<dt>
<em class="property">class </em><code class="descclassname">hpilo.</code><code class="descname">Ilo</code></dt>
<dd><dl class="method">
<dt id="hpilo.Ilo.get_vm_status">
<code class="descname">get_vm_status</code><span class="sig-paren">(</span><em>device='CDROM'</em><span class="sig-paren">)</span><a class="headerlink" href="#hpilo.Ilo.get_vm_status" title="Permalink to this definition"></a></dt>
<dd><p>Get the status of virtual media devices. Valid devices are FLOPPY and CDROM</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">ilo</span><span class="o">.</span><span class="n">get_vm_status</span><span class="p">()</span>
<span class="go">{&#39;boot_option&#39;: &#39;NO_BOOT&#39;,</span>
<span class="go"> &#39;device&#39;: &#39;CDROM&#39;,</span>
<span class="go"> &#39;image_inserted&#39;: &#39;NO&#39;,</span>
<span class="go"> &#39;image_url&#39;: &#39;&#39;,</span>
<span class="go"> &#39;vm_applet&#39;: &#39;DISCONNECTED&#39;,</span>
<span class="go"> &#39;write_protect&#39;: &#39;NO&#39;}</span>
</pre></div>
</div>
</dd></dl>

<dl class="method">
<dt id="hpilo.Ilo.set_vf_status">
<code class="descname">set_vf_status</code><span class="sig-paren">(</span><em>boot_option='boot_once'</em>, <em>write_protect=True</em><span class="sig-paren">)</span><a class="headerlink" href="#hpilo.Ilo.set_vf_status" title="Permalink to this definition"></a></dt>
<dd><p>Set the parameters of the RILOE virtual floppy specified virtual
media. Valid boot options are boot_once, boot_always, no_boot, connect
and disconnect.</p>
</dd></dl>

<dl class="method">
<dt id="hpilo.Ilo.set_vm_status">
<code class="descname">set_vm_status</code><span class="sig-paren">(</span><em>device='cdrom'</em>, <em>boot_option='boot_once'</em>, <em>write_protect=True</em><span class="sig-paren">)</span><a class="headerlink" href="#hpilo.Ilo.set_vm_status" title="Permalink to this definition"></a></dt>
<dd><p>Set the parameters of the specified virtual media. Valid boot
options are boot_once, boot_always, no_boot, connect and disconnect.
Valid devices are floppy and cdrom</p>
</dd></dl>

<dl class="method">
<dt id="hpilo.Ilo.insert_virtual_media">
<code class="descname">insert_virtual_media</code><span class="sig-paren">(</span><em>device</em>, <em>image_url</em><span class="sig-paren">)</span><a class="headerlink" href="#hpilo.Ilo.insert_virtual_media" title="Permalink to this definition"></a></dt>
<dd><p>Insert a virtual floppy or CDROM. Note that you will also need to
use <a class="reference internal" href="#hpilo.Ilo.set_vm_status" title="hpilo.Ilo.set_vm_status"><code class="xref py py-func docutils literal"><span class="pre">set_vm_status()</span></code></a> to connect the media</p>
</dd></dl>

<dl class="method">
<dt id="hpilo.Ilo.eject_virtual_floppy">
<code class="descname">eject_virtual_floppy</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#hpilo.Ilo.eject_virtual_floppy" title="Permalink to this definition"></a></dt>
<dd><p>Eject the virtual floppy</p>
</dd></dl>

<dl class="method">
<dt id="hpilo.Ilo.eject_virtual_media">
<code class="descname">eject_virtual_media</code><span class="sig-paren">(</span><em>device='cdrom'</em><span class="sig-paren">)</span><a class="headerlink" href="#hpilo.Ilo.eject_virtual_media" title="Permalink to this definition"></a></dt>
<dd><p>Eject the virtual media attached to the specified device</p>
</dd></dl>

</dd></dl>

</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
        <p class="logo"><a href="index.html" title="index">
          <img class="logo" src="_static/python-hpilo.png" alt="Logo"/>
        </a></p>
  <div class="sphinxprev">
    <h4>Previous page</h4>
    <p class="topless"><a href="boot.html"
                          title="Previous page">&larr; Boot settings and rebooting</a></p>
  </div>
  <div class="sphinxnext">
    <h4>Next page</h4>
    <p class="topless"><a href="input.html"
                          title="Next page">&rarr; Keyboard and mouse settings</a></p>
  </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <div><input type="text" name="q" /></div>
      <div><input type="submit" value="Go" /></div>
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
    
    
        <div class="sidebar-toggle-group no-js">
            
            <button class="sidebar-toggle" id="sidebar-hide" title="Hide the sidebar menu">
                 «
                <span class="show-for-small">hide menu</span>
                
            </button>
            <button class="sidebar-toggle" id="sidebar-show" title="Show the sidebar menu">
                
                <span class="show-for-small">menu</span>
                <span class="hide-for-small">sidebar</span>
                 »
            </button>
        </div>
    
      <div class="clearer"></div>
    </div>
    <div class="relbar-bottom">
        
    <div class="related" role="navigation" aria-label="related navigation">
      <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> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="input.html" title="Keyboard and mouse settings"
             >next</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="boot.html" title="Boot settings and rebooting"
             >previous</a> &nbsp; &nbsp;</li>
    <li><a href="index.html">python-hpilo 3.9 documentation</a> &#187;</li>
 
      </ul>
    </div>
    </div>

    <div class="footer" role="contentinfo">
        &#169; Copyright 2011-2016, Dennis Kaarsemaker.
    </div>
    <!-- cloud_sptheme 1.4 -->
  </body>
</html>