2020-01-10 15:15:30 +00:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
install -m 755 files/firstboot.sh "${ROOTFS_DIR}/boot/firstboot.sh"
|
2020-01-27 22:12:56 +00:00
|
|
|
install -m 755 files/firstboot.service "${ROOTFS_DIR}/etc/systemd/system/firstboot.service"
|
2020-01-10 15:15:30 +00:00
|
|
|
|
|
|
|
on_chroot << EOF
|
|
|
|
systemctl enable firstboot.service
|
|
|
|
EOF
|