Skip to content

Commit 5ca5c9e

Browse files
author
github-actions
committed
Docs build 2025-12-21
1 parent 7326a97 commit 5ca5c9e

File tree

8 files changed

+84
-74
lines changed

8 files changed

+84
-74
lines changed

en/latest/arguments.html

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,11 @@ <h2>Shell control &amp; features<a class="headerlink" href="#shell-control-featu
298298
<td><p><code class="docutils literal notranslate"><span class="pre">Union[str,</span> <span class="pre">Iterable]</span></code></p></td>
299299
<td></td>
300300
</tr>
301+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_temp_dir</span></code></p></td>
302+
<td><p>Temporary directory on the remote host for file operations.</p></td>
303+
<td><p><code class="docutils literal notranslate"><span class="pre">str</span></code></p></td>
304+
<td></td>
305+
</tr>
301306
</tbody>
302307
</table>
303308
<p><strong>Examples:</strong></p>
@@ -320,29 +325,29 @@ <h2>Operation meta &amp; callbacks<a class="headerlink" href="#operation-meta-ca
320325
<col style="width: 15.0%" />
321326
</colgroup>
322327
<thead>
323-
<tr class="row-odd"><th class="head"><p>Key</p></th>
328+
<tr class="row-even"><th class="head"><p>Key</p></th>
324329
<th class="head"><p>Description</p></th>
325330
<th class="head"><p>Type</p></th>
326331
<th class="head"><p>Default</p></th>
327332
</tr>
328333
</thead>
329334
<tbody>
330-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">name</span></code></p></td>
335+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">name</span></code></p></td>
331336
<td><p>Name of the operation.</p></td>
332337
<td><p><code class="docutils literal notranslate"><span class="pre">str</span></code></p></td>
333338
<td></td>
334339
</tr>
335-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_ignore_errors</span></code></p></td>
340+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_ignore_errors</span></code></p></td>
336341
<td><p>Ignore errors when executing the operation.</p></td>
337342
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
338343
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
339344
</tr>
340-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_continue_on_error</span></code></p></td>
345+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_continue_on_error</span></code></p></td>
341346
<td><p>Continue executing operation commands after error. Only applies when <code class="docutils literal notranslate"><span class="pre">_ignore_errors</span></code> is true.</p></td>
342347
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
343348
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
344349
</tr>
345-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_if</span></code></p></td>
350+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_if</span></code></p></td>
346351
<td><p>Only run this operation if these functions return True</p></td>
347352
<td><p><code class="docutils literal notranslate"><span class="pre">Union[List,</span> <span class="pre">Callable,</span> <span class="pre">NoneType]</span></code></p></td>
348353
<td><p><code class="docutils literal notranslate"><span class="pre">[]</span></code></p></td>
@@ -360,24 +365,24 @@ <h2>Execution strategy<a class="headerlink" href="#execution-strategy" title="Li
360365
<col style="width: 15.0%" />
361366
</colgroup>
362367
<thead>
363-
<tr class="row-even"><th class="head"><p>Key</p></th>
368+
<tr class="row-odd"><th class="head"><p>Key</p></th>
364369
<th class="head"><p>Description</p></th>
365370
<th class="head"><p>Type</p></th>
366371
<th class="head"><p>Default</p></th>
367372
</tr>
368373
</thead>
369374
<tbody>
370-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_parallel</span></code></p></td>
375+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_parallel</span></code></p></td>
371376
<td><p>Run this operation in batches of hosts.</p></td>
372377
<td><p><code class="docutils literal notranslate"><span class="pre">int</span></code></p></td>
373378
<td><p><code class="docutils literal notranslate"><span class="pre">0</span></code></p></td>
374379
</tr>
375-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_run_once</span></code></p></td>
380+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_run_once</span></code></p></td>
376381
<td><p>Only execute this operation once, on the first host to see it.</p></td>
377382
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
378383
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
379384
</tr>
380-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_serial</span></code></p></td>
385+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_serial</span></code></p></td>
381386
<td><p>Run this operation host by host, rather than in parallel.</p></td>
382387
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
383388
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
@@ -398,24 +403,24 @@ <h2>Retry behavior<a class="headerlink" href="#retry-behavior" title="Link to th
398403
<col style="width: 15.0%" />
399404
</colgroup>
400405
<thead>
401-
<tr class="row-even"><th class="head"><p>Key</p></th>
406+
<tr class="row-odd"><th class="head"><p>Key</p></th>
402407
<th class="head"><p>Description</p></th>
403408
<th class="head"><p>Type</p></th>
404409
<th class="head"><p>Default</p></th>
405410
</tr>
406411
</thead>
407412
<tbody>
408-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_retries</span></code></p></td>
413+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_retries</span></code></p></td>
409414
<td><p>Number of times to retry failed operations.</p></td>
410415
<td><p><code class="docutils literal notranslate"><span class="pre">int</span></code></p></td>
411416
<td><p><code class="docutils literal notranslate"><span class="pre">0</span></code></p></td>
412417
</tr>
413-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_delay</span></code></p></td>
418+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_delay</span></code></p></td>
414419
<td><p>Delay in seconds between retry attempts.</p></td>
415420
<td><p><code class="docutils literal notranslate"><span class="pre">Union[int,</span> <span class="pre">float]</span></code></p></td>
416421
<td><p><code class="docutils literal notranslate"><span class="pre">5</span></code></p></td>
417422
</tr>
418-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_until</span></code></p></td>
423+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_until</span></code></p></td>
419424
<td><p>Callable taking output data that returns True to continue retrying.</p></td>
420425
<td><p><code class="docutils literal notranslate"><span class="pre">Optional[Callable,</span> <span class="pre">NoneType]</span></code></p></td>
421426
<td></td>

