mrrl

Minimal Reliable Reproducible Linux
git clone https://ccx.te2000.cz/git/mrrl
Log | Files | Refs | Submodules | README

commit eff7ef15e656e5df21cb7923953a516a288dbee4
parent 32e51f9dd33caa435cff704c7f6276b53dedd64c
Author: Jan Pobrislo <ccx@te2000.cz>
Date:   Sun,  4 May 2025 00:25:36 +0000

Package to create /mnt/ns/bin image

Diffstat:
Atemplates/pkg/container-bin-image | 35+++++++++++++++++++++++++++++++++++
Mtemplates/pkg/containers | 6++++++
Avariants/ccx-x86_64/container-bin-image | 32++++++++++++++++++++++++++++++++
Mvariants/ccx-x86_64/containers | 6++++++
Mvariants/ccx-x86_64/containers.environment | 2+-
Mvariants/ccx-x86_64/default.environment | 8++++----
Mvariants/ccx-x86_64/system-config | 2+-
Mvariants/ccx-x86_64/system-config-init | 4++--
Mvariants/ccx-x86_64/system-config-rc | 4++--
Mvariants/ccx-x86_64/userspace.environment | 2+-
Avariants/root-x86_64/container-bin-image | 32++++++++++++++++++++++++++++++++
Mvariants/root-x86_64/containers | 6++++++
Mvariants/root-x86_64/containers.environment | 2+-
Mvariants/root-x86_64/default.environment | 8++++----
Mvariants/root-x86_64/system-config | 2+-
Mvariants/root-x86_64/system-config-init | 4++--
Mvariants/root-x86_64/system-config-rc | 4++--
Mvariants/root-x86_64/userspace.environment | 2+-
18 files changed, 139 insertions(+), 22 deletions(-)

diff --git a/templates/pkg/container-bin-image b/templates/pkg/container-bin-image @@ -0,0 +1,35 @@ +{% extends "base" %} +{%- block body -%} +#+{{pkg_install_name("busybox")}} +#+{{pkg_install_name("execline")}} +#+{{pkg_install_name("ccx-utils")}} + +mkdir -p "$pthbs_destdir{{versions}}/$pthbs_package/container-bin-image" +cd "$pthbs_destdir{{versions}}/$pthbs_package/container-bin-image" + +for cmd in "${PATH%%:*}"/*; do + rp=$(realpath "$cmd") + base=$(basename "$rp") + if test $base = "${cmd##*/}"; then + if test -e "./$base"; then + printf "fatal: duplicate command file: '%s'\n" "$base" + exit 1 + fi + cp -p "$rp" ./ + else + if ! test -f "./$base"; then + cp -p "$rp" ./ + fi + ln -s "./$base" "./${cmd##*/}" + fi +done + +test -x ./if +test -x ./busybox +test -x ./umount +test -x ./chpst +test -x ./applyuidgid-caps +./true + +touch .install-links +{% endblock %} diff --git a/templates/pkg/containers b/templates/pkg/containers @@ -4,6 +4,7 @@ #+{{pkg_install_name("alpine-keys")}} #+{{pkg_install_name("apk-tools")}} #+{{pkg_install_name("xbps")}} +#+{{pkg_install_name("container-bin-image")}} {%- endblock %} {%- block extra_script %} mkdir "$pkgdir/data" @@ -11,6 +12,7 @@ mv -v service_scripts container_template "$pkgdir/data/" printf '%s\n' >"$pkgdir/zsh/site-functions/confz_containers_pthbs_init" \ "typeset -g container_template_dir='$prefix/data/container_template'" \ "typeset -g container_service_script_dir='$prefix/data/service_scripts'" \ + "typeset -g container_ns_bin_dir='$prefix/deps/container-bin-image'" \ "typeset -g container_alpine_keys_dir='$prefix/deps/keys/alpine/x86_64'" \ "typeset -g container_apk_executable='$prefix/deps/command/apk.static'" \ "typeset -g container_void_keys_dir='$prefix/deps/keys/void'" \ @@ -31,6 +33,10 @@ mkdir -p "$pkgdir/deps/keys/void" for f in '{{pkg_install_dir("xbps")}}'/keys/void/*; do ln -sf "$f" "$pkgdir/deps/keys/void/" done + +test -d '{{pkg_install_dir("container-bin-image")}}/container-bin-image' +test -f '{{pkg_install_dir("container-bin-image")}}/container-bin-image/if' +ln -sf '{{pkg_install_dir("container-bin-image")}}/container-bin-image' "$pkgdir/deps/" {%- endblock %} {% block genlinks_begin %} diff --git a/variants/ccx-x86_64/container-bin-image b/variants/ccx-x86_64/container-bin-image @@ -0,0 +1,32 @@ +#!/usr/bin/env pthbs-build#+busybox.ee3440974794767b833fd3299226771f170d3f8601cf225cb884f0a513db8ab3 +#+execline.1505a32c24aa5dbf362550f39283c9ff1936e717e5a82d220f8212cd9e604d8f +#+ccx-utils.ab28a8d701f60db69818ef22c546d02eca1ba3900bcdeaf5676bcc13d4b7f114 + +mkdir -p "$pthbs_destdir/home/ccx/versions/$pthbs_package/container-bin-image" +cd "$pthbs_destdir/home/ccx/versions/$pthbs_package/container-bin-image" + +for cmd in "${PATH%%:*}"/*; do + rp=$(realpath "$cmd") + base=$(basename "$rp") + if test $base = "${cmd##*/}"; then + if test -e "./$base"; then + printf "fatal: duplicate command file: '%s'\n" "$base" + exit 1 + fi + cp -p "$rp" ./ + else + if ! test -f "./$base"; then + cp -p "$rp" ./ + fi + ln -s "./$base" "./${cmd##*/}" + fi +done + +test -x ./if +test -x ./busybox +test -x ./umount +test -x ./chpst +test -x ./applyuidgid-caps +./true + +touch .install-links diff --git a/variants/ccx-x86_64/containers b/variants/ccx-x86_64/containers @@ -6,6 +6,7 @@ #+alpine-keys.dedc78b0b50e461d33a449adf40691698925b5eb9af8a6b69e7c0ece6b708ef4 #+apk-tools.d0d7af182121c66cd5587b51689275557a37562fa1d20b9137b33a97fa12d152 #+xbps.e77402565036595f7c0410b63d0ede43ff75c3a9394c0ba075558b5acb8a35b9 +#+container-bin-image.0481cba860e038e1a3bf539c644d7c351f486ffcdc5092e0573c0b725a99dbf1 #@git:aa69a0fc1c82c14b945b9b7348306a4e82bb0bbc:containers : ${JOBS:=1} @@ -34,6 +35,7 @@ mv -v service_scripts container_template "$pkgdir/data/" printf '%s\n' >"$pkgdir/zsh/site-functions/confz_containers_pthbs_init" \ "typeset -g container_template_dir='$prefix/data/container_template'" \ "typeset -g container_service_script_dir='$prefix/data/service_scripts'" \ + "typeset -g container_ns_bin_dir='$prefix/deps/container-bin-image'" \ "typeset -g container_alpine_keys_dir='$prefix/deps/keys/alpine/x86_64'" \ "typeset -g container_apk_executable='$prefix/deps/command/apk.static'" \ "typeset -g container_void_keys_dir='$prefix/deps/keys/void'" \ @@ -55,6 +57,10 @@ for f in '/home/ccx/versions/xbps.e77402565036595f7c0410b63d0ede43ff75c3a9394c0b ln -sf "$f" "$pkgdir/deps/keys/void/" done +test -d '/home/ccx/versions/container-bin-image.0481cba860e038e1a3bf539c644d7c351f486ffcdc5092e0573c0b725a99dbf1/container-bin-image' +test -f '/home/ccx/versions/container-bin-image.0481cba860e038e1a3bf539c644d7c351f486ffcdc5092e0573c0b725a99dbf1/container-bin-image/if' +ln -sf '/home/ccx/versions/container-bin-image.0481cba860e038e1a3bf539c644d7c351f486ffcdc5092e0573c0b725a99dbf1/container-bin-image' "$pkgdir/deps/" + cd "$pthbs_destdir/home/ccx/versions/$pthbs_package" find -type d -o -print | awk -F/ ' BEGIN { diff --git a/variants/ccx-x86_64/containers.environment b/variants/ccx-x86_64/containers.environment @@ -7,7 +7,7 @@ #+s6-linux-utils.1990b55837ff2c28a81500d80292c6d530c8516347eb896007eb5aed2af6c425 #+zsh.f79a20125b2f520d3719411e6f0895cf4f2e0657565c3fef07b3069436b8960f #+confz.9733b0a5d832c848bfeeb2dc737c05a77163fc4d8aca4156a18f2074f2902b8a -#+containers.50ba6459dcb30cd8cbbc3a7a992b341c7e5cf818ddf377692533f22fea20d83f +#+containers.4410e299c408fb7c8b2c7a9d52492767af4ff587955b312614ea6881b8dca181 #+xbps.e77402565036595f7c0410b63d0ede43ff75c3a9394c0ba075558b5acb8a35b9 #+zstd.8b11bd81c450d61aa6a44ffd019654c590439df68ebd8987db4cdbbcf182d67c #+apk-tools.d0d7af182121c66cd5587b51689275557a37562fa1d20b9137b33a97fa12d152 diff --git a/variants/ccx-x86_64/default.environment b/variants/ccx-x86_64/default.environment @@ -21,7 +21,7 @@ #+pthbs-banginstall.7ddbf08ba8b1298841fad793d4ed7ba4979b9346155195489fc5e492ed5f0fe2 #+aat.0698d0082830b7f8bcf3840f3f8c25382ef2d9f174dd6d5407c5e2132d1f16e4 #+confz.9733b0a5d832c848bfeeb2dc737c05a77163fc4d8aca4156a18f2074f2902b8a -#+containers.50ba6459dcb30cd8cbbc3a7a992b341c7e5cf818ddf377692533f22fea20d83f +#+containers.4410e299c408fb7c8b2c7a9d52492767af4ff587955b312614ea6881b8dca181 #+fileset.4e84d6846c9db82c5ad691b8a6b63b6364b367e84f9d1490b0942b3fa28f3737 #+logincaps.04accf875f567934eb11016453454f691d056c66e0dc36a971f98aaaefdbe360 #+snaprep.00aa9b9a8cd250e823959881ee26d93cab1be5fe7bbb06ad9abc7242c481b4f7 @@ -37,8 +37,8 @@ #+ccx-utils.ab28a8d701f60db69818ef22c546d02eca1ba3900bcdeaf5676bcc13d4b7f114 #+user-env.4e95a5387aa403e1d16a22254f21fb4cec046c69341a5eae764dd8126fb638a8 #+strace.53097be3dbf67dbf52aa675a59980a7d965fd8cdf965ef3005035e70fc7e4103 -#+system-config.8279d7c35bbfddcbff99d94a4272780f54e5494c85b5c026d0b638e3560a082b -#+system-config-rc.0a9cef0107b8a2423a14914fbe0329e3c384d38ea8fb16e9ceb393f547ccde46 +#+system-config.600ea1d032d27b4a2cb3f21a90325726223ba787308b3c5f57f93178f3db1488 +#+system-config-rc.b267587e98abe5e70935e40050a9279fb2e87ff978c481f12742649c03f98340 #+system-config-scripts.bdedb957b96fc1efd8259d16dac786d1d9c220dcde66996a16688989f104925d -#+system-config-init.bfdc12bb6b7dcd0821ee133dbe21bdb045c072d1b30a8aba1148d8f26b2e1f68 +#+system-config-init.3641c7f515300c68338efa3b29342cf30311ff8a8dac920bd313619bf4e371e5 #+system-config-zsh.250277c1fe17ccb13b5efbacd35ecb3b8342e30910cdd709f89475773bb7f309 \ No newline at end of file diff --git a/variants/ccx-x86_64/system-config b/variants/ccx-x86_64/system-config @@ -52,7 +52,7 @@ printf '%s\n' >config/etc/skel/loginexec \ chmod +x config/etc/skel/loginexec env 'pthbs_path_system-config'="$prefix" \ - 'pthbs_path_containers=/home/ccx/versions/env.41d9add528dcf07db784e269f10043f0b1b1df31eb63d51db0d414360952640d' \ + 'pthbs_path_containers=/home/ccx/versions/env.1f6319518c74f2c5513af22a89bebdf64499e1b70e090b49459ac317ecd47103' \ 'pthbs_path_mdevd=/home/ccx/versions/env.5049027ea8b6b4d373e16aadd3cdc63a940582ff297656e395f2131eef181671' \ make -j${JOBS:-1} -l$((1+${JOBS:-1})) all diff --git a/variants/ccx-x86_64/system-config-init b/variants/ccx-x86_64/system-config-init @@ -5,9 +5,9 @@ #+s6-portable-utils.1b8fd31be72bfe84afb28c3dfff03b1fc45121d11fc85f79c90f085fe61bc132 #+s6-linux-init.cd3e307b62e7dde98e1572eed297bd544e888d2589d4c1e7fd79271c4078ddf2 #+execline.1505a32c24aa5dbf362550f39283c9ff1936e717e5a82d220f8212cd9e604d8f -#+system-config-rc.0a9cef0107b8a2423a14914fbe0329e3c384d38ea8fb16e9ceb393f547ccde46 +#+system-config-rc.b267587e98abe5e70935e40050a9279fb2e87ff978c481f12742649c03f98340 -s6rcdb=/home/ccx/versions/system-config-rc.0a9cef0107b8a2423a14914fbe0329e3c384d38ea8fb16e9ceb393f547ccde46/config/s6-rc-db +s6rcdb=/home/ccx/versions/system-config-rc.b267587e98abe5e70935e40050a9279fb2e87ff978c481f12742649c03f98340/config/s6-rc-db prefix=/home/ccx/versions/$pthbs_package pkgdir="$pthbs_destdir/$prefix" diff --git a/variants/ccx-x86_64/system-config-rc b/variants/ccx-x86_64/system-config-rc @@ -3,7 +3,7 @@ #+busybox-diffutils.c2ebcfcad050ad71b8e30322a463b5c009f254c7a42e95c627d32665e17134dc #+s6-rc.fecfa43aebb0615904e0e120b9ce8c0596c9b6c577611cbadc8fbaca75196ed9 #+fileset.4e84d6846c9db82c5ad691b8a6b63b6364b367e84f9d1490b0942b3fa28f3737 -#+system-config.8279d7c35bbfddcbff99d94a4272780f54e5494c85b5c026d0b638e3560a082b +#+system-config.600ea1d032d27b4a2cb3f21a90325726223ba787308b3c5f57f93178f3db1488 def_prefix() { prefix=/home/ccx/versions/$pthbs_package @@ -13,7 +13,7 @@ def_dest() { } def_dest -src=/home/ccx/versions/system-config.8279d7c35bbfddcbff99d94a4272780f54e5494c85b5c026d0b638e3560a082b/config/s6-rc-source +src=/home/ccx/versions/system-config.600ea1d032d27b4a2cb3f21a90325726223ba787308b3c5f57f93178f3db1488/config/s6-rc-source s6-rc-compile ./s6-rc-db "$src" mkdir -p "$dest/config" mv -v s6-rc-db "$dest/config/" diff --git a/variants/ccx-x86_64/userspace.environment b/variants/ccx-x86_64/userspace.environment @@ -21,7 +21,7 @@ #+pthbs-banginstall.7ddbf08ba8b1298841fad793d4ed7ba4979b9346155195489fc5e492ed5f0fe2 #+aat.0698d0082830b7f8bcf3840f3f8c25382ef2d9f174dd6d5407c5e2132d1f16e4 #+confz.9733b0a5d832c848bfeeb2dc737c05a77163fc4d8aca4156a18f2074f2902b8a -#+containers.50ba6459dcb30cd8cbbc3a7a992b341c7e5cf818ddf377692533f22fea20d83f +#+containers.4410e299c408fb7c8b2c7a9d52492767af4ff587955b312614ea6881b8dca181 #+fileset.4e84d6846c9db82c5ad691b8a6b63b6364b367e84f9d1490b0942b3fa28f3737 #+logincaps.04accf875f567934eb11016453454f691d056c66e0dc36a971f98aaaefdbe360 #+snaprep.00aa9b9a8cd250e823959881ee26d93cab1be5fe7bbb06ad9abc7242c481b4f7 diff --git a/variants/root-x86_64/container-bin-image b/variants/root-x86_64/container-bin-image @@ -0,0 +1,32 @@ +#!/usr/bin/env pthbs-build#+busybox.f4ef3d511c029095beda8d21dd48f7730bec63fb09792ca951402d6620338089 +#+execline.c89bee1b1207461afa2d2ab9250f0940a2a6bbca3e45bdd60037049a75f4adf9 +#+ccx-utils.ccaa449ada3142ef075f3c80a6e475520219814490557f308ded4685231a70ac + +mkdir -p "$pthbs_destdir/versions/$pthbs_package/container-bin-image" +cd "$pthbs_destdir/versions/$pthbs_package/container-bin-image" + +for cmd in "${PATH%%:*}"/*; do + rp=$(realpath "$cmd") + base=$(basename "$rp") + if test $base = "${cmd##*/}"; then + if test -e "./$base"; then + printf "fatal: duplicate command file: '%s'\n" "$base" + exit 1 + fi + cp -p "$rp" ./ + else + if ! test -f "./$base"; then + cp -p "$rp" ./ + fi + ln -s "./$base" "./${cmd##*/}" + fi +done + +test -x ./if +test -x ./busybox +test -x ./umount +test -x ./chpst +test -x ./applyuidgid-caps +./true + +touch .install-links diff --git a/variants/root-x86_64/containers b/variants/root-x86_64/containers @@ -6,6 +6,7 @@ #+alpine-keys.4ecd9fac6efcc329a98af1b0b1318771a77eb83ac10832c6e769ebf11c14cae1 #+apk-tools.20ad2f2e238d23a5eeac3587f85cbe9763bd717a30fb8eb659badd602a556cbf #+xbps.f2dcdfd8accffba33bb4a025e1b3ad227f1a9d9776422455a381cfafaac7d473 +#+container-bin-image.130d4adfc7a14e082dda22ccd9bdcb61a840ffd8ded8fefd8513cceaf1255d34 #@git:aa69a0fc1c82c14b945b9b7348306a4e82bb0bbc:containers : ${JOBS:=1} @@ -34,6 +35,7 @@ mv -v service_scripts container_template "$pkgdir/data/" printf '%s\n' >"$pkgdir/zsh/site-functions/confz_containers_pthbs_init" \ "typeset -g container_template_dir='$prefix/data/container_template'" \ "typeset -g container_service_script_dir='$prefix/data/service_scripts'" \ + "typeset -g container_ns_bin_dir='$prefix/deps/container-bin-image'" \ "typeset -g container_alpine_keys_dir='$prefix/deps/keys/alpine/x86_64'" \ "typeset -g container_apk_executable='$prefix/deps/command/apk.static'" \ "typeset -g container_void_keys_dir='$prefix/deps/keys/void'" \ @@ -55,6 +57,10 @@ for f in '/versions/xbps.f2dcdfd8accffba33bb4a025e1b3ad227f1a9d9776422455a381cfa ln -sf "$f" "$pkgdir/deps/keys/void/" done +test -d '/versions/container-bin-image.130d4adfc7a14e082dda22ccd9bdcb61a840ffd8ded8fefd8513cceaf1255d34/container-bin-image' +test -f '/versions/container-bin-image.130d4adfc7a14e082dda22ccd9bdcb61a840ffd8ded8fefd8513cceaf1255d34/container-bin-image/if' +ln -sf '/versions/container-bin-image.130d4adfc7a14e082dda22ccd9bdcb61a840ffd8ded8fefd8513cceaf1255d34/container-bin-image' "$pkgdir/deps/" + cd "$pthbs_destdir/versions/$pthbs_package" find -type d -o -print | awk -F/ ' BEGIN { diff --git a/variants/root-x86_64/containers.environment b/variants/root-x86_64/containers.environment @@ -7,7 +7,7 @@ #+s6-linux-utils.f7e0654375f11beedafd731ad1dd66c0de8d03452bb8e38bb647cc51cc3adb2e #+zsh.4ac9e4166454e8d60c15837b7ca4938abe99db029b3fffa11b1cfd54d40ae09b #+confz.2c5f5b9bb69976bb57be5de332d8e7a2cf69c0b41c006ee7e6912abe8e8a0edf -#+containers.817b61c0691510e0c054b2cb81b5ee77bdec496c1704466eab6c3b4a52fd96b3 +#+containers.a1e1ca8972d7038a63996981fc6234fd9518adf39d350ba64d636a71376a8fc7 #+xbps.f2dcdfd8accffba33bb4a025e1b3ad227f1a9d9776422455a381cfafaac7d473 #+zstd.a83f72c5953bd6b7afc171528a503710b3144bf9197961833fd27926b0a18137 #+apk-tools.20ad2f2e238d23a5eeac3587f85cbe9763bd717a30fb8eb659badd602a556cbf diff --git a/variants/root-x86_64/default.environment b/variants/root-x86_64/default.environment @@ -21,7 +21,7 @@ #+pthbs-banginstall.30ed98ef3fedfb6b25b3f58c27e845f123a22a756b37a5cd75764315bba23571 #+aat.9432aa485263e75ca3e43d6511c561a9cd328c417ebe26b890ed4a8061fee06f #+confz.2c5f5b9bb69976bb57be5de332d8e7a2cf69c0b41c006ee7e6912abe8e8a0edf -#+containers.817b61c0691510e0c054b2cb81b5ee77bdec496c1704466eab6c3b4a52fd96b3 +#+containers.a1e1ca8972d7038a63996981fc6234fd9518adf39d350ba64d636a71376a8fc7 #+fileset.7159458f5e8c9237e1e1708cafced263dd342d5fd24ccec97ae8092d9b1c5150 #+logincaps.3c7957125c5700c2436df091d2fba6324b1ac5f2bfcd54948f6a5b8049047afc #+snaprep.73784e7863284b4cc1597b76b0d869eb2eaaa5eed08245e629937044a2c0c3b5 @@ -37,8 +37,8 @@ #+ccx-utils.ccaa449ada3142ef075f3c80a6e475520219814490557f308ded4685231a70ac #+user-env.8ad55eebe32b11f005f7b5c6dc204fdccc0a53cd7294f87c1e959ea47793dbca #+strace.ce1707d2cf1dfcd965827af80a18c6b97ca20b563b8967be8297322e8adf9296 -#+system-config.3b68cac8b24ab453b91afd0506cb835a08740d48cb172a22efd094c31f4d1f22 -#+system-config-rc.84af09c24ff30af7d6ff5d0f3a6141bd388c2b9a8500a0b527ee42a94175cb32 +#+system-config.e2b6ba50cea72446ccf2c91c426e8677e769d18b2ce3fadae0d164bcea59bfde +#+system-config-rc.d9b47455ce449a7416b09b6603cdda00f98adb8d884f803a0d0f3d7b6adc8350 #+system-config-scripts.4c00e32b8c4f6feef53b562356abd54830cc7e889149e4f8bcb928d6e6e93378 -#+system-config-init.27f6d0cba4969dc35f8dc05e2b09a06557f92a6ca1aa8953a4dabb61210a1f25 +#+system-config-init.7063c2ab44647d603984a596bfac75e23a537414adb4de0fcd83144674f92d6d #+system-config-zsh.01286ec545c7035b2e08ded96e40b73f912f33fd7eec44993a1e93e12577dc0f \ No newline at end of file diff --git a/variants/root-x86_64/system-config b/variants/root-x86_64/system-config @@ -52,7 +52,7 @@ printf '%s\n' >config/etc/skel/loginexec \ chmod +x config/etc/skel/loginexec env 'pthbs_path_system-config'="$prefix" \ - 'pthbs_path_containers=/versions/env.935a41e346e87565fb6e1060d8084ad09ac8d4b85394fca12a0dcca402d167b0' \ + 'pthbs_path_containers=/versions/env.80b63dcd77eb359a54e3c78b81d635a2de2d8550daaa1fecf71ddb6d256563aa' \ 'pthbs_path_mdevd=/versions/env.699c310193b7957c8ec17e16d6846443f99c198e3e2ce6425066f4523de2cf1e' \ make -j${JOBS:-1} -l$((1+${JOBS:-1})) all diff --git a/variants/root-x86_64/system-config-init b/variants/root-x86_64/system-config-init @@ -5,9 +5,9 @@ #+s6-portable-utils.f6171ad521d6be72875f1d5c1b28f966662ba93cfe5790e1ef010f9e76211bc3 #+s6-linux-init.8fbed3537ce9accc1a31e36f4648d1a0df0f1d155fcfa8fb5b1079786cf1442c #+execline.c89bee1b1207461afa2d2ab9250f0940a2a6bbca3e45bdd60037049a75f4adf9 -#+system-config-rc.84af09c24ff30af7d6ff5d0f3a6141bd388c2b9a8500a0b527ee42a94175cb32 +#+system-config-rc.d9b47455ce449a7416b09b6603cdda00f98adb8d884f803a0d0f3d7b6adc8350 -s6rcdb=/versions/system-config-rc.84af09c24ff30af7d6ff5d0f3a6141bd388c2b9a8500a0b527ee42a94175cb32/config/s6-rc-db +s6rcdb=/versions/system-config-rc.d9b47455ce449a7416b09b6603cdda00f98adb8d884f803a0d0f3d7b6adc8350/config/s6-rc-db prefix=/versions/$pthbs_package pkgdir="$pthbs_destdir/$prefix" diff --git a/variants/root-x86_64/system-config-rc b/variants/root-x86_64/system-config-rc @@ -3,7 +3,7 @@ #+busybox-diffutils.4a0933977737282afcd82b39d435b50946a700fe13472d24e4580a41fa852123 #+s6-rc.c131bb99b2054bcd9705c5a5652822938265a8587a54d2894667b8b620815c7f #+fileset.7159458f5e8c9237e1e1708cafced263dd342d5fd24ccec97ae8092d9b1c5150 -#+system-config.3b68cac8b24ab453b91afd0506cb835a08740d48cb172a22efd094c31f4d1f22 +#+system-config.e2b6ba50cea72446ccf2c91c426e8677e769d18b2ce3fadae0d164bcea59bfde def_prefix() { prefix=/versions/$pthbs_package @@ -13,7 +13,7 @@ def_dest() { } def_dest -src=/versions/system-config.3b68cac8b24ab453b91afd0506cb835a08740d48cb172a22efd094c31f4d1f22/config/s6-rc-source +src=/versions/system-config.e2b6ba50cea72446ccf2c91c426e8677e769d18b2ce3fadae0d164bcea59bfde/config/s6-rc-source s6-rc-compile ./s6-rc-db "$src" mkdir -p "$dest/config" mv -v s6-rc-db "$dest/config/" diff --git a/variants/root-x86_64/userspace.environment b/variants/root-x86_64/userspace.environment @@ -21,7 +21,7 @@ #+pthbs-banginstall.30ed98ef3fedfb6b25b3f58c27e845f123a22a756b37a5cd75764315bba23571 #+aat.9432aa485263e75ca3e43d6511c561a9cd328c417ebe26b890ed4a8061fee06f #+confz.2c5f5b9bb69976bb57be5de332d8e7a2cf69c0b41c006ee7e6912abe8e8a0edf -#+containers.817b61c0691510e0c054b2cb81b5ee77bdec496c1704466eab6c3b4a52fd96b3 +#+containers.a1e1ca8972d7038a63996981fc6234fd9518adf39d350ba64d636a71376a8fc7 #+fileset.7159458f5e8c9237e1e1708cafced263dd342d5fd24ccec97ae8092d9b1c5150 #+logincaps.3c7957125c5700c2436df091d2fba6324b1ac5f2bfcd54948f6a5b8049047afc #+snaprep.73784e7863284b4cc1597b76b0d869eb2eaaa5eed08245e629937044a2c0c3b5