OSDN Git Service

[update] : wget to curl (archiso 45)
authorhayao <shun819.mail@gmail.com>
Wed, 29 Jul 2020 09:12:32 +0000 (18:12 +0900)
committerhayao <shun819.mail@gmail.com>
Wed, 29 Jul 2020 09:41:16 +0000 (18:41 +0900)
Removing wget in favor of curl

configs/releng/airootfs/root/.automated_script.sh:
Replacing wget with curl for the use-case of downloading a
pre-specified remote startup script (changing flags where needed).

configs/releng/packages.x86_64:
Removing wget from the list of installed packages, as
.automated_script.sh was the only reason for it being installed.

channels/share/airootfs.any/root/.automated_script.sh

index 7dbfbfb..72c93e0 100755 (executable)
@@ -23,7 +23,7 @@ automated_script ()
     script="$(script_cmdline)"
     if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then
         if [[ "${script}" =~ ^((http|https|ftp)://) ]]; then
-            wget "${script}" --retry-connrefused -q -O /tmp/startup_script >/dev/null
+            curl "${script}" --retry-connrefused -s -o /tmp/startup_script >/dev/null
             rt=$?
         else
             cp "${script}" /tmp/startup_script