--- /dev/null
+# Makefile for man/
+#
+# Copyright (C) 2016 Colin Walters <walters@verbum.org>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+man1_files = ostree.1 ostree-admin-cleanup.1 ostree-admin-config-diff.1 ostree-admin-deploy.1 ostree-admin-init-fs.1 ostree-admin-instutil.1 ostree-admin-os-init.1 ostree-admin-status.1 ostree-admin-set-origin.1 ostree-admin-switch.1 ostree-admin-undeploy.1 ostree-admin-upgrade.1 ostree-admin.1 ostree-cat.1 ostree-checkout.1 ostree-checksum.1 ostree-commit.1 ostree-gpg-sign.1 ostree-config.1 ostree-diff.1 ostree-fsck.1 ostree-init.1 ostree-log.1 ostree-ls.1 ostree-prune.1 ostree-pull-local.1 ostree-pull.1 ostree-refs.1 ostree-remote.1 ostree-reset.1 ostree-rev-parse.1 ostree-show.1 ostree-summary.1 ostree-static-delta.1 ostree-trivial-httpd.1
+
+man5_files = ostree.repo.5 ostree.repo-config.5
+
+man1_MANS = $(addprefix man/,$(man1_files))
+man5_MANS = $(addprefix man/,$(man5_files))
+
+EXTRA_DIST += $(man1_MANS) $(man5_MANS)
+
+if ENABLE_XSLTPROC
+
+XSLT_STYLESHEET = http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
+
+XSLTPROC_FLAGS = \
+ --nonet \
+ --stringparam man.output.quietly 1 \
+ --stringparam funcsynopsis.style ansi \
+ --stringparam man.th.extra1.suppress 1 \
+ --stringparam man.authors.section.enabled 0 \
+ --stringparam man.copyright.section.enabled 0
+
+XSLTPROC_MAN = $(XSLTPROC) $(XSLTPROC_FLAGS)
+
+%.1: %.xml
+ $(AM_V_GEN) $(XSLTPROC_MAN) --output $@ $(XSLT_STYLESHEET) $<
+
+%.5: %.xml
+ $(AM_V_GEN) $(XSLTPROC_MAN) --output $@ $(XSLT_STYLESHEET) $<
+
+CLEANFILES += \
+ $(man1_MANS) \
+ $(man5_MANS) \
+ $(NULL)
+
+endif # ENABLE_GTK_DOC
include Makefile-switchroot.am
include Makefile-tests.am
include Makefile-boot.am
+include Makefile-man.am
release-tag:
git tag -m "Release $(VERSION)" v$(VERSION)
])
AC_PATH_PROG([XSLTPROC], [xsltproc])
+AM_CONDITIONAL([ENABLE_XSLTPROC], test -n "${XSLTPROC}")
AC_ARG_WITH(libarchive,
AS_HELP_STRING([--without-libarchive], [Do not use libarchive]),
# This includes the standard gtk-doc make rules, copied by gtkdocize.
include $(top_srcdir)/gtk-doc.make
-man1_MANS = ostree.1 ostree-admin-cleanup.1 ostree-admin-config-diff.1 ostree-admin-deploy.1 ostree-admin-init-fs.1 ostree-admin-instutil.1 ostree-admin-os-init.1 ostree-admin-status.1 ostree-admin-set-origin.1 ostree-admin-switch.1 ostree-admin-undeploy.1 ostree-admin-upgrade.1 ostree-admin.1 ostree-cat.1 ostree-checkout.1 ostree-checksum.1 ostree-commit.1 ostree-gpg-sign.1 ostree-config.1 ostree-diff.1 ostree-fsck.1 ostree-init.1 ostree-log.1 ostree-ls.1 ostree-prune.1 ostree-pull-local.1 ostree-pull.1 ostree-refs.1 ostree-remote.1 ostree-reset.1 ostree-rev-parse.1 ostree-show.1 ostree-summary.1 ostree-static-delta.1 ostree-trivial-httpd.1
-
-man5_MANS = ostree.repo.5 ostree.repo-config.5
-
-if ENABLE_GTK_DOC
-
-XSLTPROC_FLAGS = \
- --nonet \
- --stringparam man.output.quietly 1 \
- --stringparam funcsynopsis.style ansi \
- --stringparam man.th.extra1.suppress 1 \
- --stringparam man.authors.section.enabled 0 \
- --stringparam man.copyright.section.enabled 0
-
-XSLTPROC_MAN = \
- $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
-
-.xml.1:
- $(AM_V_GEN) $(XSLTPROC_MAN) $<
-.xml.5:
- $(AM_V_GEN) $(XSLTPROC_MAN) $<
-
-CLEANFILES += \
- $(man1_MANS) \
- $(man5_MANS) \
- $(NULL)
-
-endif # ENABLE_GTK_DOC
-
-MAN_IN_FILES = \
- $(man1_MANS:.1=.xml) \
- $(man5_MANS:.5=.xml) \
- $(NULL)
-
EXTRA_DIST += \
- $(MAN_IN_FILES) \
version.xml \
- ostree.xml \
ostree-sections.txt \
$(NULL)
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin cleanup</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin cleanup</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-cleanup</refname>
- <refpurpose>Delete untagged deployments and repository objects</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin cleanup </command>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- OSTree sysroot cleans up other bootversions and old deployments. If/when a pull or deployment is interrupted, a partially written state may remain on disk. This command cleans up any such partial states.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin cleanup</command></para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin config-diff</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin config-diff</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-config-diff</refname>
- <refpurpose>Diff current /etc configuration versus default</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin config-diff</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Prints the differences between the current /etc directory and the default configuration in /usr/etc. Newly added files (present in /etc but not in /usr/etc) will be prefixed with 'A'. Modified files will be prefixed with 'M', and deleted files with 'D'.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--os</option>="OSNAME"</term>
-
- <listitem><para>
- Use a different operating system root than the current one.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin config-diff</command></para>
- <programlisting>
- M shadow
- A example.txt
- </programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin deploy</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin deploy</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-deploy</refname>
- <refpurpose>Checkout a revision as the new default deployment</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin deploy</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">REFSPEC</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Takes a commit or revision REFSPEC, and queues the new deployment as default upon reboot.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--os</option>="OSNAME"</term>
-
- <listitem><para>
- Use a different operating system root than the current one.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--origin-file</option>="FILENAME"</term>
-
- <listitem><para>
- Use FILENAME as the origin, which is where OSTree will look for updated versions of the tree.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--retain</option></term>
-
- <listitem><para>
- Do not delete previous deployment.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--karg-proc-cmdline</option></term>
-
- <listitem><para>
- Import current /proc/cmdline.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--karg</option>="NAME=VALUE"</term>
-
- <listitem><para>
- Set kernel argument, like root=/dev/sda1; this overrides any earlier argument with the same name.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--karg-append</option>="NAME=VALUE"</term>
-
- <listitem><para>
- Append kernel argument; useful with e.g. console= that can be used multiple times.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin status</command></para>
-<programlisting>
- * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
- gnome-ostree ce19c41036cc45e49b0cecf6b157523c2105c4de1ce3.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
-</programlisting>
-
-<para><command>$ ostree admin deploy gnome-ostree/buildmaster/x86_64-runtime</command></para>
-<programlisting>
- ostadmin: Creating deployment /ostree/deploy/gnome-ostree/deploy/7e382b11d213a402a5313e61cbc69dfd5ab93cb07.1
- ostadmin: Processing /etc: 3 modified, 0 removed, 29 added
- Transaction complete: bootconfig swap: no deployment count change: 0)
-</programlisting>
-
-<para><command>$ ostree admin status</command></para>
-<programlisting>
- gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.1
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
- * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
-</programlisting>
-
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin init-fs</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin init-fs</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-init-fs</refname>
- <refpurpose>Initialize a new root filesystem</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin init-fs</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">PATH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Initialize an empty physical root filesystem in the designated PATH, with normal toplevels and correct permissions for each directory. Primarily useful for operating system installers.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ mkdir /example</command></para>
- <para><command>$ ostree admin init-fs /example</command></para>
- <para><command>$ ls /example </command></para>
- <para>
- <emphasis>boot</emphasis> <emphasis>dev</emphasis> <emphasis>home</emphasis> <emphasis>ostree</emphasis> <emphasis>proc</emphasis> <emphasis>root</emphasis> <emphasis>run</emphasis> <emphasis>sys</emphasis> <emphasis>tmp</emphasis>
- </para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin instutil</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin instutil</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-instutil</refname>
- <refpurpose>Utility functions intended primarily for operating system installation programs</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin instutil</command> <arg choice="req">SUBCOMMAND</arg> <arg choice="opt">ARGS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Use the subcommands to toggle admin installation utilities for selinux policies and kernel arguments.
- </para>
- </refsect1>
-
-<!-- Give more details on each subcommand? They don't have separate manpages -->
- <refsect1>
- <title>Subcommands</title>
-
- <variablelist>
- <varlistentry>
- <term><cmdsynopsis><command>selinux-ensure-labeled</command> <arg choice="opt">SUBPATH PREFIX</arg></cmdsynopsis></term>
-
- <listitem><para>
- Ensure all files and directories are labeled according to SELinux policy of the first deployment.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><cmdsynopsis>
-<command>set-kargs</command> <arg choice="opt">--merge</arg> <arg choice="opt">--import-proc-cmdline</arg> <arg choice="opt">--append="NAME=VALUE"</arg> <arg choice="opt">--replace="NAME=VALUE"</arg> <arg choice="opt">MORE_APPEND_ARGS</arg></cmdsynopsis></term>
-
- <listitem><para>
- Replace the kernel arguments of the default deployment. The new arguments are based
- on an empty list (the default), the current options (--merge), or the arguments
- of the loaded kernel (--import-proc-cmdline), and new options either are added to the
- end (--append="NAME=VALUE") or replace existing arguments of the same name (--replace="NAME=VALUE").
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin os-init</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin os-init</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-os-init</refname>
- <refpurpose>Initialize empty state for a given operating system</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin os-init</command> <arg choice="req">OSNAME</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Initializes an new state for an operating system. Ensures that the core subdirectories of /var (/tmp, /lib, /run, and /lock) exist and initialize the given OSNAME as OSTree root. Each deployment location is comprised of a single shared <filename>var</filename> and a set of deployments (chroots).
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin os-init gnome-ostree</command></para>
- <programlisting>
- ostree/deploy/gnome-ostree initialized as OSTree root
- </programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2015 Colin Walters <walters@verbum.org>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin set-origin</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin set-origin</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-set-origin</refname>
- <refpurpose>Change the "origin" (location for upgrades)</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin set-origin </command> <arg choice="req">REMOTENAME</arg> <arg choice="req">URL</arg> <arg choice="opt">BRANCH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Add a new remote named
- <replaceable>REMOTENAME</replaceable> (if it does not
- already exist). Then change the origin file for the
- current deployment. This is the ref that will be
- "tracked" and upgraded with <command>ostree admin
- upgrade</command>.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--set</option>=KEY=VALUE</term>
-
- <listitem><para>
- Set an option for the remote.
- </para></listitem>
-
- </varlistentry>
- <varlistentry>
- <term><option>--index</option>=INDEX</term>
-
- <listitem><para> Change the origin of the deployment
- numbered <replaceable>INDEX</replaceable> (starting
- from 0). </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
-
- <para><command>$ ostree admin set-origin exampleos http://os.example.com/repo exampleos/10.0/master/router</command></para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin status</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin status</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-status</refname>
- <refpurpose>List deployments</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin status</command>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Lists the deployments available to be booted into. Includes osname, the checksum followed by the deploy serial, and the refspec. An asterisk indicates the current booted deployment.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin status</command></para>
-<programlisting>
- * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
- gnome-ostree ce19c41036cc45e49b0cecf6b157523c2105c4de1c.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin switch</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin switch</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-switch</refname>
- <refpurpose>Construct new tree from current origin and deploy it, if it changed</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin switch</command> <arg choice="req">REF</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Choose a different REF forom the current remote to track. This is the ref that will be "tracked" and upgraded with <command>ostree admin upgrade</command>. Like an upgrade, the operating system state will be preserved.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--os</option>="OSNAME"</term>
-
- <listitem><para>
- Use a different operating system root than the current one.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
-
- <para><command>$ ostree admin switch fedostree/20/workstation/gnome/core</command></para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin undeploy</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin undeploy</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-undeploy</refname>
- <refpurpose>Delete deployment at a given index</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin undeploy</command> <arg choice="req">INDEX</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Deletes the deployment at INDEX. INDEX must be in range and not reference the currently booted deployment.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin status</command></para>
-<programlisting>
- * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
- gnome-ostree ce19c41036cc45e49b0cecf6b157523c2105c4de1c.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
-</programlisting>
-<para><command>$ ostree admin undeploy 1</command></para>
-<programlisting>
- Transaction complete; bootconfig swap: no deployment count change: -1)
- Freed objects: 326.5 kB
- Deleted deployment ce19c41036cc45e49b0cecf6b157523c2105c4de1c.0
-</programlisting>
-<para><command>$ ostree admin status</command></para>
-<programlisting>
- * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
- origin refspec: gnome-ostree/buildmaster/x86_64-runtime
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin upgrade</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin upgrade</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin-upgrade</refname>
- <refpurpose>Construct new tree from current origin and deploy it, if it changed</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin upgrade</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Downloads the latest version of the current ref from the build server and deploys it, if it changed. Reboot the machine for the changes to take effect.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--os</option>="OSNAME"</term>
-
- <listitem><para>
- Use a different operating system root than the current one.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--reboot</option>,<option>-r</option></term>
-
- <listitem><para>
- Reboot after a successful upgrade.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--allow-downgrade</option></term>
-
- <listitem><para>
- Permit deployment of chronologically older trees.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--override-commit</option>="CHECKSUM"</term>
-
- <listitem><para>
- Deploy CHECKSUM instead of the latest tree.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- Can we have a real example with output? -->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree admin upgrade</command></para>
-<programlisting>
- No update available.
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree admin</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree admin</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-admin</refname>
- <refpurpose>Use one of the ostree admin commands</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree admin</command> <arg choice="req">SUBCOMMAND</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Use ostree admin subcommands.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Subcommands</title>
-
- <itemizedlist>
- <listitem><para><command>cleanup</command></para></listitem>
- <listitem><para><command>config-diff</command></para></listitem>
- <listitem><para><command>deploy</command></para></listitem>
- <listitem><para><command>init-fs</command></para></listitem>
- <listitem><para><command>instutil</command></para></listitem>
- <listitem><para><command>os-init</command></para></listitem>
- <listitem><para><command>status</command></para></listitem>
- <listitem><para><command>set-origin</command></para></listitem>
- <listitem><para><command>switch</command></para></listitem>
- <listitem><para><command>undeploy</command></para></listitem>
- <listitem><para><command>upgrade</command></para></listitem>
- </itemizedlist>
-
- <para>
- View manpages for each admin subcommand using, for example:
- </para>
- <para>
- <command>$ man ostree-admin cleanup</command>
- </para>
- </refsect1>
- <refsect1>
- <title>Options</title>
- <variablelist>
- <varlistentry>
- <term><option>--help</option>, <option>-h</option></term>
- <listitem><para>Usage help</para></listitem>
- </varlistentry>
-
-<!-- What is a sysroot specifically? More details needed here-->
- <varlistentry>
- <term><option>--sysroot</option>="PATH"</term>
- <listitem><para>Creates a new OSTree sysroot at PATH</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--print-current-dir</option></term>
- <listitem><para>
- Prints the full path to the deployment directory for the currently active deployment in the specified sysroot to standard out. This is incompatible with specifying a subcommand.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree cat</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree cat</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-cat</refname>
- <refpurpose>Display or concatenate contents of files</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree cat</command> <arg choice="req">COMMIT</arg> <arg choice="req" rep="repeat">PATH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- This command functions much like the typical Unix "cat" command, in that it displays the contents of a file, or concatenates them given two or more files. However, this command requires the user to specify a commit - a checksum or refspec corresponding to a given build. If you use a refspec, OSTree will refer to the most recent commit, unless you specify a parent build using the carat (^) at the end of the refspec. It will then operate the command in that given commit.
- </para>
-
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree cat my-branch helloworld.txt</command></para>
-<programlisting>
- Hello, world!
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree checkout</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree checkout</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-checkout</refname>
- <refpurpose>Check out a commit into a filesystem</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree checkout</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">COMMIT</arg> <arg choice="opt">DESTINATION</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Checks out the given commit into the filesystem under directory DESTINATION. If DESTINATION is not specified, the COMMIT will become the destination checkout target. If COMMIT destination already exists, command will error unless <option>--union</option> option is selected.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--user-mode</option>,<option> -u</option></term>
-
- <listitem><para>
- Do not change file ownership or initialize extended attributes.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--subpath</option>="PATH"</term>
-
- <listitem><para>
- Checkout sub-directory PATH.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--union</option></term>
-
- <listitem><para>
- Keep existing directories and unchanged files, overwrite existing files.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--allow-noent</option></term>
-
- <listitem><para>
- Do nothing if specified path does not exist.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--from-stdin</option></term>
-
- <listitem><para>
- Process many checkouts from standard input.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--from-file</option>="FILE"</term>
-
- <listitem><para>
- Process many checkouts from input file.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- check this example for accuracy-->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree checkout my-branch</command></para>
- <para><command>$ ls</command></para>
-<programlisting>
- file1 file2 <emphasis>my-branch</emphasis>
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree checksum</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree checksum</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-checksum</refname>
- <refpurpose>Checksum a file or directory</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree checksum</command> <arg choice="req">PATH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Generates a checksum for a given file or directory.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree checksum file1</command></para>
-<programlisting>
- 67e382b11d213a402a5313e61cbc69dfd5ab93cb07fbb8b71c2e84f79fa5d7dc
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree commit</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree commit</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-commit</refname>
- <refpurpose>Commit a new revision</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree commit</command> <arg choice="opt" rep="repeat">OPTIONS</arg> --branch=<arg choice="req">BRANCH</arg> <arg choice="opt">PATH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- This allows you to commit changes to a branch. The specification of the branch is required. If no commit message is specified with <option>--subject</option> then a text editor will be opened. The commit will be aborted if the commit subject is left empty. The command will print the checksum of a successful commit.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
- <variablelist>
- <varlistentry>
- <term><option>--subject</option>, <option>-s</option>="SUBJECT"</term>
-
- <listitem><para>
- One line subject.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--body</option>, <option>-m</option>="BODY"</term>
-
- <listitem><para>
- Full description.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--branch</option>, <option>-b</option>="BRANCH"</term>
-
- <listitem><para>
- Branch.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--tree</option>="dir=PATH" or "tar=TARFILE" or "ref=COMMIT"</term>
-
- <listitem><para>
- Overlay the given argument as a tree.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--add-metadata-string</option>="KEY=VALUE"</term>
-
- <listitem><para>
- Add a key/value pair to metadata.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--add-detached-metadata-string</option>="KEY=VALUE"</term>
-
- <listitem><para>
- Add a key/value pair to detached metadata.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--owner-uid</option>="UID"</term>
-
- <listitem><para>
- Set file ownership user id.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--owner-gid</option>="GID"</term>
-
- <listitem><para>
- Set file ownership group id.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--no-xattrs</option></term>
- <listitem><para>
- Do not import extended attributes.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--link-checkout-speedup</option></term>
-
- <listitem><para>
- Optimize for commits of trees composed of hardlinks into the repository.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--tar-autocreate-parents</option></term>
-
- <listitem><para>
- When loading tar archives, automatically create parent directories as needed.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--skip-if-unchanged</option></term>
-
- <listitem><para>
- If the contents are unchanged from previous commit, do nothing.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--statoverride</option>="PATH"</term>
-
- <listitem><para>
- File containing list of modifications to make permissions.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--table-output</option></term>
-
- <listitem><para>
- Output more information in a KEY: VALUE format.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--generate-sizes</option></term>
-
- <listitem><para>
- Generate size information along with commit metadata.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-sign</option>="KEY-ID"</term>
-
- <listitem><para>
- GPG Key ID with which to sign the commit (if have GPGME - GNU Privacy Guard Made Easy).
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-homedir</option>="HOMEDIR"</term>
-
- <listitem><para>
- GPG home directory to use when looking for keyrings (if have GPGME - GNU Privacy Guard Made Easy).
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--timestamp</option>="TIMESTAMP"</term>
-
- <listitem><para>
- Override the timestamp of the commit to TIMESTAMP.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree commit --branch=my-branch --subject="Initial commit"</command></para>
-<programlisting>
- 67e382b11d213a402a5313e61cbc69dfd5ab93cb07fbb8b71c2e84f79fa5d7dc
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree config</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree config</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-config</refname>
- <refpurpose>Change configuration settings</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree config get</command> <arg choice="req">SECTIONNAME.KEYNAME</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree config set</command> <arg choice="req">SECTIONNAME.KEYNAME</arg> <arg choice="req">VALUE</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Displays or changes a configuration setting.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree config get core.mode</command></para>
- <para>bare</para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree diff</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree diff</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-diff</refname>
- <refpurpose>Compare a directory against a revision</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree diff</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">REV</arg> <arg choice="req">TARGETDIR</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Compare directory TARGETDIR against revision REV. Shows files and directories modified, added, and deleted. If there is a file in TARGETDIR not in REV, it will show with an "A" for "added". If a file in REV is not in TARGETDIR, it shows "D" for "deleted". "M" for "modified" will also show.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--stats</option></term>
- <listitem><para>
- Print various statistics.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--fs-diff</option></term>
- <listitem><para>
- Print filesystem diff.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree diff my-branch^ my-branch</command></para>
-<programlisting>
- A /testdirectory
- M /helloworld.txt
-</programlisting>
-<para><command>$ ostree diff my-branch my-branch^</command></para>
-<programlisting>
- D /testdirectory
- M /helloworld.txt
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree fsck</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree fsck</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-fsck</refname>
- <refpurpose>Check the repository for consistency</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree fsck</command><arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Checks the repository to verify the content integrity of commit objects. Looks for missing and corrupted objects and metadata, and validates directory structure and metadata.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--quiet</option>,<option>-q</option></term>
- <listitem><para>
- Only print error messages.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--delete</option></term>
- <listitem><para>
- Remove corrupted objects.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--add-tombstones</option></term>
- <listitem><para>
- Add tombstone commit for referenced but missing commits.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- What does it look like when it finds corrupted objects?-->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree fsck</command></para>
-<programlisting>
- Enumerating objects...
- Verifying content integrity of of 2 commit objects
- 0/2572 objects
- 2571/2572 objects
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2015 Matthew Barnes <mbarnes@redhat.com>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree gpg-sign</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree gpg-sign</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-gpg-sign</refname>
- <refpurpose>Sign a commit</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree gpg-sign</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">COMMIT</arg> <arg choice="req" rep="repeat">KEY-ID</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Add a new signature to a commit for each specified GPG key.
-
- Note that currently, this will append a new signature even if
- the commit is already signed with a given key.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--delete</option></term>
-
- <listitem><para>
- Delete signatures having any of the GPG KEY-IDs.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-homedir</option>="HOMEDIR"</term>
-
- <listitem><para>
- GPG Homedir to use when looking for keyrings.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree init</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree init</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-init</refname>
- <refpurpose>Initialize a new empty repository</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree init</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Creates a new empty repository.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--mode</option>="MODE"</term>
- <listitem><para>
- Initialize repository in given mode (bare, archive-z2). Default is "bare".
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- This needs an example!! -->
-
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree log</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree log</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-log</refname>
- <refpurpose>Show log starting at a commit or ref</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree log</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">REF</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Shows a log of commits to a given ref or branch. Includes commit checksum, timestamp, and commit message.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--raw</option></term>
- <listitem><para>
- Show raw variant data.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree log my-branch</command></para>
-<programlisting>
- commit 67e382b11d213a402a5313e61cbc69dfd5ab93cb07fbb8b71c2e84f79fa5d7dc
- Date: 2014-06-12 13:42:54 +0000
- This is the second commit
-
- commit ce19c41036cc45e49b0cecf6b157523c2105c4de1ce30101def1f759daafcc3e
- Date: 2014-06-12 11:20:08 +0000
- Initial commit
-</programlisting>
-
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree ls</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree ls</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-ls</refname>
- <refpurpose>List file paths</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree ls</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">COMMIT</arg> <arg choice="opt" rep="repeat">PATHS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Prints a list of file paths within the given commit, and within the given path(s) if specified. The first letter of the file line output specifies the type: "-" for regular file, "d" for directory, "l" for symbolic link. See EXAMPLE section for more detail on the specific output.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--dironly</option>,<option>-d</option></term>
- <listitem><para>
- Do not recurse into directory arguments.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--recursive</option>,<option>-R</option></term>
- <listitem><para>
- Print directories recursively.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--checksum</option>,<option>-C</option></term>
- <listitem><para>
- Print checksum.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--xattrs</option>,<option>-X</option></term>
- <listitem><para>
- Print extended attributes.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--nul-filenames-only</option></term>
- <listitem><para>
- Print only filenames, NUL separated.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- Check this example. Are the descriptions correct?? -->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree ls my-branch</command></para>
-<programlisting>
- d00644 0 0 0 /
- -00644 0 0 2 /helloworld.txt
- d00755 0 0 0 /testdirectory
-</programlisting>
-
-<para>Here, the first column is the file-type symbol (as explained in the DESCRIPTION section) followed by the S_IFMT file type. The next two columns (here: 0 0) are respectively the user ID and group ID for the file. After the break, the next number represents that file's standard size. The final column is the file path.</para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree prune</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree prune</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-prune</refname>
- <refpurpose>Search for unreachable objects</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree prune</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- This searches for unreachable objects in the current repository. If unreachable objects are found, the command delete them to free space. If the <option>--no-prune</option> option is invoked, the command will just print unreachable objects and recommend deleting them.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--no-prune</option></term>
-
- <listitem><para>
- Only display unreachable objects; don't delete.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--refs-only</option></term>
-
- <listitem><para>
- Only compute reachability via refs.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--delete-commit</option>=COMMIT</term>
-
- <listitem><para>
- Specify a COMMIT to delete.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--keep-younger-than</option>=DATE</term>
-
- <listitem><para>
- All commits older than DATE will be pruned.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--depth</option>=DEPTH</term>
-
- <listitem><para>
- Only traverse DEPTH (integer) parents for each commit (default: -1=infinite).
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--static-deltas-only</option>=DEPTH</term>
-
- <listitem><para>
- Change the behaviour of --keep-younger-than and --delete-commit to prune only
- the static deltas files.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- Can we have an example for when it DOES prune? -->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree prune</command></para>
-<programlisting>
- Total objects: 25627
- No unreachable objects
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree pull-local</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree pull-local</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-pull-local</refname>
- <refpurpose>Copy data from a source repository</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree pull-local</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">SOURCE_REPO</arg> <arg choice="opt" rep="repeat">REFS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Copies data from a given repository; optimized for copies only between repositories on the same system.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--remote</option>="REMOTE"</term>
-
- <listitem><para>
- Add REMOTE to refspec.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--disable-fsync</option></term>
-
- <listitem><para>
- Do no invoke fsync().
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- This is just copied output. Still not sure entirely what it does. Rework -->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree pull-local /ostree/repo</command></para>
-<programlisting>
- Enumerating objects...
- pull: 25709/25709 scanned, 0 objects copied
- Writing 5 refs
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree pull</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree pull</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-pull</refname>
- <refpurpose>Download data from a remote repository</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree pull <arg choice="req">REMOTE</arg> <arg choice="opt">BRANCH</arg></command>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--commit-metadata-only</option></term>
-
- <listitem><para>
- Fetch only the commit metadata.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--disable-fsync</option></term>
-
- <listitem><para>
- Do no invoke fsync().
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--disable-static-deltas</option></term>
-
- <listitem><para>
- Do not use static deltas.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--mirror</option></term>
-
- <listitem><para>
- Write refs suitable for a mirror.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--subpath</option>=SUBPATH</term>
-
- <listitem><para>
- Only pull the provided subpath.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--depth</option>=DEPTH</term>
-
- <listitem><para>
- Traverse DEPTH parents (-1=infinite) (default: 0).
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Downloads all content corresponding to the provided branch or commit from the given remote.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
-
- <para><command>$ ostree pull remote_name</command></para>
- </refsect1>
-
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree refs</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree refs</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-refs</refname>
- <refpurpose>List refs</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree refs</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="opt">PREFIX</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
-<!-- Could this be more specific? What defines a "ref"? etc -->
- <refsect1>
- <title>Description</title>
- <para>
- Lists all refs available on the host. If pecified, PREFIX assigns the refspec prefix; default prefix is null, which lists all refs.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--delete</option></term>
-
- <listitem><para>
- Delete refs which match PREFIX, rather than listing them. If you are trying to reclaim space,
- you will then need to <command>ostree prune</command> or <command>ostree admin cleanup</command>.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree refs</command></para>
-<programlisting>
- my-branch
- gnome-ostree/buildmaster/x86_64-runtime
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree remote</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree remote</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-remote</refname>
- <refpurpose>Control remote repository configuration</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree remote add</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg> <arg choice="req">URL</arg> <arg choice="opt" rep="repeat">BRANCH</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree remote delete</command> <arg choice="req">NAME</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree remote show-url</command> <arg choice="req">NAME</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree remote list</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree remote gpg-import</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg> <arg choice="opt" rep="repeat">KEY-ID</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree remote refs</command> <arg choice="req">NAME</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree remote summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Changes remote respository configurations. The NAME refers to the name of the remote.
- </para>
- <para>
- The <command>gpg-import</command> subcommand can associate GPG keys to a specific remote respository for use when pulling signed commits from that repository (if GPG verification is enabled).
- </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.
- </para>
- </refsect1>
-
- <refsect1>
- <title>'Add' Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--set</option>="KEY=VALUE"</term>
-
- <listitem><para>
- Set config option KEY=VALUE for remote.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--no-gpg-verify</option></term>
-
- <listitem><para>
- Disable GPG verification.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-import</option>=FILE</term>
-
- <listitem><para>
- Import one or more GPG keys from a file.
- </para><para>
- Equivalent to
- <command>ostree remote gpg-import --keyring=FILE</command>.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>'List' Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>-u, --show-urls</option></term>
-
- <listitem><para>
- Show remote URLs in list
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>'GPG-Import' Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>-k, --keyring</option>=FILE</term>
-
- <listitem><para>
- Import one or more keys from a file.
- </para><para>
- This option may be repeated to import from multiple files,
- but may not be used in combination with
- <option>--stdin</option>.
- </para></listitem>
- </varlistentry>
- <varlistentry>
- <term><option>--stdin</option></term>
-
- <listitem><para>
- Import one or more keys from standard input.
- </para><para>
- This option may not be used in combination with
- <option>--keyring</option>.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>'Summary' Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--raw</option></term>
-
- <listitem><para>
- Show raw variant data
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree remote show-url local</command></para>
-<programlisting>
- http://192.168.122.1/repo
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree reset</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree reset</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-reset</refname>
- <refpurpose>Reset a ref to a previous commit</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree reset </command> <arg choice="req">REF</arg> <arg choice="req">REF_TO_RESET_TO</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Given a commit, this command will reset the ref to a previous specified commit.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree log my-branch</command></para>
-<programlisting>
- commit 67e382b11d213a402a5313e61cbc69dfd5ab93cb07
- Date: 2014-06-12 13:42:54 +0000
- This is the second commit
-
- commit ce19c41036cc45e49b0cecf6b157523c2105c4de1c
- Date: 2014-06-12 11:20:08 +0000
- Initial commit
-</programlisting>
-
-<para><command>$ ostree reset my-branch my-branch^</command></para>
- <para><command>$ ostree log my-branch</command></para>
-<programlisting>
- commit ce19c41036cc45e49b0cecf6b157523c2105c4de1c
- Date: 2014-06-12 11:20:08 +0000
- Initial commit
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree rev-parse</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree rev-parse</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-rev-parse</refname>
- <refpurpose>Output the target of a rev</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree rev-parse </command> <arg choice="req">REV</arg> <arg choice="req">PATH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
-
-<!-- Is this accurate for all cases? This is what I observed -->
- <refsect1>
- <title>Description</title>
-
- <para>
- Given a REV, outputs the checksum of the latest commit of that revision.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree rev-parse my-branch</command></para>
-<programlisting>
- ce19c41036cc45e49b0cecf6b157523c2105c4de1ce30101def1f759daafcc3e
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree show</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree show</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-show</refname>
- <refpurpose>Output a metadata object</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree show</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">OBJECT</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- Given an object, shows the metadata for that object. For a particular revision, it will show the data for the most recent commit to that revision.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--print-related</option></term>
-
- <listitem><para>
- Show the "related" commits.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--print-variant-type</option>="TYPE"</term>
-
- <listitem><para>
- Memory map <replaceable>OBJECT</replaceable> (in this case a filename) to the GVariant type string.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--print-metadata-key</option>="KEY"</term>
-
- <listitem><para>
- Print string value of metadata key.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--print-detached-metadata-key</option>="KEY"</term>
-
- <listitem><para>
- Print string value of detached metadata key.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--raw</option></term>
-
- <listitem><para>
- Show raw variant data.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-homedir</option>="HOMEDIR"</term>
-
- <listitem><para>
- GPG home directory to use when looking for keyrings (if have GPGME - GNU Privacy Guard Made Easy).
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree show my-branch</command></para>
-<programlisting>
- commit 67e382b11d213a402a5313e61cbc69dfd5ab93cb07
- Date: 2014-06-12 13:42:54 +0000
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree static-delta</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree static-delta</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-static-delta</refname>
- <refpurpose>Manage static delta files</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree static-delta list</command>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree static-delta generate</command> <arg choice="req">--to=REV</arg> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- <cmdsynopsis>
- <command>ostree static-delta apply-offline</command> <arg choice="req">PATH</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- List and manipulate static delta files.
- </para>
- </refsect1>
-
- <refsect1>
- <title>'Generate' Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--from</option>="REV"</term>
-
- <listitem><para>
- Create delta from revision REV.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--to</option>="REV"</term>
-
- <listitem><para>
- Create delta to revision REV. (This option is required.)
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--empty</option></term>
-
- <listitem><para>
- Create delta from scratch.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--max-usize</option>=SIZE</term>
-
- <listitem><para>
- Maximum uncompressed size in megabytes.
- </para></listitem>
- </varlistentry>
-
- </variablelist>
- </refsect1>
-
-<!-- Can we have an example for when it actually does something?-->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree static-delta</command></para>
-<programlisting>
- (No static deltas)
-</programlisting>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Colin Walters <walters@verbum.org>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree summary</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree summary</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-summary</refname>
- <refpurpose>Regenerate the summary metadata file</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- The <filename>summary</filename> file is an optional higher
- level form of repository metadata that describes the
- available branches. It needs to be manually regenerated after
- a series of commits. Among other things, this allows atomically
- updating multiple commits.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>-u</option></term>
-
- <listitem><para>
- Update the summary file.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-sign</option>=KEYID</term>
-
- <listitem><para>
- GPG Key ID to sign the delta with.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--gpg-homedir</option>=HOMEDIR</term>
-
- <listitem><para>
- GPG Homedir to use when looking for keyrings.
- </para></listitem>
- </varlistentry>
-
- </variablelist>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2011,2013 Colin Walters <walters@verbum.org>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree trivial-httpd</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree trivial-httpd</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree-trivial-httpd</refname>
- <refpurpose>Simple webserver</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree trivial-httpd</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="opt">DIR</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
-<!-- Don't entirely understand this command. Needs details, better content-->
- <refsect1>
- <title>Description</title>
-
- <para>
- This runs a simple webserver and keeps it running until killed. If DIR is not specified, it defaults to the current directory.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <variablelist>
- <varlistentry>
- <term><option>--daemonize</option>,<option>-d</option></term>
-
- <listitem><para>
- Fork into background when ready.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--autoexit</option></term>
-
- <listitem><para>
- Automatically exit when directory is deleted.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--port-file</option>,<option>-p</option>="PATH"</term>
-
- <listitem><para>
- Write port number to PATH (- for standard output).
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--port</option>,<option>-P</option></term>
-
- <listitem><para>
- Use the specified TCP port to listen on.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>--force-range-requests</option></term>
-
- <listitem><para>
- Force range requests by only serving half of files.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
-<!-- NEED EXAMPLE OUTPUT HERE!-->
- <refsect1>
- <title>Example</title>
- <para><command>$ ostree trivial-httpd</command></para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
-"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2014 Colin Walters <walters@verbum.org>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree.repo-config">
-
- <refentryinfo>
- <title>ostree.repo-config</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree.repo-config</refentrytitle>
- <manvolnum>5</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree.repo-config</refname>
- <refpurpose>OSTree repository configuration</refpurpose>
- </refnamediv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- The <filename>config</filename> file in an OSTree
- repository is a "keyfile" in the <ulink
- url="http://standards.freedesktop.org/desktop-entry-spec/latest/">XDG
- Desktop Entry Specification</ulink> format. It has
- several global flags, as well as zero or more remote
- entries which describe how to access remote
- repositories.
- </para>
-
- <para>
- See <citerefentry><refentrytitle>ostree.repo</refentrytitle><manvolnum>5</manvolnum></citerefentry> for more information
- about OSTree repositories.
- </para>
- </refsect1>
-
- <refsect1>
- <title>[core] Section Options</title>
-
- <para>
- Repository-global options. The following entries are defined:
- </para>
-
- <variablelist>
- <varlistentry>
- <term><varname>mode</varname></term>
- <listitem><para>One of <literal>bare</literal> or <literal>archive-z2</literal>. </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>repo_version</varname></term>
- <listitem><para>Currently, this must be set to <literal>1</literal>.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>commit-update-summary</varname></term>
- <listitem><para>Boolean value controlling whether or not to
- automatically update the summary file after a commit. Defaults
- to <literal>false</literal>.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>fsync</varname></term>
- <listitem><para>Boolean value controlling whether or not to
- ensure files are on stable storage when performing operations
- such as commits, pulls, and checkouts. Defaults to
- <literal>true</literal>.</para>
- <para>
- If you disable fsync, OSTree will no longer be robust
- against kernel crashes or power loss.
- </para>
- <para>
- You might choose to disable this for local development
- repositories, under the assumption they can be recreated from
- source. Similarly, you could disable for a mirror where you could
- re-pull.
- </para>
- <para>
- For the system repository, you might choose to disable fsync
- if you have uninterruptable power supplies and a well tested
- kernel.
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>[remote "name"] Section Options</title>
-
- <para>
- Describes a remote repository location.
- </para>
-
- <variablelist>
- <varlistentry>
- <term><varname>url</varname></term>
- <listitem><para>Must be present; declares URL for accessing
- this remote. The only supported schemes are the moment are
- <literal>file</literal>, <literal>http</literal>, and
- <literal>https</literal>.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>proxy</varname></term>
- <listitem><para>A string value, if given should be a URL for a
- HTTP proxy to use for access to this repository.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>gpg-verify</varname></term>
- <listitem><para>A boolean value, defaults to true.
- Controls whether or not OSTree will require commits to be
- signed by a known GPG key. For more information, see the
- <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>
- manual under GPG.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>gpg-verify-summary</varname></term>
- <listitem><para>A boolean value, defaults to false.
- Controls whether or not OSTree will check if the summary
- is signed by a known GPG key.
- For more information, see the <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>
- manual under GPG.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>tls-permissive</varname></term>
- <listitem><para>A boolean value, defaults to false. By
- default, server TLS certificates will be checked against the
- system certificate store. If this variable is set, any
- certificate will be accepted.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>tls-client-cert-path</varname></term>
- <listitem><para>Path to file for client-side certificate, to present when making requests to this repository.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>tls-client-key-path</varname></term>
- <listitem><para>Path to file containing client-side certificate key, to present when making requests to this repository.</para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><varname>tls-ca-path</varname></term>
- <listitem><para>Path to file containing trusted anchors instead of the system CA database.</para></listitem>
- </varlistentry>
- </variablelist>
-
- </refsect1>
-
- <refsect1>
- <title>/etc/ostree/remotes.d</title>
-
- <para>
- In addition to the <filename>/ostree/repo/config</filename>
- file, remotes may also be specified in
- <filename>/etc/ostree/remotes.d</filename>. The remote
- configuration file must end in <literal>.conf</literal>; files
- whose name does not end in <literal>.conf</literal> will be
- ignored.
- </para>
- </refsect1>
-
- <refsect1>
- <title>See Also</title>
- <para>
- <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>, <citerefentry><refentrytitle>ostree.repo</refentrytitle><manvolnum>5</manvolnum></citerefentry>
- </para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
- Copyright 2014 Colin Walters <walters@verbum.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the
- Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree.repo">
-
- <refentryinfo>
- <title>ostree.repo</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree.repo</refentrytitle>
- <manvolnum>5</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree.repo</refname>
- <refpurpose>OSTree repository configuration and layout</refpurpose>
- </refnamediv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- An OSTree repository is structurally similar to a
- git repository; it is a content-addressed object
- store containing filesystem trees. However, unlike
- git, ostree is designed to store operating system
- binaries. It records the Unix uid and gid,
- permissions, as well as extended attributes.
- </para>
-
- <para>
- A repository can be in one of two modes;
- <literal>bare</literal>, which is designed as a hard
- link source for operating system checkouts, and
- <literal>archive-z2</literal>, which is designed for
- static HTTP servers.
- </para>
-
- <para>
- There is a system repository located at
- <filename>/ostree/repo</filename>. If no repository
- is specified -- either by a command-line option or the
- <envar>OSTREE_REPO</envar> environment variable --
- the <command>ostree</command> as well as many API
- calls will use it by default.
- </para>
- </refsect1>
-
- <refsect1>
- <title>Components of a repository</title>
-
- <para>
- The only user-editable component is the
- <filename>config</filename> file. For more
- information, see <citerefentry><refentrytitle>ostree.repo-config</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
- </para>
- </refsect1>
-
- <refsect1>
- <title>See Also</title>
- <para>
- <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>, <citerefentry><refentrytitle>ostree.repo-config</refentrytitle><manvolnum>1</manvolnum></citerefentry>
- </para>
- </refsect1>
-</refentry>
+++ /dev/null
-<?xml version='1.0'?> <!--*-nxml-*-->
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
-
-<!--
-Copyright 2011,2013 Colin Walters <walters@verbum.org>
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
--->
-
-<refentry id="ostree">
-
- <refentryinfo>
- <title>ostree</title>
- <productname>OSTree</productname>
-
- <authorgroup>
- <author>
- <contrib>Developer</contrib>
- <firstname>Colin</firstname>
- <surname>Walters</surname>
- <email>walters@verbum.org</email>
- </author>
- </authorgroup>
- </refentryinfo>
-
- <refmeta>
- <refentrytitle>ostree</refentrytitle>
- <manvolnum>1</manvolnum>
- </refmeta>
-
- <refnamediv>
- <refname>ostree</refname>
- <refpurpose>Manage multiple bootable versioned filesystem trees</refpurpose>
- </refnamediv>
-
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>ostree</command>
- <arg choice="req">COMMAND</arg> <arg choice="opt" rep="repeat">OPTIONS</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
-
- <refsect1>
- <title>Description</title>
-
- <para>
- OSTree is a tool for managing multiple bootable
- versioned filesystem trees, or just "tree" for
- short. In the OSTree model, operating systems no
- longer live in the physical "/" root directory.
- Instead, they parallel install to the new toplevel
- <filename>/ostree</filename> directory. Each
- installed system gets its own
- <filename>/ostree/deploy/<replaceable>osname</replaceable></filename>
- directory.
- </para>
- <para>
- Unlike <literal>rpm</literal> or
- <literal>dpkg</literal>, OSTree is only aware of
- complete filesystem trees. It has no built-in
- knowledge of what components went into creating the
- filesystem tree.
- </para>
- <para>
- It is possible to use OSTree in several modes; the
- most basic form is to replicate pre-built trees from
- a build server. Usually, these pre-built trees are
- derived from packages. You might also be using
- OSTree underneath a higher level tool which computes
- filesystem trees locally.
- </para>
- <para>
- It must be emphasized that OSTree only supports
- <emphasis>read-only</emphasis> trees. To change to
- a different tree (upgrade, downgrade, install
- software), a new tree is checked out, and a 3-way
- merge of configuration is performed. The currently
- running tree is not ever modified; the new tree will
- become active on a system reboot.
- </para>
-
- <para>
- To see the man page for a command run <command>man ostree <replaceable>COMMAND</replaceable></command> or <command>man ostree-admin <replaceable>COMMAND</replaceable></command>
- </para>
- </refsect1>
-
- <refsect1>
- <title>Options</title>
-
- <para>The following options are understood:</para>
-
- <variablelist>
- <varlistentry>
- <term><option>--repo</option></term>
-
- <listitem><para>
- For most commands,
- when run as non-root, repository is
- required. If
- <command>ostree</command> is run as
- root, it is assumed operations will be
- performed on the
- <filename>/sysroot/ostree/repo</filename>
- repository.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><option>-v, --verbose</option></term>
-
- <listitem><para>
- Produce debug level output.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Commands</title>
-
- <para>System administrators will primarily interact
- with OSTree via the subcommand <command>ostree
- admin</command>.</para>
-
- <variablelist>
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-cleanup</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Delete untagged
- deployments and repository objects.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-config-diff</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- See changes to
- <filename>/etc</filename> as compared
- to the current default (from
- <filename>/usr/etc</filename>).
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-deploy</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Takes a particular
- commit or revision, and sets it up for
- the next boot.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-init-fs</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Initialize a root filesystem
- in a specified path.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-instutil</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Utility functions intended primarily for operating system installation programs
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-os-init</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Initialize the
- deployment location for an operating
- system with a specified name.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-status</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Show and list the deployments.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-switch</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Choose a different ref
- to track from the same remote as the
- current tree.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-undeploy</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Remove the previously
- <replaceable>INDEX</replaceable>
- deployed tree from the bootloader
- configuration.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-admin-upgrade</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Download the latest version for the
- current ref, and deploy it.
- </para></listitem>
- </varlistentry>
- </variablelist>
-
- <para>Both administrators and operating system
- builders may interact with OSTree via the regular
- filesystem manipulation commands.
- </para>
-
- <variablelist>
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-cat</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Concatenate contents of files
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-checkout</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Check out a commit into a filesystem tree.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-checksum</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Gives checksum of any file.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-commit</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Given one or more
- trees, create a new commit using those contents.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-config</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Change settings.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-diff</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Concisely list
- differences between the given refs.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-fsck</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Check a repository for consistency.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-init</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Initialize a new repository.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-log</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Show revision log.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-ls</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- List the contents of a given commit.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-prune</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Search for unreachable objects.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-pull-local</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Copy data from source-repo.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-pull</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Download data from remote repo. If you have libsoup.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-refs</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- List refs.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Manipulate remote archive configuration.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-reset</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Reset a ref to a previous commit.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-rev-parse</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Show the SHA256 corresponding to a given rev.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-show</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Given an OSTree SHA256 checksum, display its contents.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-static-delta</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Manage static delta files.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-summary</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Regenerate the repository summary metadata.
- </para></listitem>
- </varlistentry>
-
- <varlistentry>
- <term><citerefentry><refentrytitle>ostree-trivial-httpd</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
-
- <listitem><para>
- Simple webserver.
- </para></listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
-
- <refsect1>
- <title>Examples</title>
- <para>
- For specific examples, please see the man page regarding the specific ostree command. For example:
- </para>
- <para>
- <command>man ostree init</command> or <command>man ostree-admin status</command>
- </para>
- </refsect1>
-
- <refsect1>
- <title>GPG verification</title>
-
- <para>
- OSTree supports signing commits with GPG. The set of
- trusted public keys is stored as keyring files in
- <filename>/usr/share/ostree/trusted.gpg.d</filename>. Any
- public key in a keyring file in that directory will be
- trusted by the client. No private keys should be present
- in this directory.
- </para>
- </refsect1>
-
- <refsect1>
- <title>See Also</title>
- <para>
- <citerefentry><refentrytitle>ostree.repo</refentrytitle><manvolnum>5</manvolnum></citerefentry>
- </para>
- </refsect1>
-</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin cleanup</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin cleanup</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-cleanup</refname>
+ <refpurpose>Delete untagged deployments and repository objects</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin cleanup </command>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ OSTree sysroot cleans up other bootversions and old deployments. If/when a pull or deployment is interrupted, a partially written state may remain on disk. This command cleans up any such partial states.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin cleanup</command></para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin config-diff</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin config-diff</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-config-diff</refname>
+ <refpurpose>Diff current /etc configuration versus default</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin config-diff</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Prints the differences between the current /etc directory and the default configuration in /usr/etc. Newly added files (present in /etc but not in /usr/etc) will be prefixed with 'A'. Modified files will be prefixed with 'M', and deleted files with 'D'.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--os</option>="OSNAME"</term>
+
+ <listitem><para>
+ Use a different operating system root than the current one.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin config-diff</command></para>
+ <programlisting>
+ M shadow
+ A example.txt
+ </programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin deploy</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin deploy</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-deploy</refname>
+ <refpurpose>Checkout a revision as the new default deployment</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin deploy</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">REFSPEC</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Takes a commit or revision REFSPEC, and queues the new deployment as default upon reboot.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--os</option>="OSNAME"</term>
+
+ <listitem><para>
+ Use a different operating system root than the current one.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--origin-file</option>="FILENAME"</term>
+
+ <listitem><para>
+ Use FILENAME as the origin, which is where OSTree will look for updated versions of the tree.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--retain</option></term>
+
+ <listitem><para>
+ Do not delete previous deployment.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--karg-proc-cmdline</option></term>
+
+ <listitem><para>
+ Import current /proc/cmdline.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--karg</option>="NAME=VALUE"</term>
+
+ <listitem><para>
+ Set kernel argument, like root=/dev/sda1; this overrides any earlier argument with the same name.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--karg-append</option>="NAME=VALUE"</term>
+
+ <listitem><para>
+ Append kernel argument; useful with e.g. console= that can be used multiple times.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin status</command></para>
+<programlisting>
+ * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+ gnome-ostree ce19c41036cc45e49b0cecf6b157523c2105c4de1ce3.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+</programlisting>
+
+<para><command>$ ostree admin deploy gnome-ostree/buildmaster/x86_64-runtime</command></para>
+<programlisting>
+ ostadmin: Creating deployment /ostree/deploy/gnome-ostree/deploy/7e382b11d213a402a5313e61cbc69dfd5ab93cb07.1
+ ostadmin: Processing /etc: 3 modified, 0 removed, 29 added
+ Transaction complete: bootconfig swap: no deployment count change: 0)
+</programlisting>
+
+<para><command>$ ostree admin status</command></para>
+<programlisting>
+ gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.1
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+ * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+</programlisting>
+
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin init-fs</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin init-fs</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-init-fs</refname>
+ <refpurpose>Initialize a new root filesystem</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin init-fs</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">PATH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Initialize an empty physical root filesystem in the designated PATH, with normal toplevels and correct permissions for each directory. Primarily useful for operating system installers.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ mkdir /example</command></para>
+ <para><command>$ ostree admin init-fs /example</command></para>
+ <para><command>$ ls /example </command></para>
+ <para>
+ <emphasis>boot</emphasis> <emphasis>dev</emphasis> <emphasis>home</emphasis> <emphasis>ostree</emphasis> <emphasis>proc</emphasis> <emphasis>root</emphasis> <emphasis>run</emphasis> <emphasis>sys</emphasis> <emphasis>tmp</emphasis>
+ </para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin instutil</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin instutil</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-instutil</refname>
+ <refpurpose>Utility functions intended primarily for operating system installation programs</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin instutil</command> <arg choice="req">SUBCOMMAND</arg> <arg choice="opt">ARGS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Use the subcommands to toggle admin installation utilities for selinux policies and kernel arguments.
+ </para>
+ </refsect1>
+
+<!-- Give more details on each subcommand? They don't have separate manpages -->
+ <refsect1>
+ <title>Subcommands</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><cmdsynopsis><command>selinux-ensure-labeled</command> <arg choice="opt">SUBPATH PREFIX</arg></cmdsynopsis></term>
+
+ <listitem><para>
+ Ensure all files and directories are labeled according to SELinux policy of the first deployment.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><cmdsynopsis>
+<command>set-kargs</command> <arg choice="opt">--merge</arg> <arg choice="opt">--import-proc-cmdline</arg> <arg choice="opt">--append="NAME=VALUE"</arg> <arg choice="opt">--replace="NAME=VALUE"</arg> <arg choice="opt">MORE_APPEND_ARGS</arg></cmdsynopsis></term>
+
+ <listitem><para>
+ Replace the kernel arguments of the default deployment. The new arguments are based
+ on an empty list (the default), the current options (--merge), or the arguments
+ of the loaded kernel (--import-proc-cmdline), and new options either are added to the
+ end (--append="NAME=VALUE") or replace existing arguments of the same name (--replace="NAME=VALUE").
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin os-init</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin os-init</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-os-init</refname>
+ <refpurpose>Initialize empty state for a given operating system</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin os-init</command> <arg choice="req">OSNAME</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Initializes an new state for an operating system. Ensures that the core subdirectories of /var (/tmp, /lib, /run, and /lock) exist and initialize the given OSNAME as OSTree root. Each deployment location is comprised of a single shared <filename>var</filename> and a set of deployments (chroots).
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin os-init gnome-ostree</command></para>
+ <programlisting>
+ ostree/deploy/gnome-ostree initialized as OSTree root
+ </programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2015 Colin Walters <walters@verbum.org>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin set-origin</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin set-origin</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-set-origin</refname>
+ <refpurpose>Change the "origin" (location for upgrades)</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin set-origin </command> <arg choice="req">REMOTENAME</arg> <arg choice="req">URL</arg> <arg choice="opt">BRANCH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Add a new remote named
+ <replaceable>REMOTENAME</replaceable> (if it does not
+ already exist). Then change the origin file for the
+ current deployment. This is the ref that will be
+ "tracked" and upgraded with <command>ostree admin
+ upgrade</command>.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--set</option>=KEY=VALUE</term>
+
+ <listitem><para>
+ Set an option for the remote.
+ </para></listitem>
+
+ </varlistentry>
+ <varlistentry>
+ <term><option>--index</option>=INDEX</term>
+
+ <listitem><para> Change the origin of the deployment
+ numbered <replaceable>INDEX</replaceable> (starting
+ from 0). </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+
+ <para><command>$ ostree admin set-origin exampleos http://os.example.com/repo exampleos/10.0/master/router</command></para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin status</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin status</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-status</refname>
+ <refpurpose>List deployments</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin status</command>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Lists the deployments available to be booted into. Includes osname, the checksum followed by the deploy serial, and the refspec. An asterisk indicates the current booted deployment.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin status</command></para>
+<programlisting>
+ * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+ gnome-ostree ce19c41036cc45e49b0cecf6b157523c2105c4de1c.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin switch</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin switch</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-switch</refname>
+ <refpurpose>Construct new tree from current origin and deploy it, if it changed</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin switch</command> <arg choice="req">REF</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Choose a different REF forom the current remote to track. This is the ref that will be "tracked" and upgraded with <command>ostree admin upgrade</command>. Like an upgrade, the operating system state will be preserved.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--os</option>="OSNAME"</term>
+
+ <listitem><para>
+ Use a different operating system root than the current one.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+
+ <para><command>$ ostree admin switch fedostree/20/workstation/gnome/core</command></para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin undeploy</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin undeploy</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-undeploy</refname>
+ <refpurpose>Delete deployment at a given index</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin undeploy</command> <arg choice="req">INDEX</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Deletes the deployment at INDEX. INDEX must be in range and not reference the currently booted deployment.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin status</command></para>
+<programlisting>
+ * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+ gnome-ostree ce19c41036cc45e49b0cecf6b157523c2105c4de1c.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+</programlisting>
+<para><command>$ ostree admin undeploy 1</command></para>
+<programlisting>
+ Transaction complete; bootconfig swap: no deployment count change: -1)
+ Freed objects: 326.5 kB
+ Deleted deployment ce19c41036cc45e49b0cecf6b157523c2105c4de1c.0
+</programlisting>
+<para><command>$ ostree admin status</command></para>
+<programlisting>
+ * gnome-ostree 67e382b11d213a402a5313e61cbc69dfd5ab93cb07.0
+ origin refspec: gnome-ostree/buildmaster/x86_64-runtime
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin upgrade</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin upgrade</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin-upgrade</refname>
+ <refpurpose>Construct new tree from current origin and deploy it, if it changed</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin upgrade</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Downloads the latest version of the current ref from the build server and deploys it, if it changed. Reboot the machine for the changes to take effect.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--os</option>="OSNAME"</term>
+
+ <listitem><para>
+ Use a different operating system root than the current one.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--reboot</option>,<option>-r</option></term>
+
+ <listitem><para>
+ Reboot after a successful upgrade.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--allow-downgrade</option></term>
+
+ <listitem><para>
+ Permit deployment of chronologically older trees.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--override-commit</option>="CHECKSUM"</term>
+
+ <listitem><para>
+ Deploy CHECKSUM instead of the latest tree.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- Can we have a real example with output? -->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree admin upgrade</command></para>
+<programlisting>
+ No update available.
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree admin</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree admin</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-admin</refname>
+ <refpurpose>Use one of the ostree admin commands</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree admin</command> <arg choice="req">SUBCOMMAND</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Use ostree admin subcommands.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Subcommands</title>
+
+ <itemizedlist>
+ <listitem><para><command>cleanup</command></para></listitem>
+ <listitem><para><command>config-diff</command></para></listitem>
+ <listitem><para><command>deploy</command></para></listitem>
+ <listitem><para><command>init-fs</command></para></listitem>
+ <listitem><para><command>instutil</command></para></listitem>
+ <listitem><para><command>os-init</command></para></listitem>
+ <listitem><para><command>status</command></para></listitem>
+ <listitem><para><command>set-origin</command></para></listitem>
+ <listitem><para><command>switch</command></para></listitem>
+ <listitem><para><command>undeploy</command></para></listitem>
+ <listitem><para><command>upgrade</command></para></listitem>
+ </itemizedlist>
+
+ <para>
+ View manpages for each admin subcommand using, for example:
+ </para>
+ <para>
+ <command>$ man ostree-admin cleanup</command>
+ </para>
+ </refsect1>
+ <refsect1>
+ <title>Options</title>
+ <variablelist>
+ <varlistentry>
+ <term><option>--help</option>, <option>-h</option></term>
+ <listitem><para>Usage help</para></listitem>
+ </varlistentry>
+
+<!-- What is a sysroot specifically? More details needed here-->
+ <varlistentry>
+ <term><option>--sysroot</option>="PATH"</term>
+ <listitem><para>Creates a new OSTree sysroot at PATH</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--print-current-dir</option></term>
+ <listitem><para>
+ Prints the full path to the deployment directory for the currently active deployment in the specified sysroot to standard out. This is incompatible with specifying a subcommand.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree cat</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree cat</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-cat</refname>
+ <refpurpose>Display or concatenate contents of files</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree cat</command> <arg choice="req">COMMIT</arg> <arg choice="req" rep="repeat">PATH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ This command functions much like the typical Unix "cat" command, in that it displays the contents of a file, or concatenates them given two or more files. However, this command requires the user to specify a commit - a checksum or refspec corresponding to a given build. If you use a refspec, OSTree will refer to the most recent commit, unless you specify a parent build using the carat (^) at the end of the refspec. It will then operate the command in that given commit.
+ </para>
+
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree cat my-branch helloworld.txt</command></para>
+<programlisting>
+ Hello, world!
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree checkout</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree checkout</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-checkout</refname>
+ <refpurpose>Check out a commit into a filesystem</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree checkout</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">COMMIT</arg> <arg choice="opt">DESTINATION</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Checks out the given commit into the filesystem under directory DESTINATION. If DESTINATION is not specified, the COMMIT will become the destination checkout target. If COMMIT destination already exists, command will error unless <option>--union</option> option is selected.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--user-mode</option>,<option> -u</option></term>
+
+ <listitem><para>
+ Do not change file ownership or initialize extended attributes.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--subpath</option>="PATH"</term>
+
+ <listitem><para>
+ Checkout sub-directory PATH.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--union</option></term>
+
+ <listitem><para>
+ Keep existing directories and unchanged files, overwrite existing files.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--allow-noent</option></term>
+
+ <listitem><para>
+ Do nothing if specified path does not exist.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--from-stdin</option></term>
+
+ <listitem><para>
+ Process many checkouts from standard input.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--from-file</option>="FILE"</term>
+
+ <listitem><para>
+ Process many checkouts from input file.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- check this example for accuracy-->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree checkout my-branch</command></para>
+ <para><command>$ ls</command></para>
+<programlisting>
+ file1 file2 <emphasis>my-branch</emphasis>
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree checksum</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree checksum</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-checksum</refname>
+ <refpurpose>Checksum a file or directory</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree checksum</command> <arg choice="req">PATH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Generates a checksum for a given file or directory.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree checksum file1</command></para>
+<programlisting>
+ 67e382b11d213a402a5313e61cbc69dfd5ab93cb07fbb8b71c2e84f79fa5d7dc
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree commit</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree commit</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-commit</refname>
+ <refpurpose>Commit a new revision</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree commit</command> <arg choice="opt" rep="repeat">OPTIONS</arg> --branch=<arg choice="req">BRANCH</arg> <arg choice="opt">PATH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ This allows you to commit changes to a branch. The specification of the branch is required. If no commit message is specified with <option>--subject</option> then a text editor will be opened. The commit will be aborted if the commit subject is left empty. The command will print the checksum of a successful commit.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+ <variablelist>
+ <varlistentry>
+ <term><option>--subject</option>, <option>-s</option>="SUBJECT"</term>
+
+ <listitem><para>
+ One line subject.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--body</option>, <option>-m</option>="BODY"</term>
+
+ <listitem><para>
+ Full description.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--branch</option>, <option>-b</option>="BRANCH"</term>
+
+ <listitem><para>
+ Branch.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--tree</option>="dir=PATH" or "tar=TARFILE" or "ref=COMMIT"</term>
+
+ <listitem><para>
+ Overlay the given argument as a tree.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--add-metadata-string</option>="KEY=VALUE"</term>
+
+ <listitem><para>
+ Add a key/value pair to metadata.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--add-detached-metadata-string</option>="KEY=VALUE"</term>
+
+ <listitem><para>
+ Add a key/value pair to detached metadata.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--owner-uid</option>="UID"</term>
+
+ <listitem><para>
+ Set file ownership user id.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--owner-gid</option>="GID"</term>
+
+ <listitem><para>
+ Set file ownership group id.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--no-xattrs</option></term>
+ <listitem><para>
+ Do not import extended attributes.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--link-checkout-speedup</option></term>
+
+ <listitem><para>
+ Optimize for commits of trees composed of hardlinks into the repository.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--tar-autocreate-parents</option></term>
+
+ <listitem><para>
+ When loading tar archives, automatically create parent directories as needed.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--skip-if-unchanged</option></term>
+
+ <listitem><para>
+ If the contents are unchanged from previous commit, do nothing.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--statoverride</option>="PATH"</term>
+
+ <listitem><para>
+ File containing list of modifications to make permissions.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--table-output</option></term>
+
+ <listitem><para>
+ Output more information in a KEY: VALUE format.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--generate-sizes</option></term>
+
+ <listitem><para>
+ Generate size information along with commit metadata.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-sign</option>="KEY-ID"</term>
+
+ <listitem><para>
+ GPG Key ID with which to sign the commit (if have GPGME - GNU Privacy Guard Made Easy).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-homedir</option>="HOMEDIR"</term>
+
+ <listitem><para>
+ GPG home directory to use when looking for keyrings (if have GPGME - GNU Privacy Guard Made Easy).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--timestamp</option>="TIMESTAMP"</term>
+
+ <listitem><para>
+ Override the timestamp of the commit to TIMESTAMP.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree commit --branch=my-branch --subject="Initial commit"</command></para>
+<programlisting>
+ 67e382b11d213a402a5313e61cbc69dfd5ab93cb07fbb8b71c2e84f79fa5d7dc
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree config</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree config</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-config</refname>
+ <refpurpose>Change configuration settings</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree config get</command> <arg choice="req">SECTIONNAME.KEYNAME</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree config set</command> <arg choice="req">SECTIONNAME.KEYNAME</arg> <arg choice="req">VALUE</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Displays or changes a configuration setting.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree config get core.mode</command></para>
+ <para>bare</para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree diff</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree diff</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-diff</refname>
+ <refpurpose>Compare a directory against a revision</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree diff</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">REV</arg> <arg choice="req">TARGETDIR</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Compare directory TARGETDIR against revision REV. Shows files and directories modified, added, and deleted. If there is a file in TARGETDIR not in REV, it will show with an "A" for "added". If a file in REV is not in TARGETDIR, it shows "D" for "deleted". "M" for "modified" will also show.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--stats</option></term>
+ <listitem><para>
+ Print various statistics.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--fs-diff</option></term>
+ <listitem><para>
+ Print filesystem diff.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree diff my-branch^ my-branch</command></para>
+<programlisting>
+ A /testdirectory
+ M /helloworld.txt
+</programlisting>
+<para><command>$ ostree diff my-branch my-branch^</command></para>
+<programlisting>
+ D /testdirectory
+ M /helloworld.txt
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree fsck</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree fsck</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-fsck</refname>
+ <refpurpose>Check the repository for consistency</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree fsck</command><arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Checks the repository to verify the content integrity of commit objects. Looks for missing and corrupted objects and metadata, and validates directory structure and metadata.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--quiet</option>,<option>-q</option></term>
+ <listitem><para>
+ Only print error messages.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--delete</option></term>
+ <listitem><para>
+ Remove corrupted objects.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--add-tombstones</option></term>
+ <listitem><para>
+ Add tombstone commit for referenced but missing commits.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- What does it look like when it finds corrupted objects?-->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree fsck</command></para>
+<programlisting>
+ Enumerating objects...
+ Verifying content integrity of of 2 commit objects
+ 0/2572 objects
+ 2571/2572 objects
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2015 Matthew Barnes <mbarnes@redhat.com>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree gpg-sign</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree gpg-sign</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-gpg-sign</refname>
+ <refpurpose>Sign a commit</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree gpg-sign</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">COMMIT</arg> <arg choice="req" rep="repeat">KEY-ID</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Add a new signature to a commit for each specified GPG key.
+
+ Note that currently, this will append a new signature even if
+ the commit is already signed with a given key.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--delete</option></term>
+
+ <listitem><para>
+ Delete signatures having any of the GPG KEY-IDs.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-homedir</option>="HOMEDIR"</term>
+
+ <listitem><para>
+ GPG Homedir to use when looking for keyrings.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree init</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree init</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-init</refname>
+ <refpurpose>Initialize a new empty repository</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree init</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Creates a new empty repository.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--mode</option>="MODE"</term>
+ <listitem><para>
+ Initialize repository in given mode (bare, archive-z2). Default is "bare".
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- This needs an example!! -->
+
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree log</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree log</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-log</refname>
+ <refpurpose>Show log starting at a commit or ref</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree log</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">REF</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Shows a log of commits to a given ref or branch. Includes commit checksum, timestamp, and commit message.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--raw</option></term>
+ <listitem><para>
+ Show raw variant data.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree log my-branch</command></para>
+<programlisting>
+ commit 67e382b11d213a402a5313e61cbc69dfd5ab93cb07fbb8b71c2e84f79fa5d7dc
+ Date: 2014-06-12 13:42:54 +0000
+ This is the second commit
+
+ commit ce19c41036cc45e49b0cecf6b157523c2105c4de1ce30101def1f759daafcc3e
+ Date: 2014-06-12 11:20:08 +0000
+ Initial commit
+</programlisting>
+
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree ls</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree ls</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-ls</refname>
+ <refpurpose>List file paths</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree ls</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">COMMIT</arg> <arg choice="opt" rep="repeat">PATHS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Prints a list of file paths within the given commit, and within the given path(s) if specified. The first letter of the file line output specifies the type: "-" for regular file, "d" for directory, "l" for symbolic link. See EXAMPLE section for more detail on the specific output.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--dironly</option>,<option>-d</option></term>
+ <listitem><para>
+ Do not recurse into directory arguments.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--recursive</option>,<option>-R</option></term>
+ <listitem><para>
+ Print directories recursively.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--checksum</option>,<option>-C</option></term>
+ <listitem><para>
+ Print checksum.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--xattrs</option>,<option>-X</option></term>
+ <listitem><para>
+ Print extended attributes.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--nul-filenames-only</option></term>
+ <listitem><para>
+ Print only filenames, NUL separated.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- Check this example. Are the descriptions correct?? -->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree ls my-branch</command></para>
+<programlisting>
+ d00644 0 0 0 /
+ -00644 0 0 2 /helloworld.txt
+ d00755 0 0 0 /testdirectory
+</programlisting>
+
+<para>Here, the first column is the file-type symbol (as explained in the DESCRIPTION section) followed by the S_IFMT file type. The next two columns (here: 0 0) are respectively the user ID and group ID for the file. After the break, the next number represents that file's standard size. The final column is the file path.</para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree prune</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree prune</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-prune</refname>
+ <refpurpose>Search for unreachable objects</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree prune</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ This searches for unreachable objects in the current repository. If unreachable objects are found, the command delete them to free space. If the <option>--no-prune</option> option is invoked, the command will just print unreachable objects and recommend deleting them.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--no-prune</option></term>
+
+ <listitem><para>
+ Only display unreachable objects; don't delete.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--refs-only</option></term>
+
+ <listitem><para>
+ Only compute reachability via refs.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--delete-commit</option>=COMMIT</term>
+
+ <listitem><para>
+ Specify a COMMIT to delete.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--keep-younger-than</option>=DATE</term>
+
+ <listitem><para>
+ All commits older than DATE will be pruned.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--depth</option>=DEPTH</term>
+
+ <listitem><para>
+ Only traverse DEPTH (integer) parents for each commit (default: -1=infinite).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--static-deltas-only</option>=DEPTH</term>
+
+ <listitem><para>
+ Change the behaviour of --keep-younger-than and --delete-commit to prune only
+ the static deltas files.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- Can we have an example for when it DOES prune? -->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree prune</command></para>
+<programlisting>
+ Total objects: 25627
+ No unreachable objects
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree pull-local</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree pull-local</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-pull-local</refname>
+ <refpurpose>Copy data from a source repository</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree pull-local</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">SOURCE_REPO</arg> <arg choice="opt" rep="repeat">REFS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Copies data from a given repository; optimized for copies only between repositories on the same system.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--remote</option>="REMOTE"</term>
+
+ <listitem><para>
+ Add REMOTE to refspec.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--disable-fsync</option></term>
+
+ <listitem><para>
+ Do no invoke fsync().
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- This is just copied output. Still not sure entirely what it does. Rework -->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree pull-local /ostree/repo</command></para>
+<programlisting>
+ Enumerating objects...
+ pull: 25709/25709 scanned, 0 objects copied
+ Writing 5 refs
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree pull</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree pull</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-pull</refname>
+ <refpurpose>Download data from a remote repository</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree pull <arg choice="req">REMOTE</arg> <arg choice="opt">BRANCH</arg></command>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--commit-metadata-only</option></term>
+
+ <listitem><para>
+ Fetch only the commit metadata.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--disable-fsync</option></term>
+
+ <listitem><para>
+ Do no invoke fsync().
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--disable-static-deltas</option></term>
+
+ <listitem><para>
+ Do not use static deltas.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--mirror</option></term>
+
+ <listitem><para>
+ Write refs suitable for a mirror.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--subpath</option>=SUBPATH</term>
+
+ <listitem><para>
+ Only pull the provided subpath.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--depth</option>=DEPTH</term>
+
+ <listitem><para>
+ Traverse DEPTH parents (-1=infinite) (default: 0).
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Downloads all content corresponding to the provided branch or commit from the given remote.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+
+ <para><command>$ ostree pull remote_name</command></para>
+ </refsect1>
+
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree refs</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree refs</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-refs</refname>
+ <refpurpose>List refs</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree refs</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="opt">PREFIX</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+<!-- Could this be more specific? What defines a "ref"? etc -->
+ <refsect1>
+ <title>Description</title>
+ <para>
+ Lists all refs available on the host. If pecified, PREFIX assigns the refspec prefix; default prefix is null, which lists all refs.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--delete</option></term>
+
+ <listitem><para>
+ Delete refs which match PREFIX, rather than listing them. If you are trying to reclaim space,
+ you will then need to <command>ostree prune</command> or <command>ostree admin cleanup</command>.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree refs</command></para>
+<programlisting>
+ my-branch
+ gnome-ostree/buildmaster/x86_64-runtime
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree remote</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree remote</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-remote</refname>
+ <refpurpose>Control remote repository configuration</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree remote add</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg> <arg choice="req">URL</arg> <arg choice="opt" rep="repeat">BRANCH</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree remote delete</command> <arg choice="req">NAME</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree remote show-url</command> <arg choice="req">NAME</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree remote list</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree remote gpg-import</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg> <arg choice="opt" rep="repeat">KEY-ID</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree remote refs</command> <arg choice="req">NAME</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree remote summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Changes remote respository configurations. The NAME refers to the name of the remote.
+ </para>
+ <para>
+ The <command>gpg-import</command> subcommand can associate GPG keys to a specific remote respository for use when pulling signed commits from that repository (if GPG verification is enabled).
+ </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.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>'Add' Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--set</option>="KEY=VALUE"</term>
+
+ <listitem><para>
+ Set config option KEY=VALUE for remote.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--no-gpg-verify</option></term>
+
+ <listitem><para>
+ Disable GPG verification.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-import</option>=FILE</term>
+
+ <listitem><para>
+ Import one or more GPG keys from a file.
+ </para><para>
+ Equivalent to
+ <command>ostree remote gpg-import --keyring=FILE</command>.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>'List' Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>-u, --show-urls</option></term>
+
+ <listitem><para>
+ Show remote URLs in list
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>'GPG-Import' Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>-k, --keyring</option>=FILE</term>
+
+ <listitem><para>
+ Import one or more keys from a file.
+ </para><para>
+ This option may be repeated to import from multiple files,
+ but may not be used in combination with
+ <option>--stdin</option>.
+ </para></listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><option>--stdin</option></term>
+
+ <listitem><para>
+ Import one or more keys from standard input.
+ </para><para>
+ This option may not be used in combination with
+ <option>--keyring</option>.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>'Summary' Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--raw</option></term>
+
+ <listitem><para>
+ Show raw variant data
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree remote show-url local</command></para>
+<programlisting>
+ http://192.168.122.1/repo
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree reset</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree reset</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-reset</refname>
+ <refpurpose>Reset a ref to a previous commit</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree reset </command> <arg choice="req">REF</arg> <arg choice="req">REF_TO_RESET_TO</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Given a commit, this command will reset the ref to a previous specified commit.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree log my-branch</command></para>
+<programlisting>
+ commit 67e382b11d213a402a5313e61cbc69dfd5ab93cb07
+ Date: 2014-06-12 13:42:54 +0000
+ This is the second commit
+
+ commit ce19c41036cc45e49b0cecf6b157523c2105c4de1c
+ Date: 2014-06-12 11:20:08 +0000
+ Initial commit
+</programlisting>
+
+<para><command>$ ostree reset my-branch my-branch^</command></para>
+ <para><command>$ ostree log my-branch</command></para>
+<programlisting>
+ commit ce19c41036cc45e49b0cecf6b157523c2105c4de1c
+ Date: 2014-06-12 11:20:08 +0000
+ Initial commit
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree rev-parse</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree rev-parse</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-rev-parse</refname>
+ <refpurpose>Output the target of a rev</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree rev-parse </command> <arg choice="req">REV</arg> <arg choice="req">PATH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+
+<!-- Is this accurate for all cases? This is what I observed -->
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Given a REV, outputs the checksum of the latest commit of that revision.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree rev-parse my-branch</command></para>
+<programlisting>
+ ce19c41036cc45e49b0cecf6b157523c2105c4de1ce30101def1f759daafcc3e
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree show</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree show</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-show</refname>
+ <refpurpose>Output a metadata object</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree show</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">OBJECT</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ Given an object, shows the metadata for that object. For a particular revision, it will show the data for the most recent commit to that revision.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--print-related</option></term>
+
+ <listitem><para>
+ Show the "related" commits.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--print-variant-type</option>="TYPE"</term>
+
+ <listitem><para>
+ Memory map <replaceable>OBJECT</replaceable> (in this case a filename) to the GVariant type string.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--print-metadata-key</option>="KEY"</term>
+
+ <listitem><para>
+ Print string value of metadata key.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--print-detached-metadata-key</option>="KEY"</term>
+
+ <listitem><para>
+ Print string value of detached metadata key.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--raw</option></term>
+
+ <listitem><para>
+ Show raw variant data.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-homedir</option>="HOMEDIR"</term>
+
+ <listitem><para>
+ GPG home directory to use when looking for keyrings (if have GPGME - GNU Privacy Guard Made Easy).
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree show my-branch</command></para>
+<programlisting>
+ commit 67e382b11d213a402a5313e61cbc69dfd5ab93cb07
+ Date: 2014-06-12 13:42:54 +0000
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree static-delta</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree static-delta</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-static-delta</refname>
+ <refpurpose>Manage static delta files</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree static-delta list</command>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree static-delta generate</command> <arg choice="req">--to=REV</arg> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>ostree static-delta apply-offline</command> <arg choice="req">PATH</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ List and manipulate static delta files.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>'Generate' Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--from</option>="REV"</term>
+
+ <listitem><para>
+ Create delta from revision REV.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--to</option>="REV"</term>
+
+ <listitem><para>
+ Create delta to revision REV. (This option is required.)
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--empty</option></term>
+
+ <listitem><para>
+ Create delta from scratch.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--max-usize</option>=SIZE</term>
+
+ <listitem><para>
+ Maximum uncompressed size in megabytes.
+ </para></listitem>
+ </varlistentry>
+
+ </variablelist>
+ </refsect1>
+
+<!-- Can we have an example for when it actually does something?-->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree static-delta</command></para>
+<programlisting>
+ (No static deltas)
+</programlisting>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Colin Walters <walters@verbum.org>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree summary</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree summary</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-summary</refname>
+ <refpurpose>Regenerate the summary metadata file</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ The <filename>summary</filename> file is an optional higher
+ level form of repository metadata that describes the
+ available branches. It needs to be manually regenerated after
+ a series of commits. Among other things, this allows atomically
+ updating multiple commits.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>-u</option></term>
+
+ <listitem><para>
+ Update the summary file.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-sign</option>=KEYID</term>
+
+ <listitem><para>
+ GPG Key ID to sign the delta with.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--gpg-homedir</option>=HOMEDIR</term>
+
+ <listitem><para>
+ GPG Homedir to use when looking for keyrings.
+ </para></listitem>
+ </varlistentry>
+
+ </variablelist>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2011,2013 Colin Walters <walters@verbum.org>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree trivial-httpd</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree trivial-httpd</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree-trivial-httpd</refname>
+ <refpurpose>Simple webserver</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree trivial-httpd</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="opt">DIR</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+<!-- Don't entirely understand this command. Needs details, better content-->
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ This runs a simple webserver and keeps it running until killed. If DIR is not specified, it defaults to the current directory.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--daemonize</option>,<option>-d</option></term>
+
+ <listitem><para>
+ Fork into background when ready.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--autoexit</option></term>
+
+ <listitem><para>
+ Automatically exit when directory is deleted.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--port-file</option>,<option>-p</option>="PATH"</term>
+
+ <listitem><para>
+ Write port number to PATH (- for standard output).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--port</option>,<option>-P</option></term>
+
+ <listitem><para>
+ Use the specified TCP port to listen on.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>--force-range-requests</option></term>
+
+ <listitem><para>
+ Force range requests by only serving half of files.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+<!-- NEED EXAMPLE OUTPUT HERE!-->
+ <refsect1>
+ <title>Example</title>
+ <para><command>$ ostree trivial-httpd</command></para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2014 Colin Walters <walters@verbum.org>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree.repo-config">
+
+ <refentryinfo>
+ <title>ostree.repo-config</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree.repo-config</refentrytitle>
+ <manvolnum>5</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree.repo-config</refname>
+ <refpurpose>OSTree repository configuration</refpurpose>
+ </refnamediv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ The <filename>config</filename> file in an OSTree
+ repository is a "keyfile" in the <ulink
+ url="http://standards.freedesktop.org/desktop-entry-spec/latest/">XDG
+ Desktop Entry Specification</ulink> format. It has
+ several global flags, as well as zero or more remote
+ entries which describe how to access remote
+ repositories.
+ </para>
+
+ <para>
+ See <citerefentry><refentrytitle>ostree.repo</refentrytitle><manvolnum>5</manvolnum></citerefentry> for more information
+ about OSTree repositories.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>[core] Section Options</title>
+
+ <para>
+ Repository-global options. The following entries are defined:
+ </para>
+
+ <variablelist>
+ <varlistentry>
+ <term><varname>mode</varname></term>
+ <listitem><para>One of <literal>bare</literal> or <literal>archive-z2</literal>. </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>repo_version</varname></term>
+ <listitem><para>Currently, this must be set to <literal>1</literal>.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>commit-update-summary</varname></term>
+ <listitem><para>Boolean value controlling whether or not to
+ automatically update the summary file after a commit. Defaults
+ to <literal>false</literal>.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>fsync</varname></term>
+ <listitem><para>Boolean value controlling whether or not to
+ ensure files are on stable storage when performing operations
+ such as commits, pulls, and checkouts. Defaults to
+ <literal>true</literal>.</para>
+ <para>
+ If you disable fsync, OSTree will no longer be robust
+ against kernel crashes or power loss.
+ </para>
+ <para>
+ You might choose to disable this for local development
+ repositories, under the assumption they can be recreated from
+ source. Similarly, you could disable for a mirror where you could
+ re-pull.
+ </para>
+ <para>
+ For the system repository, you might choose to disable fsync
+ if you have uninterruptable power supplies and a well tested
+ kernel.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>[remote "name"] Section Options</title>
+
+ <para>
+ Describes a remote repository location.
+ </para>
+
+ <variablelist>
+ <varlistentry>
+ <term><varname>url</varname></term>
+ <listitem><para>Must be present; declares URL for accessing
+ this remote. The only supported schemes are the moment are
+ <literal>file</literal>, <literal>http</literal>, and
+ <literal>https</literal>.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>proxy</varname></term>
+ <listitem><para>A string value, if given should be a URL for a
+ HTTP proxy to use for access to this repository.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>gpg-verify</varname></term>
+ <listitem><para>A boolean value, defaults to true.
+ Controls whether or not OSTree will require commits to be
+ signed by a known GPG key. For more information, see the
+ <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>
+ manual under GPG.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>gpg-verify-summary</varname></term>
+ <listitem><para>A boolean value, defaults to false.
+ Controls whether or not OSTree will check if the summary
+ is signed by a known GPG key.
+ For more information, see the <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>
+ manual under GPG.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>tls-permissive</varname></term>
+ <listitem><para>A boolean value, defaults to false. By
+ default, server TLS certificates will be checked against the
+ system certificate store. If this variable is set, any
+ certificate will be accepted.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>tls-client-cert-path</varname></term>
+ <listitem><para>Path to file for client-side certificate, to present when making requests to this repository.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>tls-client-key-path</varname></term>
+ <listitem><para>Path to file containing client-side certificate key, to present when making requests to this repository.</para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>tls-ca-path</varname></term>
+ <listitem><para>Path to file containing trusted anchors instead of the system CA database.</para></listitem>
+ </varlistentry>
+ </variablelist>
+
+ </refsect1>
+
+ <refsect1>
+ <title>/etc/ostree/remotes.d</title>
+
+ <para>
+ In addition to the <filename>/ostree/repo/config</filename>
+ file, remotes may also be specified in
+ <filename>/etc/ostree/remotes.d</filename>. The remote
+ configuration file must end in <literal>.conf</literal>; files
+ whose name does not end in <literal>.conf</literal> will be
+ ignored.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>See Also</title>
+ <para>
+ <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>, <citerefentry><refentrytitle>ostree.repo</refentrytitle><manvolnum>5</manvolnum></citerefentry>
+ </para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+ Copyright 2014 Colin Walters <walters@verbum.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree.repo">
+
+ <refentryinfo>
+ <title>ostree.repo</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree.repo</refentrytitle>
+ <manvolnum>5</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree.repo</refname>
+ <refpurpose>OSTree repository configuration and layout</refpurpose>
+ </refnamediv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ An OSTree repository is structurally similar to a
+ git repository; it is a content-addressed object
+ store containing filesystem trees. However, unlike
+ git, ostree is designed to store operating system
+ binaries. It records the Unix uid and gid,
+ permissions, as well as extended attributes.
+ </para>
+
+ <para>
+ A repository can be in one of two modes;
+ <literal>bare</literal>, which is designed as a hard
+ link source for operating system checkouts, and
+ <literal>archive-z2</literal>, which is designed for
+ static HTTP servers.
+ </para>
+
+ <para>
+ There is a system repository located at
+ <filename>/ostree/repo</filename>. If no repository
+ is specified -- either by a command-line option or the
+ <envar>OSTREE_REPO</envar> environment variable --
+ the <command>ostree</command> as well as many API
+ calls will use it by default.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Components of a repository</title>
+
+ <para>
+ The only user-editable component is the
+ <filename>config</filename> file. For more
+ information, see <citerefentry><refentrytitle>ostree.repo-config</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>See Also</title>
+ <para>
+ <citerefentry><refentrytitle>ostree</refentrytitle><manvolnum>1</manvolnum></citerefentry>, <citerefentry><refentrytitle>ostree.repo-config</refentrytitle><manvolnum>1</manvolnum></citerefentry>
+ </para>
+ </refsect1>
+</refentry>
--- /dev/null
+<?xml version='1.0'?> <!--*-nxml-*-->
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
+
+<!--
+Copyright 2011,2013 Colin Walters <walters@verbum.org>
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+-->
+
+<refentry id="ostree">
+
+ <refentryinfo>
+ <title>ostree</title>
+ <productname>OSTree</productname>
+
+ <authorgroup>
+ <author>
+ <contrib>Developer</contrib>
+ <firstname>Colin</firstname>
+ <surname>Walters</surname>
+ <email>walters@verbum.org</email>
+ </author>
+ </authorgroup>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>ostree</refentrytitle>
+ <manvolnum>1</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>ostree</refname>
+ <refpurpose>Manage multiple bootable versioned filesystem trees</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <cmdsynopsis>
+ <command>ostree</command>
+ <arg choice="req">COMMAND</arg> <arg choice="opt" rep="repeat">OPTIONS</arg>
+ </cmdsynopsis>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>
+ OSTree is a tool for managing multiple bootable
+ versioned filesystem trees, or just "tree" for
+ short. In the OSTree model, operating systems no
+ longer live in the physical "/" root directory.
+ Instead, they parallel install to the new toplevel
+ <filename>/ostree</filename> directory. Each
+ installed system gets its own
+ <filename>/ostree/deploy/<replaceable>osname</replaceable></filename>
+ directory.
+ </para>
+ <para>
+ Unlike <literal>rpm</literal> or
+ <literal>dpkg</literal>, OSTree is only aware of
+ complete filesystem trees. It has no built-in
+ knowledge of what components went into creating the
+ filesystem tree.
+ </para>
+ <para>
+ It is possible to use OSTree in several modes; the
+ most basic form is to replicate pre-built trees from
+ a build server. Usually, these pre-built trees are
+ derived from packages. You might also be using
+ OSTree underneath a higher level tool which computes
+ filesystem trees locally.
+ </para>
+ <para>
+ It must be emphasized that OSTree only supports
+ <emphasis>read-only</emphasis> trees. To change to
+ a different tree (upgrade, downgrade, install
+ software), a new tree is checked out, and a 3-way
+ merge of configuration is performed. The currently
+ running tree is not ever modified; the new tree will
+ become active on a system reboot.
+ </para>
+
+ <para>
+ To see the man page for a command run <command>man ostree <replaceable>COMMAND</replaceable></command> or <command>man ostree-admin <replaceable>COMMAND</replaceable></command>
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>Options</title>
+
+ <para>The following options are understood:</para>
+
+ <variablelist>
+ <varlistentry>
+ <term><option>--repo</option></term>
+
+ <listitem><para>
+ For most commands,
+ when run as non-root, repository is
+ required. If
+ <command>ostree</command> is run as
+ root, it is assumed operations will be
+ performed on the
+ <filename>/sysroot/ostree/repo</filename>
+ repository.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><option>-v, --verbose</option></term>
+
+ <listitem><para>
+ Produce debug level output.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Commands</title>
+
+ <para>System administrators will primarily interact
+ with OSTree via the subcommand <command>ostree
+ admin</command>.</para>
+
+ <variablelist>
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-cleanup</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Delete untagged
+ deployments and repository objects.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-config-diff</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ See changes to
+ <filename>/etc</filename> as compared
+ to the current default (from
+ <filename>/usr/etc</filename>).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-deploy</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Takes a particular
+ commit or revision, and sets it up for
+ the next boot.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-init-fs</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Initialize a root filesystem
+ in a specified path.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-instutil</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Utility functions intended primarily for operating system installation programs
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-os-init</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Initialize the
+ deployment location for an operating
+ system with a specified name.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-status</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Show and list the deployments.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-switch</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Choose a different ref
+ to track from the same remote as the
+ current tree.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-undeploy</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Remove the previously
+ <replaceable>INDEX</replaceable>
+ deployed tree from the bootloader
+ configuration.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-admin-upgrade</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Download the latest version for the
+ current ref, and deploy it.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+
+ <para>Both administrators and operating system
+ builders may interact with OSTree via the regular
+ filesystem manipulation commands.
+ </para>
+
+ <variablelist>
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-cat</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Concatenate contents of files
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-checkout</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Check out a commit into a filesystem tree.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-checksum</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Gives checksum of any file.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-commit</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Given one or more
+ trees, create a new commit using those contents.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-config</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Change settings.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-diff</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Concisely list
+ differences between the given refs.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-fsck</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Check a repository for consistency.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-init</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Initialize a new repository.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-log</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Show revision log.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-ls</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ List the contents of a given commit.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-prune</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Search for unreachable objects.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-pull-local</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Copy data from source-repo.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-pull</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Download data from remote repo. If you have libsoup.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-refs</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ List refs.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-remote</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Manipulate remote archive configuration.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-reset</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Reset a ref to a previous commit.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-rev-parse</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Show the SHA256 corresponding to a given rev.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-show</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Given an OSTree SHA256 checksum, display its contents.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-static-delta</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Manage static delta files.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-summary</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Regenerate the repository summary metadata.
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><citerefentry><refentrytitle>ostree-trivial-httpd</refentrytitle><manvolnum>1</manvolnum></citerefentry></term>
+
+ <listitem><para>
+ Simple webserver.
+ </para></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Examples</title>
+ <para>
+ For specific examples, please see the man page regarding the specific ostree command. For example:
+ </para>
+ <para>
+ <command>man ostree init</command> or <command>man ostree-admin status</command>
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>GPG verification</title>
+
+ <para>
+ OSTree supports signing commits with GPG. The set of
+ trusted public keys is stored as keyring files in
+ <filename>/usr/share/ostree/trusted.gpg.d</filename>. Any
+ public key in a keyring file in that directory will be
+ trusted by the client. No private keys should be present
+ in this directory.
+ </para>
+ </refsect1>
+
+ <refsect1>
+ <title>See Also</title>
+ <para>
+ <citerefentry><refentrytitle>ostree.repo</refentrytitle><manvolnum>5</manvolnum></citerefentry>
+ </para>
+ </refsect1>
+</refentry>