6 lines
216 B
Bash
Executable File
6 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
/etc/init.d/ssh start || echo "Failed to start sshd. Maybe the port is already in use, and please check your sshd_config. This is not an error if it's the first time you run this container."
|
|
bash
|