Idunn is an small system aiming to give an early rescue/install environment with ssh support, making life easier when one doesn't have physical access to machine.
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.

35 lines
1.0 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: target/idunn/pkg_dropbear.conf
  5. # Copyright (C) 2008 The OpenSDE Project
  6. # Copyright (C) 2002 - 2006 Alejandro Mery
  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. # --- SDE-COPYRIGHT-NOTE-END ---
  15. . $confdir/$pkg.conf
  16. idunn_adminkeys="$base/config/$config/authorized_keys"
  17. if [ -s "$idunn_adminkeys" ]; then
  18. hook_add postmake 5 'pkg_dropbear_authkeys'
  19. pkg_dropbear_authkeys() {
  20. local sshdir="$xroot/root/.ssh" ak=
  21. ak="$sshdir/authorized_keys"
  22. mkdir -p "$sshdir"
  23. chmod 700 "$sshdir"
  24. cp "$idunn_adminkeys" "$ak"
  25. chmod 600 "$ak"
  26. add_flist "$sshdir" "$ak"
  27. }
  28. else
  29. abort "idunn: ${idunn_adminkeys#$base/} missing!"
  30. fi