2006-06-03 19:49:21 +00:00
|
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-08-01 22:52:09 +00:00
|
|
|
|
/*
|
|
|
|
|
* setsid.c -- execute a command in a new session
|
|
|
|
|
* Rick Sladkey <jrs@world.std.com>
|
|
|
|
|
* In the public domain.
|
|
|
|
|
*
|
|
|
|
|
* 1999-02-22 Arkadiusz Mi<EFBFBD>kiewicz <misiek@pld.ORG.PL>
|
|
|
|
|
* - added Native Language Support
|
|
|
|
|
*
|
|
|
|
|
* 2001-01-18 John Fremlin <vii@penguinpowered.com>
|
|
|
|
|
* - fork in case we are process group leader
|
|
|
|
|
*
|
|
|
|
|
* 2004-11-12 Paul Fox
|
|
|
|
|
* - busyboxed
|
|
|
|
|
*/
|
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
|
#include "libbb.h"
|
2005-08-01 22:52:09 +00:00
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
|
int setsid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2007-04-04 20:52:03 +00:00
|
|
|
|
int setsid_main(int argc, char **argv)
|
2006-03-23 02:07:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (argc < 2)
|
2005-08-01 22:52:09 +00:00
|
|
|
|
bb_show_usage();
|
|
|
|
|
|
2007-03-26 13:35:09 +00:00
|
|
|
|
/* Comment why is this necessary? */
|
|
|
|
|
if (getpgrp() == getpid())
|
|
|
|
|
forkexit_or_rexec(argv);
|
2005-08-01 22:52:09 +00:00
|
|
|
|
|
|
|
|
|
setsid(); /* no error possible */
|
|
|
|
|
|
2007-02-06 01:20:12 +00:00
|
|
|
|
BB_EXECVP(argv[1], argv + 1);
|
2007-10-01 11:58:38 +00:00
|
|
|
|
bb_simple_perror_msg_and_die(argv[1]);
|
2005-08-01 22:52:09 +00:00
|
|
|
|
}
|