Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2022-02-23 01:22:10 +0300
committerGitHub <noreply@github.com>2022-02-23 01:22:10 +0300
commit5e76669c5026732d1440e39e93b58220ef7bd354 (patch)
tree9f4efbd702b914d0f3885057f60ddad1698ac6c0
parentc3cb01d24a3823a27caebc745cfcebf8b1521b95 (diff)
add another DEBIAN_FRONTEND=noninteractive (#9212)
-rwxr-xr-xletstest/scripts/test_apache2.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/letstest/scripts/test_apache2.sh b/letstest/scripts/test_apache2.sh
index 5c30bdc35..f7338b3b3 100755
--- a/letstest/scripts/test_apache2.sh
+++ b/letstest/scripts/test_apache2.sh
@@ -7,8 +7,8 @@ if [ "$OS_TYPE" = "ubuntu" ]
then
CONFFILE=/etc/apache2/sites-available/000-default.conf
sudo apt-get update
- sudo apt-get -y --no-upgrade install apache2 curl
- sudo apt-get -y install realpath # needed for test-apache-conf
+ sudo DEBIAN_FRONTEND=noninteractive apt-get -y --no-upgrade install apache2 curl
+ sudo DEBIAN_FRONTEND=noninteractive apt-get -y install realpath # needed for test-apache-conf
# For apache 2.4, set up ServerName
sudo sed -i '/ServerName/ s/#ServerName/ServerName/' $CONFFILE
sudo sed -i '/ServerName/ s/www.example.com/'$PUBLIC_HOSTNAME'/' $CONFFILE