refactor: remove unnecessary package installations from app install scripts

This commit is contained in:
lolwierd
2026-03-30 17:08:07 +05:30
parent 52982ca9e7
commit a118de7bcb
5 changed files with 0 additions and 5 deletions

View File

@@ -26,7 +26,6 @@ mkdir -p "${BOOTSTRAP_DIR}"
source /var/excloud/scripts/caddy-setup.sh source /var/excloud/scripts/caddy-setup.sh
setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR"
apt-get install -y git openssl
if git -C "${ERPNEXT_DIR}" rev-parse 2>/dev/null; then if git -C "${ERPNEXT_DIR}" rev-parse 2>/dev/null; then
echo "Git repo exists" echo "Git repo exists"

View File

@@ -24,7 +24,6 @@ mkdir -p "${BOOTSTRAP_DIR}"
source /var/excloud/scripts/caddy-setup.sh source /var/excloud/scripts/caddy-setup.sh
setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR"
apt-get install -y git openssl
if [ ! -d "${GHOST_DIR}/.git" ]; then if [ ! -d "${GHOST_DIR}/.git" ]; then
git clone "${REPO_URL}" "${GHOST_DIR}" git clone "${REPO_URL}" "${GHOST_DIR}"

View File

@@ -23,7 +23,6 @@ mkdir -p "${BOOTSTRAP_DIR}"
source /var/excloud/scripts/caddy-setup.sh source /var/excloud/scripts/caddy-setup.sh
setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR"
apt-get install -y git openssl
if [ ! -d "${OPENCLAW_DIR}/.git" ]; then if [ ! -d "${OPENCLAW_DIR}/.git" ]; then
git clone "${REPO_URL}" "${OPENCLAW_DIR}" git clone "${REPO_URL}" "${OPENCLAW_DIR}"

View File

@@ -23,7 +23,6 @@ mkdir -p "${BOOTSTRAP_DIR}"
source /var/excloud/scripts/caddy-setup.sh source /var/excloud/scripts/caddy-setup.sh
setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR"
apt-get install -y git
if [ ! -d "${PICOCLAW_DIR}/.git" ]; then if [ ! -d "${PICOCLAW_DIR}/.git" ]; then
git clone "${REPO_URL}" "${PICOCLAW_DIR}" git clone "${REPO_URL}" "${PICOCLAW_DIR}"

View File

@@ -25,7 +25,6 @@ mkdir -p "${BOOTSTRAP_DIR}"
source /var/excloud/scripts/caddy-setup.sh source /var/excloud/scripts/caddy-setup.sh
setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR"
apt-get install -y git openssl
if [ ! -d "${PLAUSIBLE_DIR}/.git" ]; then if [ ! -d "${PLAUSIBLE_DIR}/.git" ]; then
git clone -b "${REPO_REF}" --single-branch "${REPO_URL}" "${PLAUSIBLE_DIR}" git clone -b "${REPO_REF}" --single-branch "${REPO_URL}" "${PLAUSIBLE_DIR}"