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

(-)a/debian/docs/koha-plack.xml (+8 lines)
Lines 28-33 Link Here
28
        <option>--start</option>|
28
        <option>--start</option>|
29
        <option>--stop</option>|
29
        <option>--stop</option>|
30
        <option>--restart</option>|
30
        <option>--restart</option>|
31
        <option>--reload</option>|
31
        <option>--enable</option>|
32
        <option>--enable</option>|
32
        <option>--disable</option>|
33
        <option>--disable</option>|
33
        <option>--help</option>|<option>-h</option>
34
        <option>--help</option>|<option>-h</option>
Lines 62-67 Link Here
62
      </listitem>
63
      </listitem>
63
    </varlistentry>
64
    </varlistentry>
64
65
66
    <varlistentry>
67
      <term><option>--reload</option></term>
68
      <listitem>
69
        <para>Reload the Plack daemon for the desired Koha instances, letting the busy workers finish processing their requests before restarting them.</para>
70
      </listitem>
71
    </varlistentry>
72
65
    <varlistentry>
73
    <varlistentry>
66
      <term><option>--enable</option></term>
74
      <term><option>--enable</option></term>
67
      <listitem>
75
      <listitem>
(-)a/debian/scripts/koha-plack (-2 / +4 lines)
Lines 43-55 $scriptname Link Here
43
This script lets you manage the plack daemons for your Koha instances.
43
This script lets you manage the plack daemons for your Koha instances.
44
44
45
Usage:
45
Usage:
46
$scriptname --start|--stop|--restart [--quiet|-q] instancename1 [instancename2...]
46
$scriptname --start|--stop|--restart|--reload [--quiet|-q] instancename1 [instancename2...]
47
$scriptname --enable|--disable instancename1 [instancename2]
47
$scriptname --enable|--disable instancename1 [instancename2]
48
$scriptname -h|--help
48
$scriptname -h|--help
49
49
50
    --start               Start the plack daemon for the specified instances
50
    --start               Start the plack daemon for the specified instances
51
    --stop                Stop the plack daemon for the specified instances
51
    --stop                Stop the plack daemon for the specified instances
52
    --restart             Restart the plack daemon for the specified instances
52
    --restart             Restart the plack daemon for the specified instances
53
    --reload              Reload the plack daemon for the specified instances,
54
                          letting the busy workers finish processing their
55
                          requests before restarting them
53
    --enable              Enable plack for the specified instances
56
    --enable              Enable plack for the specified instances
54
    --disable             Disable plack for the specified instances
57
    --disable             Disable plack for the specified instances
55
    --debugger            Enable running Plack in debug mode
58
    --debugger            Enable running Plack in debug mode
56
- 

Return to bug 21366