main
sh 13 lines 201 Bytes
Raw
1 #!/bin/bash
2 set -e
3
4 # update apt
5 apt-get update
6
7 # fix permissions for cron files if any
8 if [ -f /etc/cron.d/* ]; then
9 chmod 0644 /etc/cron.d/*
10 fi
11
12 # Prepare SSH daemon
13 bash /ins/setup_ssh.sh "$@"