View | Details | Raw Unified | Return to bug 8568
Collapse All | Expand All

(-)a/debian/docs/koha-common.xml (+14 lines)
Lines 32-37 Link Here
32
    <variablelist>
32
    <variablelist>
33
33
34
      <varlistentry>
34
      <varlistentry>
35
        <term><option>koha-create</option></term>
36
        <listitem>
37
          <para>Create new Koha instances.</para>
38
        </listitem>
39
      </varlistentry>
40
41
      <varlistentry>
35
        <term><option>koha-disable</option></term>
42
        <term><option>koha-disable</option></term>
36
        <listitem>
43
        <listitem>
37
          <para>Disable a Koha instance.</para>
44
          <para>Disable a Koha instance.</para>
Lines 60-65 Link Here
60
      </varlistentry>
67
      </varlistentry>
61
68
62
      <varlistentry>
69
      <varlistentry>
70
        <term><option>koha-run-backups</option></term>
71
        <listitem>
72
          <para>Performs backups of the koha installations on the system, except an instance called 'demo'.</para>
73
        </listitem>
74
      </varlistentry>
75
76
      <varlistentry>
63
        <term><option>koha-remove</option></term>
77
        <term><option>koha-remove</option></term>
64
        <listitem>
78
        <listitem>
65
          <para>Remove a Koha instance.</para>
79
          <para>Remove a Koha instance.</para>
(-)a/debian/docs/koha-foreach.xml (-1 / +1 lines)
Lines 23-29 Link Here
23
23
24
  <refsynopsisdiv>
24
  <refsynopsisdiv>
25
    <cmdsynopsis>
25
    <cmdsynopsis>
26
      <command>koha-list</command> <arg><option>--enabled</option></arg> <arg><option>--email</option>|<option>--noemail</option></arg> <arg><option>command</option></arg>
26
      <command>koha-foreach</command> <arg><option>--enabled</option></arg> <arg><option>--email</option>|<option>--noemail</option></arg> <arg><option>command</option></arg>
27
    </cmdsynopsis>
27
    </cmdsynopsis>
28
  </refsynopsisdiv>
28
  </refsynopsisdiv>
29
29
(-)a/debian/docs/koha-run-backups.xml (-1 / +69 lines)
Line 0 Link Here
0
- 
1
<article xmlns='http://docbook.org/ns/docbook'>
2
<title>koha-run-backups</title>
3
<info>
4
<productname>Koha</productname> is the first free software library automation package.
5
<author>
6
  <orgname>The Koha Communnity</orgname>
7
  <uri>http://koha-community.org/</uri>
8
</author>
9
</info>
10
11
<refentry xml:id="koha-run-backups">
12
13
  <refmeta>
14
    <refentrytitle>koha-run-backups</refentrytitle>
15
    <manvolnum>8</manvolnum>
16
  </refmeta>
17
18
  <refnamediv>
19
    <refname>koha-run-backups</refname>
20
    <refpurpose>Performs backups of the koha installations on the system, except an instance called 'demo'.</refpurpose>
21
    <refclass>UNIX/Linux</refclass>
22
  </refnamediv>
23
24
  <refsynopsisdiv>
25
    <cmdsynopsis>
26
      <command>koha-run-backups</command>
27
      <arg><option>--output</option> /some/path</arg>
28
      <arg><option>--days</option> 2</arg>
29
    </cmdsynopsis>
30
  </refsynopsisdiv>
31
  
32
  <refsect1><title>Options</title>
33
  <variablelist>
34
    
35
    <varlistentry>
36
      <term><option>--output</option></term>
37
      <listitem>
38
        <para>The directory that the resulting files will be placed into (default: /var/spool/koha).</para>
39
      </listitem>
40
    </varlistentry>
41
    
42
    <varlistentry>
43
      <term><option>--days</option></term>
44
      <listitem>
45
        <para>The number of days to keep backups around for (default: 2).</para>
46
      </listitem>
47
    </varlistentry>
48
49
  </variablelist>
50
  </refsect1>
51
  
52
  <refsect1><title>Description</title>
53
    <para><command>koha-run-backups</command> allows automation of backing up the koha data and configuration to the filesystem. It will keep the past so many backups, discarding older ones. This script uses <command>koha-dump</command> to do the actual backup.</para>
54
    <para>If there is an instance called 'demo', it will be skipped by this script.</para>
55
    <para>Note: backups produced using this tool can be restored using <command>koha-restore</command>.</para>
56
  </refsect1>
57
58
  <refsect1><title>See also</title>
59
60
  <simplelist type="inline">
61
    <member><command>koha-dump(8)</command></member>
62
    <member><command>koha-restore(8)</command></member>
63
  </simplelist>
64
65
  </refsect1>
66
67
</refentry>
68
69
</article>

Return to bug 8568