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.

57 lines
1.4 KiB

#!/bin/sh
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../mkinitramfs/install/D%libdir_ssh.in.txt
# Copyright (C) 2008 - 2010 The OpenSDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
openssh_install_hostkey() {
local type="$1" key=
case "$type" in
rsa|dsa) key="/etc/ssh/ssh_host_${type}_key" ;;
esac
if [ -n "$key" -a -s "$root$key" ]; then
echo "Injecting OpenSSH Host Key ($type)..."
cp -vf "$root$key" "$tmpdir$key"
else
false
fi
}
dropbear_install_hostkey() {
local type="$1" key=
# translation
case "$type" in
dsa) type=dss ;;
esac
case "$type" in
rsa|dss) key="/etc/dropbear/dropbear_${type}_host_key" ;;
esac
if [ -n "$key" -a -s "$root$key" ]; then
echo "Injecting Dropbear Host Key ($type)..."
cp -vf "$root$key" "$tmpdir$key"
else
false
fi
}
openssh_install_authorized_keys() {
local ak="/root/.ssh/authorized_keys"
if [ -s "$root$ak" ]; then
echo "Injecting root's ssh Authorized Keys"
cp -v "$root$ak" "$tmpdir$ak"
fi
}