OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../openssh/stone_mod_sshd.sh
  5. # Copyright (C) 2004 - 2006 The T2 SDE Project
  6. # Copyright (C) 1998 - 2003 Clifford Wolf
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- T2-COPYRIGHT-NOTE-END ---
  15. #
  16. # [MAIN] 50 sshd SSH Daemon configuration
  17. ssh_create_hostpair(){
  18. gui_cmd "Creating ssh host keypair" \
  19. "/usr/bin/ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N '' ; \
  20. /usr/bin/ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N '' ; \
  21. /usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' "
  22. }
  23. main() {
  24. while
  25. gui_menu alsa 'SSH Daemon Configuration.' \
  26. 'Create a ssh host keypair' \
  27. 'ssh_create_hostpair' \
  28. 'Configure runlevels for sshd service' \
  29. '$STONE runlevel edit_srv sshd' \
  30. '(Re-)Start sshd init script' \
  31. '$STONE runlevel restart sshd'
  32. do : ; done
  33. }