From 5da62561461f6e5dde6d632ec1be39ed5621e137 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Tue, 21 Jun 2016 11:16:40 +0200 Subject: [PATCH] Fix config name --- .gitignore | 2 +- lib/export.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ea45523..cad684a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ root -root.config +root.conf ihttpd-*.rpm diff --git a/lib/export.sh b/lib/export.sh index b3d6716..e8c65fc 100644 --- a/lib/export.sh +++ b/lib/export.sh @@ -1,9 +1,9 @@ #! /bin/sh -e # Clear config -cat /dev/null > root.config +cat /dev/null > root.conf # Append every config parameters for i in `cat config/*.conf | perl -pne 'undef $_ if /^#/; s/=.*$//'`; do - eval echo ${i}=\$$i | tee -a root.config + eval echo ${i}=\$$i | tee -a root.conf done -- 2.41.0