en/latest/facts.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -219,33 +219,33 @@ <h1>Facts Index<a class="headerlink" href="#facts-index" title="Link to this hea
219219
<select class="form-select" id="tag-dropdown">
220220
<option value="All">All</option>
221221

222-
<option value="Database">Database</option>
223-
224-
<option value="Javascript">Javascript</option>
222+
<option value="Python">Python</option>
225223

226224
<option value="Configuration Management">Configuration Management</option>
227225

228-
<option value="Ruby">Ruby</option>
229-
230-
<option value="Service Management">Service Management</option>
231-
232226
<option value="System">System</option>
233227

234228
<option value="Containers">Containers</option>
235229

236-
<option value="Rust">Rust</option>
230+
<option value="Storage">Storage</option>
237231

238232
<option value="Boot">Boot</option>
239233

240-
<option value="Python">Python</option>
234+
<option value="Rust">Rust</option>
241235

242-
<option value="Version Control System">Version Control System</option>
236+
<option value="Ruby">Ruby</option>
243237

244-
<option value="Package Manager">Package Manager</option>
238+
<option value="Database">Database</option>
245239

246240
<option value="Security">Security</option>
247241

248-
<option value="Storage">Storage</option>
242+
<option value="Version Control System">Version Control System</option>
243+
244+
<option value="Service Management">Service Management</option>
245+
246+
<option value="Package Manager">Package Manager</option>
247+
248+
<option value="Javascript">Javascript</option>
249249

250250
</select>
251251
</div>

en/latest/operations.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -193,33 +193,33 @@ <h1>Operations Index<a class="headerlink" href="#operations-index" title="Link t
193193
<select class="form-select" id="tag-dropdown">
194194
<option value="All">All</option>
195195

196-
<option value="Database">Database</option>
197-
198-
<option value="Javascript">Javascript</option>
196+
<option value="Python">Python</option>
199197

200198
<option value="Configuration Management">Configuration Management</option>
201199

202-
<option value="Ruby">Ruby</option>
203-
204-
<option value="Service Management">Service Management</option>
205-
206200
<option value="System">System</option>
207201

208202
<option value="Containers">Containers</option>
209203

210-
<option value="Rust">Rust</option>
204+
<option value="Storage">Storage</option>
211205

212206
<option value="Boot">Boot</option>
213207

214-
<option value="Python">Python</option>
208+
<option value="Rust">Rust</option>
215209

216-
<option value="Version Control System">Version Control System</option>
210+
<option value="Ruby">Ruby</option>
217211

218-
<option value="Package Manager">Package Manager</option>
212+
<option value="Database">Database</option>
219213

220214
<option value="Security">Security</option>
221215

222-
<option value="Storage">Storage</option>
216+
<option value="Version Control System">Version Control System</option>
217+
218+
<option value="Service Management">Service Management</option>
219+
220+
<option value="Package Manager">Package Manager</option>
221+
222+
<option value="Javascript">Javascript</option>
223223

224224
</select>
225225
</div>

