Add overlay-postinstall
This commit is contained in:
parent
801538c092
commit
d9bda8426b
1 changed files with 6 additions and 0 deletions
|
@ -225,6 +225,12 @@ if [[ $type == 'archlinux' ]]; then
|
||||||
umount -l $workdir/var/cache/pacman/pkg
|
umount -l $workdir/var/cache/pacman/pkg
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# If postinstall overlay directory exists in variant copy it's contents to the temporary subvolume
|
||||||
|
if [[ -d $variantdir/overlay-postinstall ]]; then
|
||||||
|
printf '\e[1;34m-->\e[0m\e[1m Copying overlay-postinstall to root\e[0m\n'
|
||||||
|
cp -rv $variantdir/overlay-postinstall/* $workdir/
|
||||||
|
fi
|
||||||
|
|
||||||
# Run post-install script if exists
|
# Run post-install script if exists
|
||||||
if [[ -f $variantdir/extensions/post-install.sh ]]; then
|
if [[ -f $variantdir/extensions/post-install.sh ]]; then
|
||||||
printf '\e[1;34m-->\e[0m\e[1m Running post-install extension\e[0m\n'
|
printf '\e[1;34m-->\e[0m\e[1m Running post-install extension\e[0m\n'
|
||||||
|
|
Loading…
Add table
Reference in a new issue