clic-rpi-image/stage1/01-sys-tweaks/00-run.sh
2018-03-08 21:20:00 +01:00

12 lines
385 B
Bash
Executable file

#!/bin/bash -e
install -d ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d
install -m 644 files/noclear.conf ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/noclear.conf
install -m 744 files/policy-rc.d ${ROOTFS_DIR}/usr/sbin/policy-rc.d #TODO: Necessary in systemd?
install -v -m 644 files/fstab ${ROOTFS_DIR}/etc/fstab
on_chroot << EOF
echo "root:root" | chpasswd
EOF