dataset/seed/applicationservice/2022.03.08/base-fedora/packer/os/preprocessors
2022-03-08 19:42:28 +01:00

13 lines
206 B
Bash
Executable file

#!/bin/bash
set -xe
echo "Preprocessors"
if [ ! -z $https_proxy ]; then
sed -i "s@%%EXTRA_URL%%@ --proxy=$https_proxy@g" http/ks-34.cfg
else
sed -i "s@%%EXTRA_URL%%@@g" http/ks-34.cfg
fi
exit 0