2012-06-12 14:27:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
|
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
|
|
|
|
|
|
|
check() {
|
|
|
|
return 255
|
|
|
|
}
|
|
|
|
|
|
|
|
depends() {
|
|
|
|
echo dmsquash-live
|
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
2013-05-20 11:15:21 +00:00
|
|
|
inst /usr/bin/chroot
|
2012-11-22 13:39:15 -01:00
|
|
|
inst /usr/bin/chmod
|
|
|
|
inst /usr/bin/sed
|
2012-11-22 13:28:13 -01:00
|
|
|
inst_hook pre-pivot 01 "$moddir/adduser.sh"
|
2012-11-22 16:27:57 -01:00
|
|
|
inst_hook pre-pivot 02 "$moddir/display-manager-autologin.sh"
|
2013-05-21 19:35:35 +00:00
|
|
|
inst_hook pre-pivot 03 "$moddir/copy-initramfs.sh"
|
2013-05-21 19:44:45 +00:00
|
|
|
inst_hook pre-pivot 04 "$moddir/locale.sh"
|
2012-06-12 14:27:17 +00:00
|
|
|
}
|