mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
8 lines
156 B
Text
8 lines
156 B
Text
backup_dir="$1/conf/ssh"
|
|
sudo mkdir -p $backup_dir
|
|
|
|
if [ -d /etc/ssh/ ]; then
|
|
sudo cp -a /etc/ssh/. $backup_dir
|
|
else
|
|
echo "SSH is not installed"
|
|
fi
|