diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2020-06-08 15:42:38 +0200 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2020-06-08 18:23:10 +0200 |
commit | 38aa912a0eff7f555ef3cd05c76edc3641c02dac (patch) | |
tree | 957108095d3666ae92f560db7ba85aa927c40830 /man | |
parent | 832ca09891405f9079124cc9e76941531bb54630 (diff) | |
download | ostree-38aa912a0eff7f555ef3cd05c76edc3641c02dac.tar.gz |
man/checkout: document missing options
Document missing options in the ostree checkout man page.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'man')
-rw-r--r-- | man/ostree-checkout.xml | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/man/ostree-checkout.xml b/man/ostree-checkout.xml index 8ba1c249..3956e34f 100644 --- a/man/ostree-checkout.xml +++ b/man/ostree-checkout.xml @@ -109,6 +109,14 @@ Boston, MA 02111-1307, USA. </varlistentry> <varlistentry> + <term><option>--whiteouts</option></term> + + <listitem><para> + Process whiteout files (Docker style). + </para></listitem> + </varlistentry> + + <varlistentry> <term><option>--allow-noent</option></term> <listitem><para> @@ -131,6 +139,69 @@ Boston, MA 02111-1307, USA. Process many checkouts from input file. </para></listitem> </varlistentry> + + <varlistentry> + <term><option>--fsync</option>="POLICY"</term> + + <listitem><para> + POLICY is a boolean which specifies whether fsync should be + used or not. Default to true. + </para></listitem> + </varlistentry> + + <varlistentry> + <term><option>--require-hardlinks</option>, + <option>-H</option></term> + + <listitem><para> + Do not fall back to full copies if hardlinking fails. + </para></listitem> + </varlistentry> + + <varlistentry> + <term><option>--force-copy-zerosized</option>, + <option>-z</option></term> + + <listitem><para> + Do not hardlink zero-sized files. + </para></listitem> + </varlistentry> + + <varlistentry> + <term><option>--force-copy</option>, <option>-C</option></term> + + <listitem><para> + Never hardlink (but may reflink if available). + </para></listitem> + </varlistentry> + + <varlistentry> + <term><option>--bareuseronly-dirs</option>, + <option>-M</option></term> + + <listitem><para> + Suppress mode bits outside of 0775 for directories (suid, + world writable, etc.). + </para></listitem> + </varlistentry> + + <varlistentry> + <term><option>--skip-list</option>="FILE"</term> + + <listitem><para> + Skip checking out the absolute file paths listed in FILE, + one per line. + </para></listitem> + </varlistentry> + + <varlistentry> + <term><option>--selinux-policy</option></term> + + <listitem><para> + Set SELinux labels based on policy in root filesystem PATH + (may be /). This implies <literal>--force-copy</literal>. + </para></listitem> + </varlistentry> </variablelist> </refsect1> |