cdist/hacking/v3-busybox/init
Nico Schottelius cc144d9e8f generate ssh keys
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
2015-06-16 11:14:50 +02:00

32 lines
725 B
Bash
Executable file

#!/bin/sh
# Create all the symlinks to /bin/busybox
/bin/busybox --install -s
# Mount things needed by this script
mount -t proc proc /proc
mount -t sysfs sysfs /sys
# Disable kernel messages from popping onto the screen
echo 0 > /proc/sys/kernel/printk
# Create device nodes
mknod /dev/null c 1 3
mknod /dev/tty c 5 0
mdev -s
# udev stuff
kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
systemd-tmpfiles --prefix=/dev --create --boot
/usr/lib/systemd/systemd-udevd --daemon --resolve-names=never
udevadm trigger --action=add --type=subsystems
udevadm trigger --action=add --type=devices
udevadm settle
# /bin/sshd
# Generate keys for sshd
echo "Generating keys for sshd"
ssh-keygen -A
exec sh