From 0a1cd25f59501d7cb1daf1b08dd7f510d455bcca Mon Sep 17 00:00:00 2001 From: Sebastian Cabrera Date: Mon, 17 Aug 2026 21:29:56 -0400 Subject: [PATCH] fix $cfg path --- README.md | 4 ++-- install-wings.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c57517f..af7adcf 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ If you choose to enable SSL: certbot certonly --standalone -d yourdomain.com ``` - Automatically modifies: -`/etc/pterodactyl/config.yml` +`/etc/calagopus-wings/config.yml` From: ```yaml ssl: @@ -65,7 +65,7 @@ To: ``` A backup of the config is created as: ``` -/etc/pterodactyl/config.yml.bak +/etc/calagopus-wings/config.yml.bak ``` --- ### 3️⃣ Wings Binary diff --git a/install-wings.sh b/install-wings.sh index 8bde8b8..88dd706 100644 --- a/install-wings.sh +++ b/install-wings.sh @@ -104,7 +104,7 @@ run_with_spinner() { ######################################## update_ssl_config() { local domain="$1" - local cfg="/etc/pterodactyl/config.yml" + local cfg="/etc/calagopus-wings/config.yml" local cert="/etc/letsencrypt/live/${domain}/fullchain.pem" local key="/etc/letsencrypt/live/${domain}/privkey.pem" @@ -252,7 +252,7 @@ if confirm_default_no "Run wings configure --join-data now?"; then JOIN_DATA="$(extract_join_data "$JOIN_DATA_RAW")" if [[ -n "$JOIN_DATA" ]]; then - $SUDO mkdir -p /etc/pterodactyl + $SUDO mkdir -p /etc/calagopus-wings $SUDO "$WINGS_BIN" configure --join-data "$JOIN_DATA" CONFIG_CREATED=true say "Configuration complete"