blob: efd383224341634d0007dd66db8e9f5fb83ec99c (
plain)
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
|
/* ISC license. */
#include <unistd.h>
#include <skalibs/sgetopt.h>
#include <skalibs/strerr2.h>
#include <skalibs/djbunix.h>
#define USAGE "s6-setsid [ -i | -I ] prog..."
int main (int argc, char const *const *argv, char const *const *envp)
{
int insist = 0 ;
PROG = "s6-setsid" ;
for (;;)
{
register int opt = subgetopt(argc, argv, "iI") ;
if (opt == -1) break ;
switch (opt)
{
case 'i' : insist = 1 ; break ;
case 'I' : insist = 0 ; break ;
default : strerr_dieusage(100, USAGE) ;
}
}
argc -= subgetopt_here.ind ; argv += subgetopt_here.ind ;
if (!argc) strerr_dieusage(100, USAGE) ;
if (setsid() < 0)
{
if (insist) strerr_diefu1sys(111, "setsid") ;
else strerr_warnwu1sys("setsid") ;
}
pathexec_run(argv[0], argv, envp) ;
strerr_dieexec(111, argv[0]) ;
}
|