en/latest/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

en/next/arguments.html

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,11 @@ <h2>Shell control &amp; features<a class="headerlink" href="#shell-control-featu
298298
<td><p><code class="docutils literal notranslate"><span class="pre">Union[str,</span> <span class="pre">Iterable]</span></code></p></td>
299299
<td></td>
300300
</tr>
301+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_temp_dir</span></code></p></td>
302+
<td><p>Temporary directory on the remote host for file operations.</p></td>
303+
<td><p><code class="docutils literal notranslate"><span class="pre">str</span></code></p></td>
304+
<td></td>
305+
</tr>
301306
</tbody>
302307
</table>
303308
<p><strong>Examples:</strong></p>
@@ -320,29 +325,29 @@ <h2>Operation meta &amp; callbacks<a class="headerlink" href="#operation-meta-ca
320325
<col style="width: 15.0%" />
321326
</colgroup>
322327
<thead>
323-
<tr class="row-odd"><th class="head"><p>Key</p></th>
328+
<tr class="row-even"><th class="head"><p>Key</p></th>
324329
<th class="head"><p>Description</p></th>
325330
<th class="head"><p>Type</p></th>
326331
<th class="head"><p>Default</p></th>
327332
</tr>
328333
</thead>
329334
<tbody>
330-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">name</span></code></p></td>
335+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">name</span></code></p></td>
331336
<td><p>Name of the operation.</p></td>
332337
<td><p><code class="docutils literal notranslate"><span class="pre">str</span></code></p></td>
333338
<td></td>
334339
</tr>
335-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_ignore_errors</span></code></p></td>
340+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_ignore_errors</span></code></p></td>
336341
<td><p>Ignore errors when executing the operation.</p></td>
337342
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
338343
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
339344
</tr>
340-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_continue_on_error</span></code></p></td>
345+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_continue_on_error</span></code></p></td>
341346
<td><p>Continue executing operation commands after error. Only applies when <code class="docutils literal notranslate"><span class="pre">_ignore_errors</span></code> is true.</p></td>
342347
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
343348
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
344349
</tr>
345-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_if</span></code></p></td>
350+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_if</span></code></p></td>
346351
<td><p>Only run this operation if these functions return True</p></td>
347352
<td><p><code class="docutils literal notranslate"><span class="pre">Union[List,</span> <span class="pre">Callable,</span> <span class="pre">NoneType]</span></code></p></td>
348353
<td><p><code class="docutils literal notranslate"><span class="pre">[]</span></code></p></td>
@@ -360,24 +365,24 @@ <h2>Execution strategy<a class="headerlink" href="#execution-strategy" title="Li
360365
<col style="width: 15.0%" />
361366
</colgroup>
362367
<thead>
363-
<tr class="row-even"><th class="head"><p>Key</p></th>
368+
<tr class="row-odd"><th class="head"><p>Key</p></th>
364369
<th class="head"><p>Description</p></th>
365370
<th class="head"><p>Type</p></th>
366371
<th class="head"><p>Default</p></th>
367372
</tr>
368373
</thead>
369374
<tbody>
370-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_parallel</span></code></p></td>
375+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_parallel</span></code></p></td>
371376
<td><p>Run this operation in batches of hosts.</p></td>
372377
<td><p><code class="docutils literal notranslate"><span class="pre">int</span></code></p></td>
373378
<td><p><code class="docutils literal notranslate"><span class="pre">0</span></code></p></td>
374379
</tr>
375-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_run_once</span></code></p></td>
380+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_run_once</span></code></p></td>
376381
<td><p>Only execute this operation once, on the first host to see it.</p></td>
377382
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
378383
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
379384
</tr>
380-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_serial</span></code></p></td>
385+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_serial</span></code></p></td>
381386
<td><p>Run this operation host by host, rather than in parallel.</p></td>
382387
<td><p><code class="docutils literal notranslate"><span class="pre">bool</span></code></p></td>
383388
<td><p><code class="docutils literal notranslate"><span class="pre">False</span></code></p></td>
@@ -398,24 +403,24 @@ <h2>Retry behavior<a class="headerlink" href="#retry-behavior" title="Link to th
398403
<col style="width: 15.0%" />
399404
</colgroup>
400405
<thead>
401-
<tr class="row-even"><th class="head"><p>Key</p></th>
406+
<tr class="row-odd"><th class="head"><p>Key</p></th>
402407
<th class="head"><p>Description</p></th>
403408
<th class="head"><p>Type</p></th>
404409
<th class="head"><p>Default</p></th>
405410
</tr>
406411
</thead>
407412
<tbody>
408-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_retries</span></code></p></td>
413+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_retries</span></code></p></td>
409414
<td><p>Number of times to retry failed operations.</p></td>
410415
<td><p><code class="docutils literal notranslate"><span class="pre">int</span></code></p></td>
411416
<td><p><code class="docutils literal notranslate"><span class="pre">0</span></code></p></td>
412417
</tr>
413-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_delay</span></code></p></td>
418+
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_delay</span></code></p></td>
414419
<td><p>Delay in seconds between retry attempts.</p></td>
415420
<td><p><code class="docutils literal notranslate"><span class="pre">Union[int,</span> <span class="pre">float]</span></code></p></td>
416421
<td><p><code class="docutils literal notranslate"><span class="pre">5</span></code></p></td>
417422
</tr>
418-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_until</span></code></p></td>
423+
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">_retry_until</span></code></p></td>
419424
<td><p>Callable taking output data that returns True to continue retrying.</p></td>
420425
<td><p><code class="docutils literal notranslate"><span class="pre">Optional[Callable,</span> <span class="pre">NoneType]</span></code></p></td>
421426
<td></td>

