From 97680ce9ed52730d2cfa000bb9b5679c0f4f0ac7 Mon Sep 17 00:00:00 2001 From: Richard DUMAIS Date: Mon, 3 Aug 2020 15:31:18 +0200 Subject: [PATCH] permit httpS to download autorun scripts --- airootfs/etc/systemd/scripts/sysresccd-autorun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airootfs/etc/systemd/scripts/sysresccd-autorun b/airootfs/etc/systemd/scripts/sysresccd-autorun index a5260b1..26a71a0 100755 --- a/airootfs/etc/systemd/scripts/sysresccd-autorun +++ b/airootfs/etc/systemd/scripts/sysresccd-autorun @@ -120,7 +120,7 @@ def main(): sys.exit(0) # ---- parse the autorun sources ---- - if re.match('^http://', ar_source): + if re.match('^https?://', ar_source): search_autoruns(ar_source, ar_autoruns, copyfilefct_http) elif re.match('^/dev/', ar_source): # mount a partition/device mnt1=('mount',ar_source,autorunmnt)