1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
'\" e
.\" SuSE man page for startpar
.\"
.\" Copyright (c) 2003 SuSE Linux AG, Nuernberg, Germany.
.\"
.\" This program is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 2, or (at your option)
.\" any later version.
.\"
.\" This program 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 General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program (see the file COPYING); if not, write to the
.\" Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
.\" MA 02110-1301, USA.
.\"
.\" Author: Michael Schroeder <mls@suse.de>
.\"
.TH STARTPAR 1 "Mar 2019"
.SH NAME
startpar \- start runlevel scripts in parallel
.SH SYNOPSIS
.B startpar
.RB [ \-p
.IR par ]
.RB [ \-i
.IR iorate ]
.RB [ \-e
.IR etcdir ]
.RB [ \-n ]
.RB [ \-t
.IR timeout ]
.RB [ \-T
.IR global_timeout ]
.RB [ \-a
.IR arg ]
.B prg1
.B prg2
.B ...
.br
.B startpar
.RB [ \-p
.IR par ]
.RB [ \-i
.IR iorate ]
.RB [ \-n ]
.RB [ \-t
.IR timeout ]
.RB [ \-T
.IR global_timeout ]
.B \-M [
.IR boot | start | stop ]
.br
.B startpar
.RB [ -f ]
.br
.B startpar
.RB [ -v ]
.br
.SH DESCRIPTION
startpar is used to run multiple run\-level scripts in parallel.
The degree of parallelism on one
.B CPU
can be set with the
.B \-p
option, the default is full parallelism. An argument to all of
the scripts can be provided with the
.B \-a
option.
Processes blocked by pending
.B I/O
will cause new process creation to be weighted by the iorate factor
.IR 800 .
To change this factor the option
.B \-i
can be used to specify another value. The amount
.EQ
weight = (nblocked times iorate) / 1000
.EN
will be subtracted from the total number of processes which could be
started, where nblocked is the number of processes currently blocked
by pending I/O.
The output of each script is buffered and written when the script
exits, so output lines of different scripts won't mix. You can
modify this behaviour by setting a timeout.
The timeout set with the
.B \-t
option is used as buffer timeout. If the output buffer of a
script is not empty and the last output was
.I timeout
seconds ago, startpar will flush the buffer.
The
.B \-T
option timeout works more globally. If no output is printed for
more than
.I global_timeout
seconds, startpar will flush the buffer of the script with
the oldest output. Afterwards it will only print output of this
script until it is finished.
When the
.B \-n
flag is used, output from a running job is prefixed with the name
of the program or script being run.
The
.B \-M
option switches
.B startpar
into a
.BR make (1)
like behaviour. This option takes three different arguments:
.IR boot ", " start ", and " stop
for reading
.IR .depend.boot " or " .depend.start " or " .depend.stop
respectively in the directory
.IR /etc/init.d/ .
By scanning the boot and runlevel scripts in
.I /etc/init.d/
it then executes the appropriate scripts in parallel.
The
.B \-e
option allows the user to set the location of the system's etc configuration
directory. The default is to use /etc. Using \-e we can use alternative locations
such as /usr/local/etc.
The
.B \-f
option causes startpar to copy standard input (stdin) to standard output (stdout)
until startpar reaches the end of input or the process is killed. When \-f
is used no programs are started and other parameters on the command line are
ignored. This option is only kept for legacy purposes.
The
.B \-v
option tells startpar to print its name and version number. When the
version flag is used, all other command line parameters are ignored.
The version number will be printed and startpar then immediately exits.
.SH FILES
.I /etc/init.d/.depend.boot
.br
.I /etc/init.d/.depend.start
.br
.I /etc/init.d/.depend.stop
.SH SEE ALSO
.BR init (8),
.BR insserv (8),
.SH COPYRIGHT
2003,2004 SuSE Linux AG, Nuernberg, Germany.
.br
2007 SuSE LINUX Products GmbH, Nuernberg, Germany.
.br
2019 Jesse Smith
.SH AUTHOR
Michael Schroeder <mls@suse.de>
.br
Takashi Iwai <tiwai@suse.de>
.br
Werner Fink <werner@suse.de>
|