diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-12-06 11:37:19 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-12-06 11:37:19 -0200 |
commit | 09e14acf5b7b0fcb4f0404c0474a6a268c4bf60e (patch) | |
tree | 19d617a10872448a689c68bdaeb5b159409de7ee /etc/sshd | |
parent | 7a25652fae4c14ac0ee1c92c0c468ff8c294f4b2 (diff) | |
download | pfsense-09e14acf5b7b0fcb4f0404c0474a6a268c4bf60e.zip pfsense-09e14acf5b7b0fcb4f0404c0474a6a268c4bf60e.tar.gz |
Unbreak etc/sshd, add a missing quote
Diffstat (limited to 'etc/sshd')
-rwxr-xr-x | etc/sshd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ } // Check for all needed key files. If any are missing, the keys need to be regenerated. - $files_to_check = array('ssh_host_dsa_key','ssh_host_dsa_key.pub','ssh_host_key','ssh_host_key.pub','ssh_host_rsa_key','ssh_host_rsa_key.pub', 'ssh_host_ecdsa_key', ssh_host_ecdsa_key.pub'); + $files_to_check = array('ssh_host_dsa_key','ssh_host_dsa_key.pub','ssh_host_key','ssh_host_key.pub','ssh_host_rsa_key','ssh_host_rsa_key.pub', 'ssh_host_ecdsa_key', 'ssh_host_ecdsa_key.pub'); $generate_keys = false; foreach ($files_to_check as $f2c) { if (!file_exists("/etc/ssh/{$f2c}")) { |