aboutsummaryrefslogtreecommitdiff
path: root/repos/core/busybox/pause.1
diff options
context:
space:
mode:
authorWoodpecker CI <emmett1.2miligrams@protonmail.com>2026-05-24 15:40:32 +0000
committerWoodpecker CI <emmett1.2miligrams@protonmail.com>2026-05-24 15:40:32 +0000
commitdea2a1fa20fc8e843cd85e5920a67b9054d00b2e (patch)
treef331ff92dc5fd26f5803b483a24a0a21fd9bb97a /repos/core/busybox/pause.1
parentef5bfeb93345a5a681d88e99775622bf28defd8d (diff)
downloadalicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.tar.gz
alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.zip
Woodpecker CI ef5bfeb93345a5a681d88e99775622bf28defd8d [SKIP CI]
Diffstat (limited to 'repos/core/busybox/pause.1')
-rw-r--r--repos/core/busybox/pause.139
1 files changed, 0 insertions, 39 deletions
diff --git a/repos/core/busybox/pause.1 b/repos/core/busybox/pause.1
deleted file mode 100644
index 1e56f20a..00000000
--- a/repos/core/busybox/pause.1
+++ /dev/null
@@ -1,39 +0,0 @@
-.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 .