chore: fix install.sh for explorer
This commit is contained in:
parent
3d962cd950
commit
1f87ea5e45
|
@ -575,11 +575,11 @@ function install_config() {
|
|||
function install_share_etc() {
|
||||
[ ! -d ${script_dir}/share/etc ] && return
|
||||
for c in `ls ${script_dir}/share/etc/`; do
|
||||
if [ -e /etc/$c ]; then
|
||||
out=/etc/$c.new.`date +%F`
|
||||
if [ -e /etc/${clientName2}/$c ]; then
|
||||
out=/etc/${clientName2}/$c.new.`date +%F`
|
||||
${csudo}cp -f ${script_dir}/share/etc/$c $out ||:
|
||||
else
|
||||
${csudo}cp -f ${script_dir}/share/etc/$c /etc/$c ||:
|
||||
${csudo}cp -f ${script_dir}/share/etc/$c /etc/${clientName2}/$c ||:
|
||||
fi
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue