2023-07-18 09:49:44 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
source common.sh
|
|
|
|
|
|
|
|
# Avoid store dir being inside sandbox build-dir
|
|
|
|
unset NIX_STORE_DIR
|
|
|
|
unset NIX_STATE_DIR
|
|
|
|
|
2023-12-11 18:30:40 +00:00
|
|
|
setupStoreDirs
|
2023-07-18 09:49:44 +00:00
|
|
|
|
|
|
|
initLowerStore
|
|
|
|
|
|
|
|
mountOverlayfs
|
|
|
|
|
|
|
|
# Add something to the overlay store
|
|
|
|
overlayPath=$(addTextToStore "$storeB" "overlay-file" "Add to overlay store")
|
2023-07-20 10:03:14 +00:00
|
|
|
stat "$storeBRoot/$overlayPath"
|
2023-07-18 09:49:44 +00:00
|
|
|
|
|
|
|
# Now add something to the lower store
|
|
|
|
lowerPath=$(addTextToStore "$storeA" "lower-file" "Add to lower store")
|
2023-07-20 09:27:11 +00:00
|
|
|
stat "$storeVolume/store-a/$lowerPath"
|
2023-07-18 09:49:44 +00:00
|
|
|
|
|
|
|
# Remount overlayfs to ensure synchronization
|
2023-07-20 10:03:14 +00:00
|
|
|
remountOverlayfs
|
2023-07-18 09:49:44 +00:00
|
|
|
|
|
|
|
# Path should be accessible via overlay store
|
2023-07-20 10:03:14 +00:00
|
|
|
stat "$storeBRoot/$lowerPath"
|