fix: do not fail upon attempted umount of ./var/cache/blendOS
This commit is contained in:
parent
1424a3599d
commit
a9ed7a1692
3 changed files with 3 additions and 2 deletions
|
|
@ -124,4 +124,4 @@ distro-config:
|
||||||
cp /etc/locale.conf ./etc
|
cp /etc/locale.conf ./etc
|
||||||
|
|
||||||
finalise: |
|
finalise: |
|
||||||
umount -l ./var/cache/blendOS
|
umount -l ./var/cache/blendOS || :
|
||||||
|
|
|
||||||
2
oci.yaml
2
oci.yaml
|
|
@ -51,7 +51,7 @@ distro-config:
|
||||||
cp /etc/locale.conf ./etc
|
cp /etc/locale.conf ./etc
|
||||||
|
|
||||||
finalise: |
|
finalise: |
|
||||||
umount -l ./var/cache/blendOS &>/dev/null
|
umount -l ./var/cache/blendOS &>/dev/null || :
|
||||||
|
|
||||||
env:
|
env:
|
||||||
IMAGE_NAME: ""
|
IMAGE_NAME: ""
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ track: "https://git.ruds.io/rs2009/blendOS-tracks/raw/branch/main/oci.yaml"
|
||||||
stages:
|
stages:
|
||||||
- module: exec
|
- module: exec
|
||||||
inputs:
|
inputs:
|
||||||
|
- apt-get update
|
||||||
- apt-get install -yq hello
|
- apt-get install -yq hello
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue