Minor change: some variables just renamed

This commit is contained in:
Gerhard Hoffmann 2022-06-03 19:25:47 +02:00
parent 66a41aa8f7
commit 014026a3e9

View File

@ -90,24 +90,24 @@ update() {
revert_customer_repository ; exit 1 revert_customer_repository ; exit 1
fi fi
local files=$(changed_file_names) local changed_files=$(changed_file_names)
local system_files=$(filter_system_files "$files") # conf/ini-files local conf_ini_files=$(filter_conf_ini_files "$changed_files")
# check if *.conf and/or *.ini-files have to md5-sum as denoted # check if *.conf and/or *.ini-files have to md5-sum as denoted
# in update.conf # in update.conf
if ! check_md5_for_changed_conf_and_ini_files "$system_files" ; then if ! check_md5_for_changed_conf_and_ini_files "$conf_ini_files" ; then
log_error "$func:${LINENO}: new customer files wrong" log_error "$func:${LINENO}: new customer files wrong"
revert_customer_repository ; exit 1 revert_customer_repository ; exit 1
fi fi
# copy *.conf and/or *.ini-files to their corresponding system-directories # copy *.conf and/or *.ini-files to their corresponding system-directories
if ! copy $system_files; then if ! copy $conf_ini_files; then
log_error "$func:${LINENO}: copy operation failed" log_error "$func:${LINENO}: copy operation failed"
revert_customer_repository ; exit 1 revert_customer_repository ; exit 1
fi fi
# check if the opkg-command-file has been changed during 'git pull' # check if the opkg-command-file has been changed during 'git pull'
if grep -qE ".*opkg_commands.*?" <<< $files; then if grep -qE ".*opkg_commands.*?" <<< $changed_files; then
# read opkg_cmds: each line respresents an opkg-command # read opkg_cmds: each line respresents an opkg-command
readarray opkg_commands < <(cat $opkg_cmds_file) readarray opkg_commands < <(cat $opkg_cmds_file)
for opkg_c in "${opkg_commands[@]}"; do for opkg_c in "${opkg_commands[@]}"; do