Compare commits
3 Commits
73a18d5615
...
66511262e1
Author | SHA1 | Date | |
---|---|---|---|
66511262e1 | |||
21591d8e3d | |||
a3e311e375 |
@ -145,7 +145,7 @@ if [ ${read_config_sourced:-1} = "1" ]; then # include only once
|
||||
# Zone aus /etc/zone_nr auslesen
|
||||
#
|
||||
readonly ZONE_GROUP=1
|
||||
readonly ZONE=2
|
||||
readonly ZONE=1
|
||||
readonly CUST_BASE_DIR="${CUST_BASE_DIRS[$ZONE]}"
|
||||
assert_d CUST_BASE_DIR
|
||||
|
||||
@ -296,6 +296,7 @@ if [ ${read_config_sourced:-1} = "1" ]; then # include only once
|
||||
assert_f DC2C_PSA_CONF_JSON
|
||||
assert_f DC2C_PSA_SERIAL_JSON
|
||||
assert_f DC2C_PSA_CASH_JSON
|
||||
assert_f OPKG_CMDS_PSA_FILE
|
||||
|
||||
readonly KNOWN_SYS_DIRS=($ETC_SYS_DIR
|
||||
$ATB_SYS_DIR
|
||||
|
@ -42,9 +42,15 @@ copy () {
|
||||
continue
|
||||
fi
|
||||
|
||||
# macht fuer dc keinen sinn
|
||||
# local sysdir=$(echo $f |
|
||||
# sed -E -e s'=(.*szeged/[0-9]/[0-9])(.*)(/.*)=\2=g')
|
||||
# TODO: szeged darf nicht sein
|
||||
# local readonlt __cl=$CUSTOMER_LOCATION
|
||||
# local readonly __q="'"
|
||||
# xxx='$('"echo $f | sed -E -e ${__q}s=(.*$__cl/[0-9]/[0-9])(.*)(/.*)=\2=g$__q"')'
|
||||
# echo $xxx
|
||||
# eval "echo $xxx"
|
||||
|
||||
local readonly __sysdir=$(echo $f |
|
||||
sed -E -e s'=(.*szeged/[0-9]/[0-9])(.*)(/.*)=\2=g')
|
||||
|
||||
# TODO: kuerzen
|
||||
|
||||
@ -55,48 +61,53 @@ copy () {
|
||||
|
||||
local readonly __f=${f##*/}
|
||||
local readonly __m="${CUSTOMER_ID_BASE_DIR}/${f}"
|
||||
local __p=""
|
||||
local __p="${__sysdir}/${__f}"
|
||||
|
||||
# echo "TEST -> $sysdir/$__f"
|
||||
|
||||
# TODO: das kopieren in die system-verzeichnisse muss noch getestet
|
||||
# werden. stimmt noch nicht so ganz.
|
||||
|
||||
if grep -qE "^.*$DC\s*$" <<< ${f}; then
|
||||
__p="${DC_SYS_DIR}/${__f}"
|
||||
log_debug "$func:${LINENO}: __m=$__m"
|
||||
elif grep -qE "^.*tariff[0-9][0-9][.]json\s*$" <<< ${f}; then
|
||||
__p="${TARIFF_SYS_DIR}/${__f}"
|
||||
elif grep -qE "^.*[.]json\s*$" <<< ${f}; then
|
||||
__p="${CONF_SYS_DIR}/${__f}"
|
||||
log_debug "$func:${LINENO}: __m=$__m"
|
||||
elif grep -qE "^.*[.]ini\s*$" <<< ${f}; then
|
||||
if [ "$__f" = "$ATBQT_INI" ]; then
|
||||
log_debug "$func:${LINENO}: __m=$__m $ATB_SYS_DIR/$__f ${f%/*}"
|
||||
if grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
__p="$ATB_SYS_DIR/${__f}"
|
||||
else
|
||||
__p="$ATBAPP_SYS_DIR/${__f}"
|
||||
fi
|
||||
elif [ "$__f" = "$SYSTEM_CONTROL_INI" ]; then
|
||||
if grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
__p="$ATB_SYS_DIR/${__f}"
|
||||
else
|
||||
__p="$SYSCONFIG_SYS_DIR/${__f}"
|
||||
fi
|
||||
elif [ "$__f" = "$SYS_CONFIG_INI" ]; then
|
||||
if grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
__p="$ATB_SYS_DIR/${__f}"
|
||||
else
|
||||
__p="$SYSCONFIG_SYS_DIR/${__f}"
|
||||
fi
|
||||
elif [ "$__f" = "$ISMASMGR_INI" ]; then
|
||||
if grep -qE "$ISMASMGR_SYS_DIR" <<< "${f%/*}"; then
|
||||
__p="$ISMASMGR_SYS_DIR/${__f}"
|
||||
elif grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
__p="$ATB_SYS_DIR/${__f}"
|
||||
else
|
||||
__p="$SYSCONFIG_SYS_DIR/${__f}"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
#if grep -qE "^.*$DC\s*$" <<< ${f}; then
|
||||
# __p="${DC_SYS_DIR}/${__f}"
|
||||
# log_debug "$func:${LINENO}: __m=$__m"
|
||||
#elif grep -qE "^.*tariff[0-9][0-9][.]json\s*$" <<< ${f}; then
|
||||
# __p="${TARIFF_SYS_DIR}/${__f}"
|
||||
#elif grep -qE "^.*[.]json\s*$" <<< ${f}; then
|
||||
# __p="${CONF_SYS_DIR}/${__f}"
|
||||
# log_debug "$func:${LINENO}: __m=$__m"
|
||||
#elif grep -qE "^.*[.]ini\s*$" <<< ${f}; then
|
||||
# if [ "$__f" = "$ATBQT_INI" ]; then
|
||||
# log_debug "$func:${LINENO}: __m=$__m $ATB_SYS_DIR/$__f ${f%/*}"
|
||||
# if grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
# __p="$ATB_SYS_DIR/${__f}"
|
||||
# else
|
||||
# __p="$ATBAPP_SYS_DIR/${__f}"
|
||||
# fi
|
||||
# elif [ "$__f" = "$SYSTEM_CONTROL_INI" ]; then
|
||||
# if grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
# __p="$ATB_SYS_DIR/${__f}"
|
||||
# else
|
||||
# __p="$SYSCONFIG_SYS_DIR/${__f}"
|
||||
# fi
|
||||
# elif [ "$__f" = "$SYS_CONFIG_INI" ]; then
|
||||
# if grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
# __p="$ATB_SYS_DIR/${__f}"
|
||||
# else
|
||||
# __p="$SYSCONFIG_SYS_DIR/${__f}"
|
||||
# fi
|
||||
# elif [ "$__f" = "$ISMASMGR_INI" ]; then
|
||||
# if grep -qE "$ISMASMGR_SYS_DIR" <<< "${f%/*}"; then
|
||||
# __p="$ISMASMGR_SYS_DIR/${__f}"
|
||||
# elif grep -qE "$ATB_SYS_DIR" <<< "${f%/*}"; then
|
||||
# __p="$ATB_SYS_DIR/${__f}"
|
||||
# else
|
||||
# __p="$SYSCONFIG_SYS_DIR/${__f}"
|
||||
# fi
|
||||
# fi
|
||||
#fi
|
||||
|
||||
echo "XXX-- __p=$__p"
|
||||
|
||||
if [ ! -z "$__p" ]; then
|
||||
if cp "$__m" "$__p"; then
|
||||
|
@ -106,7 +106,7 @@ update_psa() {
|
||||
revert_customer_repository
|
||||
exit $__r
|
||||
fi
|
||||
|
||||
|
||||
# copy *.conf and/or *.ini-files to their corresponding system-directories
|
||||
if ! copy $files_to_copy; then
|
||||
local __r=$?
|
||||
@ -114,11 +114,11 @@ update_psa() {
|
||||
revert_customer_repository
|
||||
exit $__r
|
||||
fi
|
||||
|
||||
|
||||
# check if the opkg-command-file has been changed during 'git pull'
|
||||
if grep -qE ".*opkg_commands.*?" <<< $changed_files; then
|
||||
# read opkg_cmds: each line respresents an opkg-command
|
||||
readarray opkg_commands < <(cat $opkg_cmds_file)
|
||||
readarray opkg_commands < <(cat $OPKG_CMDS_PSA_FILE)
|
||||
for opkg_c in "${opkg_commands[@]}"; do
|
||||
if grep -qE "^\s*[#]+.*$" <<< $opkg_c; then
|
||||
continue # found comment line
|
||||
|
Loading…
x
Reference in New Issue
Block a user