Remove sshd restart from glibc_post_upgrade

/etc/rc.d/init.d/sshd no longer exists in Fedora, so the code never
runs.
This commit is contained in:
Florian Weimer 2018-05-16 14:55:29 +02:00
parent 890019ecf2
commit 189f35b396
1 changed files with 0 additions and 10 deletions

View File

@ -163,16 +163,6 @@ main (void)
if (check_elf ("/proc/1/exe"))
verbose_exec (116, "/sbin/telinit", "/sbin/telinit", "u");
/* Check if we can safely condrestart sshd. */
if (access ("/sbin/service", X_OK) == 0
&& access ("/usr/sbin/sshd", X_OK) == 0
&& access ("/etc/rc.d/init.d/sshd", X_OK) == 0
&& access ("/bin/bash", X_OK) == 0)
{
if (check_elf ("/usr/sbin/sshd"))
verbose_exec (-121, "/sbin/service", "/sbin/service", "sshd", "condrestart");
}
_exit(0);
}