testing
This commit is contained in:
parent
6e7501e54c
commit
0e8aa33feb
@ -8,6 +8,7 @@ readonly CHECKOUT_HISTORY_FILE="/opt/app/tools/atbupdate/checkout_history"
|
||||
readonly GIT_UPDATE_LOG="/opt/app/tools/atbupdate/update_log.csv"
|
||||
readonly OPKG_COMMANDS_FILE="/etc/psa_update/opkg_commands"
|
||||
|
||||
write_log_file () {
|
||||
if [ -f $CHECKOUT_HISTORY_FILE ]; then
|
||||
# repo: customer_281
|
||||
readonly repo=$(basename $(git rev-parse --show-toplevel))
|
||||
@ -26,15 +27,13 @@ if [ -f $CHECKOUT_HISTORY_FILE ]; then
|
||||
echo "DOWNLOAD, /etc/psa_config/DC2C_print04.json, $now, N/A" >> $GIT_UPDATE_LOG
|
||||
echo "DOWNLOAD, /etc/psa_config/DC2C_print29.json, $now, N/A" >> $GIT_UPDATE_LOG
|
||||
echo "DOWNLOAD, /etc/psa_config/DC2C_print32.json, $now, N/A" >> $GIT_UPDATE_LOG
|
||||
if grep -q . "${OPKG_COMMANDS_FILE}"; then
|
||||
if grep -qE . "${OPKG_COMMANDS_FILE}"; then
|
||||
readarray opkg_commands < <(cat $OPKG_COMMANDS_FILE)
|
||||
for opkg_c in "${opkg_commands[@]}"; do
|
||||
# check for lines longer than 'opkg '
|
||||
if [ "${#opkg_c}" -gt 4 ]; then
|
||||
# comment: spaces, at least one '#'
|
||||
grep -qE '^[[:space:]]*#+.*$' <<< "$opkg_c" && continue
|
||||
|
||||
echo "DDD=${#opkg_c}DDD"
|
||||
echo -n "EXECUTE, $opkg_c, $now, N/A" | tr -d '\n\r' >> $GIT_UPDATE_LOG 2>&1
|
||||
echo "" >> $GIT_UPDATE_LOG 2>&1
|
||||
fi
|
||||
@ -48,3 +47,7 @@ else
|
||||
echo " $CHECKOUT_HISTORY_FILE DOES NOT EXIST !!! "
|
||||
echo "*******************************************************"
|
||||
fi
|
||||
}
|
||||
|
||||
write_log_file
|
||||
|
||||
|
@ -28,29 +28,24 @@ get_commit_for_blob () {
|
||||
}
|
||||
|
||||
write_log_file () {
|
||||
local __date=$(date +"%Y-%m-%dT%T")
|
||||
local now=$(date +"%Y-%m-%dT%T")
|
||||
for fn in $(git diff-tree -r HEAD@{1} HEAD --name-only); do
|
||||
if grep -E -q "(DC.*json|dc.*hex|dc.*bin|tariff.*json)" <<< $fn; then
|
||||
if grep -qE "(DC.*json|dc.*hex|dc.*bin|tariff.*json)" <<< $fn; then
|
||||
# called in repository: $fn is e.g. etc/psa_tariff/tariff01.json
|
||||
# add '/' prefix
|
||||
fn=$(echo $fn | awk '{ printf "/"$0 }')
|
||||
# if [[ -f "$fn" ]]; then
|
||||
# blob=$(get_blob "$fn")
|
||||
# commit=$(get_commit_for_blob $blob "$fn")
|
||||
# fsize=$(ls -l "$fn" | awk '{ print $5 }')
|
||||
# echo "$fn $fsize $blob $commit" >> $GIT_PULL_TMP
|
||||
# fi
|
||||
echo "DOWNLOAD, $fn, $__date, N/A" >> "$GIT_UPDATE_LOG"
|
||||
echo "DOWNLOAD, $(echo $fn | awk '{ printf "/"$0 }'), $now, N/A" >> "$GIT_UPDATE_LOG"
|
||||
fi
|
||||
if grep -E -q ".*opkg_commands" <<< $fn; then
|
||||
if grep -qE ".*opkg_commands" <<< $fn; then
|
||||
readarray opkg_commands < <(cat $fn)
|
||||
for opkg_c in "${opkg_commands[@]}"; do
|
||||
test -z $opkg_c && continue;
|
||||
test ! -z $(grep -E "^\s*[#]+.*$" <<< $opkg_c) && continue
|
||||
echo -n "EXECUTE, $opkg_c, $__date, N/A" | tr -d '\n\r' >> $GIT_UPDATE_LOG 2>&1
|
||||
# check for lines longer than 'opkg '
|
||||
if [ "${#opkg_c}" -gt 4 ]; then
|
||||
# comment: spaces, at least one '#'
|
||||
grep -qE '^[[:space:]]*#+.*$' <<< "$opkg_c" && continue
|
||||
echo -n "EXECUTE, $opkg_c, $now, N/A" | tr -d '\n\r' >> $GIT_UPDATE_LOG 2>&1
|
||||
echo "" >> $GIT_UPDATE_LOG 2>&1
|
||||
fi
|
||||
done
|
||||
# source "$fn"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user