blob: 0fc5bde1715d444a034075090f40c3a1bd1e1861 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash -xe
set -o pipefail
# Set a root password
echo "root:guest" | chroot "${root:?}" chpasswd
# Make console quieter
cat > "${root:?}"/etc/sysctl.d/printk.conf << EOF
kernel.printk = 3 4 1 3
EOF
|