6 lines
110 B
Bash
6 lines
110 B
Bash
#!/bin/sh
|
|
ln -sf ./sshd_config /etc/ssh/sshd_config
|
|
|
|
if [ "$1" = "reload" ]; then
|
|
rc-service sshd restart
|
|
fi |