Compare commits

..

No commits in common. "0c8b13d2f1c2c5af0e098a6ca23779d7cb72d716" and "58541b1fe3f59573d02f53a11878479b3475445e" have entirely different histories.

View File

@ -8,18 +8,11 @@
marketplace_install_post_setup()
{
local app_name="$1"
local def="${install_containers_dir%/}/$app_name"
local live="$containers_dir$app_name"
local dest="$live/data"
# The compose bind-mounts nginx.conf as a FILE; the generic installer
# copies only config+compose, and a premature container start leaves a
# directory placeholder at the mount path — converge both cases.
[[ -d "$live/nginx.conf" ]] && runFileOp rm -rf "$live/nginx.conf"
runFileOp cp -f "$def/nginx.conf" "$live/nginx.conf" || return 1
local src="${install_containers_dir%/}/$app_name/resources/site"
local dest="$containers_dir$app_name/data"
runFileOp mkdir -p "$dest" || return 1
runFileOp cp -f "$def/resources/site/index.html" "$dest/index.html" || return 1
runFileOp cp -f "$def/$app_name.svg" "$dest/marketplace.svg" || return 1
runFileOp cp -f "$src/index.html" "$dest/index.html" || return 1
runFileOp cp -f "${install_containers_dir%/}/$app_name/$app_name.svg" "$dest/marketplace.svg" || return 1
isSuccessful "Marketplace site seeded. Publish a catalog into it: rsync dist/<channel>/ $dest/<channel>/"
}