Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace wget with curl -fsSL, normalize downloads, and prep for IPv6 #3455

Merged
merged 18 commits into from
Apr 1, 2025

Conversation

MickLesk
Copy link
Member

✍️ Description

This update introduces a full migration from wget and curl -s to curl -fsSL across the entire codebase, following best practices for reliability, security, and error visibility.


✅ Key Changes

  • 🔄 Replaced all wget calls with curl -fsSL or curl -fJL (where --content-disposition was needed)
  • 🔁 Unified all curl -s, curl -sL and partial variants to curl -fsSL
  • 🧠 Introduced smart filename handling for:
    • curl -o <file> (explicit target)
    • curl -O (autodetected filename)
  • 🧼 Removed incorrect/ambiguous uses like wget -qO- ... -O file
  • 🧾 Replaced inline usages such as:
    • bash -c "$(wget ...)"bash -c "$(curl -fsSL ...)"
    • source /dev/stdin <<< $(wget ...)$(curl -fsSL ...)

📁 Scope

Affected directories:

  • /install
  • /ct
  • /misc
  • VM setup scripts (/vm)
  • api.func, build.func, and related helpers

File types:

  • *.sh, *.bash, *.txt, and various install scripts

🌐 IPv6 Preparation

  • ⚙️ Enabled dual-stack / IPv6 endpoints for key services
  • 🧪 Prepared frontend service call targets for native IPv6 support

🧹 Other Improvements

  • ✨ All affected scripts auto-formatted via VSCode Format Document
  • 🧽 Cleanup of legacy logic and unused wget variants
  • 🧾 Commented substitutions in some scripts for reviewer traceability

🔗 Related PR / Issue

Link: #

✅ Prerequisites (X in brackets)

  • Self-review completed – Code follows project standards.
  • Tested thoroughly – Changes work as expected.
  • [] No breaking changes – Existing functionality remains intact.
  • No security risks – No hardcoded secrets, unnecessary privilege escalations, or permission issues.

🛠️ Type of Change (X in brackets)

  • 🐞 Bug fix – Resolves an issue without breaking functionality.
  • New feature – Adds new, non-breaking functionality.
  • 💥 Breaking change – Alters existing functionality in a way that may require updates.
  • 🆕 New script – A fully functional and tested script or script set.
  • 🌍 Website update – Changes to website-related JSON files or metadata.
  • 🔧 Refactoring / Code Cleanup – Improves readability or maintainability without changing functionality.
  • 📝 Documentation update – Changes to README, AppName.md, CONTRIBUTING.md, or other docs.

@MickLesk MickLesk requested review from a team as code owners March 28, 2025 11:03
@MickLesk MickLesk marked this pull request as draft March 28, 2025 11:04
@github-actions github-actions bot added documentation A change to documentation github maintenance Code maintenance or general upkeep of the project update script A change that updates a script labels Mar 28, 2025
@MickLesk MickLesk added breaking change A change that is not backward compatible feature bugfix refactor labels Mar 28, 2025
@pafade89 pafade89 mentioned this pull request Mar 29, 2025
2 tasks
@michelroegl-brunner
Copy link
Member

Looks good to me, i did not find anything obvious.

@MickLesk MickLesk marked this pull request as ready for review April 1, 2025 07:28
@MickLesk MickLesk merged commit 8c051b8 into main Apr 1, 2025
4 of 5 checks passed
@MickLesk MickLesk removed update script A change that updates a script bugfix labels Apr 1, 2025
@community-scripts community-scripts locked as resolved and limited conversation to collaborators Apr 1, 2025
@MickLesk MickLesk added update script A change that updates a script and removed documentation A change to documentation maintenance Code maintenance or general upkeep of the project feature github refactor labels Apr 1, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
breaking change A change that is not backward compatible update script A change that updates a script
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants