Skip to content

Commit ce9b514

Browse files
committed
Update dstack: Replace "tapp" with more descriptive terms
1 parent de82706 commit ce9b514

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ mandatory = false
172172
[core]
173173
kms_url = "https://localhost:$KMS_RPC_LISTEN_PORT"
174174
rpc_domain = "$GATEWAY_DOMAIN"
175-
run_as_tapp = false
175+
run_in_dstack = false
176176
177177
[core.sync]
178178
enabled = false

dstack

Submodule dstack updated 65 files

meta-dstack/recipes-core/images/dstack-initramfs-files/init

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ export PATH=/sbin:/bin:/usr/sbin:/usr/bin
66
mkdir -p /proc
77
mkdir -p /sys
88
mkdir -p /run
9-
mkdir -p /tapp
9+
mkdir -p /dstack
1010
mount -t proc proc /proc
1111
mount -t sysfs sysfs /sys
1212
mount -t tmpfs tmpfs /run
13-
mount -t tmpfs tmpfs /tapp
13+
mount -t tmpfs tmpfs /dstack
1414

1515
mkdir -p /dev
1616
mount -t devtmpfs devtmpfs /dev
@@ -35,7 +35,9 @@ mount_move_all() {
3535
mount --move /$dir /root/$dir
3636
done
3737
}
38-
mount_move_all sys proc dev run tapp
38+
mount_move_all sys proc dev run dstack
39+
40+
ln -sf dstack /root/tapp || true
3941

4042
echo "Switching to new root"
4143
exec switch_root /root /init

0 commit comments

Comments
 (0)