mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
redirect /sbin/service sshd condrestart std{out,err} to /dev/null when executed from glibc_post_upgrade
This commit is contained in:
parent
6e3ba1514c
commit
98d2266156
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user