dataset/seed/applicationservice/2022.03.08/base-fedora/packer/os/preprocessors

14 lines
206 B
Text
Raw Normal View History

2022-03-08 19:42:28 +01:00
#!/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