- do not create sysconfig.d when already exists [bsc#1121086]
OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=574
This commit is contained in:
parent
bf4d7cec8d
commit
eae869bc96
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 9 10:26:46 UTC 2019 - Petr Gajdos <pgajdos@suse.com>
|
||||||
|
|
||||||
|
- do not create sysconfig.d when already exists [bsc#1121086]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 6 15:14:43 UTC 2019 - Dirk Mueller <dmueller@suse.com>
|
Sun Jan 6 15:14:43 UTC 2019 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ unset sysconfig_setting
|
|||||||
#
|
#
|
||||||
# involve the sysconfig variables
|
# involve the sysconfig variables
|
||||||
#
|
#
|
||||||
mkdir -p ${sysconfd_dir} || exit 1
|
[ -d ${sysconfd_dir} ] || mkdir -p ${sysconfd_dir} || exit 1
|
||||||
for c in global.conf include.conf loadmodule.conf; do
|
for c in global.conf include.conf loadmodule.conf; do
|
||||||
echo "# File generated from $SYSCONFIG_FILE, do not edit. Edit the sysconfig file instead." > ${sysconfd_dir}/$c
|
echo "# File generated from $SYSCONFIG_FILE, do not edit. Edit the sysconfig file instead." > ${sysconfd_dir}/$c
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user