blob: e343c3519381b850fd14bbbe778ec0e3840b768b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "Extracting..."
cd /opt/easy2boot/_ISO
bsdtar -x -v -f "CONTIG.ISO.xz"
}
post_upgrade() {
post_install $1
}
pre_remove() {
rm /opt/easy2boot/_ISO/CONTIG.ISO
}
|