File: rootfs

package info (click to toggle)
debootstick 2.8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: sh: 1,364; makefile: 34
file content (18 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# vim: filetype=sh

prepare_rootfs()
{
    if [ "$1" = "draft" -a "$2" = "outside" ]
    then
        update_apt_conf
        prepare_rootfs_for_emulation
    fi
}

cleanup_rootfs()
{
    if [ "$1" = "final" -a "$2" = "outside" ]
    then
        cleanup_rootfs_for_emulation
    fi
}