en/next/facts.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -219,33 +219,33 @@ <h1>Facts Index<a class="headerlink" href="#facts-index" title="Link to this hea
219219
<select class="form-select" id="tag-dropdown">
220220
<option value="All">All</option>
221221

222-
<option value="Containers">Containers</option>
222+
<option value="Service Management">Service Management</option>
223223

224-
<option value="Storage">Storage</option>
224+
<option value="Javascript">Javascript</option>
225225

226-
<option value="Version Control System">Version Control System</option>
226+
<option value="Python">Python</option>
227227

228-
<option value="Service Management">Service Management</option>
228+
<option value="Rust">Rust</option>
229229

230230
<option value="Ruby">Ruby</option>
231231

232-
<option value="Database">Database</option>
233-
234-
<option value="Python">Python</option>
232+
<option value="System">System</option>
235233

236234
<option value="Boot">Boot</option>
237235

238236
<option value="Security">Security</option>
239237

240-
<option value="Package Manager">Package Manager</option>
238+
<option value="Database">Database</option>
239+
240+
<option value="Storage">Storage</option>
241241

242242
<option value="Configuration Management">Configuration Management</option>
243243

244-
<option value="System">System</option>
244+
<option value="Containers">Containers</option>
245245

246-
<option value="Rust">Rust</option>
246+
<option value="Version Control System">Version Control System</option>
247247

248-
<option value="Javascript">Javascript</option>
248+
<option value="Package Manager">Package Manager</option>
249249

250250
</select>
251251
</div>

en/next/operations.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -193,33 +193,33 @@ <h1>Operations Index<a class="headerlink" href="#operations-index" title="Link t
193193
<select class="form-select" id="tag-dropdown">
194194
<option value="All">All</option>
195195

196-
<option value="Containers">Containers</option>
196+
<option value="Service Management">Service Management</option>
197197

198-
<option value="Storage">Storage</option>
198+
<option value="Javascript">Javascript</option>
199199

200-
<option value="Version Control System">Version Control System</option>
200+
<option value="Python">Python</option>
201201

202-
<option value="Service Management">Service Management</option>
202+
<option value="Rust">Rust</option>
203203

204204
<option value="Ruby">Ruby</option>
205205

206-
<option value="Database">Database</option>
207-
208-
<option value="Python">Python</option>
206+
<option value="System">System</option>
209207

210208
<option value="Boot">Boot</option>
211209

212210
<option value="Security">Security</option>
213211

214-
<option value="Package Manager">Package Manager</option>
212+
<option value="Database">Database</option>
213+
214+
<option value="Storage">Storage</option>
215215

216216
<option value="Configuration Management">Configuration Management</option>
217217

218-
<option value="System">System</option>
218+
<option value="Containers">Containers</option>
219219

220-
<option value="Rust">Rust</option>
220+
<option value="Version Control System">Version Control System</option>
221221

222-
<option value="Javascript">Javascript</option>
222+
<option value="Package Manager">Package Manager</option>
223223

224224
</select>
225225
</div>

en/next/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)