mirror of
/repos/baseimage-docker.git
synced 2025-12-30 08:01:31 +01:00
49 lines
1.2 KiB
Bash
Executable File
49 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source /build/buildconfig
|
|
set -x
|
|
|
|
## Install init process.
|
|
cp /build/my_init /sbin/
|
|
mkdir -p /etc/my_init.d
|
|
|
|
## Install runit.
|
|
$minimal_apt_get_install runit
|
|
|
|
## Install a syslog daemon.
|
|
$minimal_apt_get_install syslog-ng-core
|
|
mkdir /etc/service/syslog-ng
|
|
cp /build/runit/syslog-ng /etc/service/syslog-ng/run
|
|
mkdir -p /var/lib/syslog-ng
|
|
cp /build/config/syslog_ng_default /etc/default/syslog-ng
|
|
|
|
## Install logrotate.
|
|
$minimal_apt_get_install logrotate
|
|
|
|
## Install the SSH server.
|
|
$minimal_apt_get_install openssh-server
|
|
mkdir /var/run/sshd
|
|
mkdir /etc/service/sshd
|
|
cp /build/runit/sshd /etc/service/sshd/run
|
|
cp /build/config/sshd_config /etc/ssh/sshd_config
|
|
cp /build/00_regen_ssh_host_keys.sh /etc/my_init.d/
|
|
|
|
## Install default SSH key for root and app.
|
|
mkdir -p /root/.ssh
|
|
chmod 700 /root/.ssh
|
|
chown root:root /root/.ssh
|
|
cp /build/insecure_key.pub /etc/insecure_key.pub
|
|
cp /build/insecure_key /etc/insecure_key
|
|
chmod 644 /etc/insecure_key*
|
|
chown root:root /etc/insecure_key*
|
|
cp /build/enable_insecure_key /usr/sbin/
|
|
|
|
## Install cron daemon.
|
|
$minimal_apt_get_install cron
|
|
mkdir /etc/service/cron
|
|
cp /build/runit/cron /etc/service/cron/run
|
|
|
|
## Remove useless cron entries.
|
|
# Checks for lost+found and scans for mtab.
|
|
rm -f /etc/cron.daily/standard
|