From e13383753016d29e5501f33da94fb55da16b8116 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 19 Sep 2005 01:00:58 +0000 Subject: Create SSH keys with a nice of 20 --- etc/sshd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'etc/sshd') diff --git a/etc/sshd b/etc/sshd index 2b545cc..a827fb3 100755 --- a/etc/sshd +++ b/etc/sshd @@ -94,9 +94,9 @@ conf_mount_rw(); mwexec("rm /etc/ssh/ssh_host_*"); echo "\n"; - system("/usr/bin/ssh-keygen -t rsa1 -N '' -f $sshConfigDir/ssh_host_key"); - system("/usr/bin/ssh-keygen -t rsa -N '' -f $sshConfigDir/ssh_host_rsa_key"); - system("/usr/bin/ssh-keygen -t dsa -N '' -f $sshConfigDir/ssh_host_dsa_key"); + system("/usr/bin/nice -n20 /usr/bin/ssh-keygen -t rsa1 -N '' -f $sshConfigDir/ssh_host_key"); + system("/usr/bin/nice -n20 /usr/bin/ssh-keygen -t rsa -N '' -f $sshConfigDir/ssh_host_rsa_key"); + system("/usr/bin/nice -n20 /usr/bin/ssh-keygen -t dsa -N '' -f $sshConfigDir/ssh_host_dsa_key"); } @@ -108,9 +108,9 @@ if (!file_exists("$sshConfigDir/ssh_host_key") and $config['ssh']['dsa'] == "") { /* generate keys */ - system("/usr/bin/ssh-keygen -t rsa1 -N '' -f $sshConfigDir/ssh_host_key"); - system("/usr/bin/ssh-keygen -t rsa -N '' -f $sshConfigDir/ssh_host_rsa_key"); - system("/usr/bin/ssh-keygen -t dsa -N '' -f $sshConfigDir/ssh_host_dsa_key"); + system("/usr/bin/nice -n20 /usr/bin/ssh-keygen -t rsa1 -N '' -f $sshConfigDir/ssh_host_key"); + system("/usr/bin/nice -n20 /usr/bin/ssh-keygen -t rsa -N '' -f $sshConfigDir/ssh_host_rsa_key"); + system("/usr/bin/nice -n20 /usr/bin/ssh-keygen -t dsa -N '' -f $sshConfigDir/ssh_host_dsa_key"); /* save keys */ $dsa = file_get_contents("{$sshConfigDir}/ssh_host_dsa_key"); -- cgit v1.1