redirect /sbin/service sshd condrestart std{out,err} to /dev/null when executed from glibc_post_upgrade

This commit is contained in:
Jakub Jelinek 2006-08-03 18:17:21 +00:00
parent 6e3ba1514c
commit 98d2266156
2 changed files with 17 additions and 2 deletions

View File

@ -1439,6 +1439,8 @@ rm -f *.filelist*
%changelog
- fix memusage and xtrace scripts (#200736)
- redirect /sbin/service sshd condrestart std{out,err} to /dev/null
when executed from glibc_post_upgrade
* Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
- typo fix for the dladdr patch

View File

@ -145,7 +145,7 @@ main (void)
&& access ("/bin/bash", X_OK) == 0)
{
if (check_elf ("/usr/sbin/sshd"))
verbose_exec (121, "/sbin/service", "/sbin/service", "sshd", "condrestart");
verbose_exec (-121, "/sbin/service", "/sbin/service", "sshd", "condrestart");
}
_exit(0);
@ -210,10 +210,23 @@ vexec (int failcode, char *const path[])
{
pid_t pid;
int status, save_errno;
int devnull = 0;
if (failcode < 0)
{
devnull = 1;
failcode = -failcode;
}
pid = vfork ();
if (pid == 0)
{
{
int fd;
if (devnull && (fd = open ("/dev/null", O_WRONLY)) >= 0)
{
dup2 (fd, 1);
dup2 (fd, 2);
close (fd);
}
execv (path[0], path + 1);
save_errno = errno;
message (path);