Spaces:
Paused
Paused
File size: 350 Bytes
c425c40 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
# Ensure .bashrc is in the root directory
if [ ! -f /root/.bashrc ]; then
cp /etc/skel/.bashrc /root/.bashrc
chmod 444 /root/.bashrc
fi
# Ensure .profile is in the root directory
if [ ! -f /root/.profile ]; then
cp /etc/skel/.bashrc /root/.profile
chmod 444 /root/.profile
fi
# Start SSH service
exec /usr/sbin/sshd -D
|