Revision 67c15d8b

b/Makefile.am
1293 1293
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1294 1294
	@test -n "$(PANDOC)" || \
1295 1295
	  { echo 'pandoc' not found during configure; exit 1; }
1296
	set -o pipefail ; \
1296
	set -o pipefail -e; \
1297 1297
	trap 'echo auto-removing $@; rm $@' EXIT; \
1298 1298
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1299 1299
	  sed -e 's/\\@/@/g' > $@; \
b/autotools/check-man-dashes
1 1
#!/bin/bash
2 2
#
3 3

  
4
# Copyright (C) 2012 Google Inc.
4
# Copyright (C) 2012, 2013 Google Inc.
5 5
#
6 6
# This program is free software; you can redistribute it and/or modify
7 7
# it under the terms of the GNU General Public License as published by
......
20 20

  
21 21
set -e
22 22

  
23
! grep -F -q '\[em]' "$1" || \
23
! grep -F '\[em]' "$1" || \
24 24
  { echo "Unescaped dashes found in $1, use \\-- instead of --" 1>&2; exit 1; }
b/man/gnt-job.rst
53 53
CHANGE-PRIORITY
54 54
~~~~~~~~~~~~~~~
55 55

  
56
| **change-priority** --priority {low | normal | high}
56
| **change-priority** \--priority {low | normal | high}
57 57
| {[\--force] {\--pending | \--queued | \--waiting} | *job-id* ...}
58 58

  
59 59
Changes the priority of one or multiple pending jobs. Jobs currently
b/man/gnt-network.rst
26 26
~~~
27 27

  
28 28
| **add**
29
| [--network=*NETWORK*]
30
| [--gateway=*GATEWAY*]
31
| [--add-reserved-ips=*RESERVEDIPS*]
32
| [--network6=*NETWORK6*]
33
| [--gateway6=*GATEWAY6*]
34
| [--mac-prefix=*MACPREFIX*]
35
| [--submit]
29
| [\--network=*NETWORK*]
30
| [\--gateway=*GATEWAY*]
31
| [\--add-reserved-ips=*RESERVEDIPS*]
32
| [\--network6=*NETWORK6*]
33
| [\--gateway6=*GATEWAY6*]
34
| [\--mac-prefix=*MACPREFIX*]
35
| [\--submit]
36 36
| {*network*}
37 37

  
38 38
Creates a new network with the given name. The network will be unused
......
62 62
~~~~~~
63 63

  
64 64
| **modify**
65
| [--gateway=*GATEWAY*]
66
| [--add-reserved-ips=*RESERVEDIPS*]
67
| [--remove-reserved-ips=*RESERVEDIPS*]
68
| [--network6=*NETWORK6*]
69
| [--gateway6=*GATEWAY6*]
70
| [--mac-prefix=*MACPREFIX*]
71
| [--submit]
65
| [\--gateway=*GATEWAY*]
66
| [\--add-reserved-ips=*RESERVEDIPS*]
67
| [\--remove-reserved-ips=*RESERVEDIPS*]
68
| [\--network6=*NETWORK6*]
69
| [\--gateway6=*GATEWAY6*]
70
| [\--mac-prefix=*MACPREFIX*]
71
| [\--submit]
72 72
| {*network*}
73 73

  
74 74
Modifies parameters from the network.
......
83 83
REMOVE
84 84
~~~~~~
85 85

  
86
| **remove** [--submit] {*network*}
86
| **remove** [\--submit] {*network*}
87 87

  
88 88
Deletes the indicated network, which must be not connected to any node group.
89 89

  
......
92 92
LIST
93 93
~~~~
94 94

  
95
| **list** [--no-headers] [--separator=*SEPARATOR*] [-v]
95
| **list** [\--no-headers] [\--separator=*SEPARATOR*] [-v]
96 96
| [-o *[+]FIELD,...*] [network...]
97 97

  
98 98
Lists all existing networks in the cluster. If no group names are given,
b/man/gnt-node.rst
585 585
RESTRICTED-COMMAND
586 586
~~~~~~~~~~~~~~~~~~
587 587

  
588
| **restricted-command** [-M] [--sync]
588
| **restricted-command** [-M] [\--sync]
589 589
| { -g *group* *command* | *command* *nodes*... }
590 590

  
591 591
Executes a restricted command on the specified nodes. Restricted commands are

Also available in: Unified diff