mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
50 lines
1.7 KiB
Bash
Executable File
50 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
#
|
|
# OpenELEC 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, either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# OpenELEC is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
. /etc/profile
|
|
|
|
RSA1_KEY="/storage/.cache/ssh/ssh_host_key"
|
|
RSA2_KEY="/storage/.cache/ssh/ssh_host_rsa_key"
|
|
DSA2_KEY="/storage/.cache/ssh/ssh_host_dsa_key"
|
|
|
|
KEYGEN="/usr/bin/ssh-keygen"
|
|
|
|
mkdir -p /storage/.cache/ssh
|
|
|
|
# Check for the SSH1 RSA key
|
|
if [ ! -s $RSA1_KEY ] ; then
|
|
progress "SSH: generating SSH1 RSA key"
|
|
$KEYGEN -q -t rsa1 -f $RSA1_KEY -C '' -N '' >&/dev/null
|
|
chmod 600 $RSA1_KEY
|
|
fi
|
|
|
|
# Check for the SSH2 RSA key
|
|
if [ ! -s $RSA2_KEY ] ; then
|
|
progress "SSH: generating SSH2 RSA key"
|
|
$KEYGEN -q -t rsa -f $RSA2_KEY -C '' -N '' >&/dev/null
|
|
chmod 600 $RSA2_KEY
|
|
fi
|
|
|
|
# Check for the SSH2 DSA key
|
|
if [ ! -s $DSA2_KEY ] ; then
|
|
progress "SSH: generating SSH2 DSA key"
|
|
$KEYGEN -q -t dsa -f $DSA2_KEY -C '' -N '' >&/dev/null
|
|
chmod 600 $DSA2_KEY
|
|
fi
|