about summary refs log tree commit diff
path: root/pause.1
blob: 1e56f20a2697efb734a0c30a0ae5d6ce3fb52e1c (plain) (blame)
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
.Dd September 27, 2012
.Dt PAUSE 1
.Os Linux
.Sh NAME
.Nm pause
.Nd don't exit, efficiently
.Sh SYNOPSIS
.Nm pause
.Sh DESCRIPTION
.Nm pause
waits to be terminated by a signal.
It can be used when service supervision is used but there is no
long-running program to supervise.
.Nm pause
uses minimal system resources.
.Sh EXAMPLES
Setting up a static IP address with
.Xr plugsv 8 .
.Pp
.Pa /etc/netsv/eth0/run :
.Bd -literal -offset indent
#!/bin/sh
ip link set eth0 up
ip addr add 192.0.2.1/24 dev eth0
exec pause
.Ed
.Pp
.Pa /etc/netsv/eth0/finish :
.Bd -literal -offset indent
#!/bin/sh
ip addr del 192.0.2.1/24 dev eth0
ip link set eth0 down
.Ed
.Sh SEE ALSO
.Xr sleep 1 ,
.Xr pause 2
.Sh AUTHOR
.An Leah Neukirchen ,
.Mt leah@vuxu.org .