Update documentation for cookie handling commands
Closes: #531 Approved by: cgwalters
This commit is contained in:
parent
6af8db6fc4
commit
2b150f52f8
|
|
@ -69,6 +69,25 @@ Boston, MA 02111-1307, USA.
|
||||||
<cmdsynopsis>
|
<cmdsynopsis>
|
||||||
<command>ostree remote summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
|
<command>ostree remote summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
|
||||||
</cmdsynopsis>
|
</cmdsynopsis>
|
||||||
|
<cmdsynopsis>
|
||||||
|
<command>ostree remote add-cookie</command>
|
||||||
|
<arg choice="req">NAME</arg>
|
||||||
|
<arg choice="req">DOMAIN</arg>
|
||||||
|
<arg choice="req">PATH</arg>
|
||||||
|
<arg choice="req">COOKIE_NAME</arg>
|
||||||
|
<arg choice="req">VALUE</arg>
|
||||||
|
</cmdsynopsis>
|
||||||
|
<cmdsynopsis>
|
||||||
|
<command>ostree remote delete-cookie</command>
|
||||||
|
<arg choice="req">NAME</arg>
|
||||||
|
<arg choice="req">DOMAIN</arg>
|
||||||
|
<arg choice="req">PATH</arg>
|
||||||
|
<arg choice="req">COOKIE_NAME</arg>
|
||||||
|
<arg choice="req">VALUE</arg>
|
||||||
|
</cmdsynopsis>
|
||||||
|
<cmdsynopsis>
|
||||||
|
<command>ostree remote list-cookies</command> <arg choice="req">NAME</arg>
|
||||||
|
</cmdsynopsis>
|
||||||
</refsynopsisdiv>
|
</refsynopsisdiv>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
|
|
@ -83,6 +102,9 @@ Boston, MA 02111-1307, USA.
|
||||||
<para>
|
<para>
|
||||||
The GPG keys to import may be in binary OpenPGP format or ASCII armored. The optional <arg>KEY-ID</arg> list can restrict which keys are imported from a keyring file or input stream. All keys are imported if this list is omitted. If neither <option>--keyring</option> nor <option>--stdin</option> options are given, then keys are imported from the user's personal GPG keyring.
|
The GPG keys to import may be in binary OpenPGP format or ASCII armored. The optional <arg>KEY-ID</arg> list can restrict which keys are imported from a keyring file or input stream. All keys are imported if this list is omitted. If neither <option>--keyring</option> nor <option>--stdin</option> options are given, then keys are imported from the user's personal GPG keyring.
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
|
The various cookie related command allow management of a remote specific cookie jar.
|
||||||
|
</para>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
|
|
|
||||||
|
|
@ -205,6 +205,18 @@ Boston, MA 02111-1307, USA.
|
||||||
</para>
|
</para>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
|
<refsect1>
|
||||||
|
<title>Per-remote HTTP cookies</title>
|
||||||
|
<para>
|
||||||
|
Some content providers may want to control access to remote
|
||||||
|
repositories via HTTP cookies. The <command>ostree remote
|
||||||
|
add-cookie</command> and <command>ostree remote
|
||||||
|
delete-cookie</command> commands will update a per-remote
|
||||||
|
lookaside cookie jar, named
|
||||||
|
<filename>$remotename.cookies.txt</filename>.
|
||||||
|
</para>
|
||||||
|
</refsect1>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
<title>See Also</title>
|
<title>See Also</title>
|
||||||
<para>
|
<para>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue