14 Commits

30 changed files with 25 additions and 8285 deletions

View File

@@ -1,62 +0,0 @@
#!/bin/bash -
# echo "POST-CHECKOUT"
# echo "PREV-HEAD=$1"
# echo "CURR-HEAD=$2"
# echo "BRANCH-CHECKOUT=$3"
readonly GIT_UPDATE_LOG="/opt/app/tools/atbupdate/update_log.csv"
readonly OPKG_COMMANDS_FILE="./etc/psa_update/opkg_commands"
write_log_file () {
# repo: customer_281
# readonly repo=$(basename $(git rev-parse --show-toplevel))
# branch: customer_281:HEAD->zg1/zone1,origin/zg1/zone1
# readonly branch=$(git log --graph --all --decorate $2 | head -n 1 | sed -E -e 's/(.*?)\((.*)\)/\2/g' | sed -E -e s/[[:space:]]//g)
# readonly line="$repo:$branch"
readonly now="$(date +%Y-%m-%dT%T)"
# echo "DOWNLOAD, /etc/dc/dc2c.bin, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print01.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print02.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print03.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print04.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print05.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print06.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print07.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print08.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print09.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print10.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print11.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print12.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print13.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print14.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print15.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print16.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print17.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print18.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print19.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_print20.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
# echo "DOWNLOAD, /etc/psa_config/DC2C_device.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_cash.json, $now, N/A" >> $GIT_UPDATE_LOG
# echo "DOWNLOAD, /etc/psa_config/DC2C_conf.json, $now, N/A" >> $GIT_UPDATE_LOG
if [ -f "$OPKG_COMMANDS_FILE" ]; then
if grep -qE . "${OPKG_COMMANDS_FILE}"; then
# make sure the file is empty
echo -n "" > $GIT_UPDATE_LOG
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 -n "EXECUTE, $opkg_c, $now, N/A" | tr -d '\n\r' >> $GIT_UPDATE_LOG 2>&1
echo "" >> $GIT_UPDATE_LOG 2>&1
fi
done
fi
fi
}
write_log_file

View File

@@ -1,56 +0,0 @@
#!/bin/bash -
# FILE="/tmp/post-merge$(date +%FT%H-%M-%S)"
# commit=$(git rev-parse --verify HEAD)
# echo "$commit $(git cat-file commit $commit)" >> /tmp/post-merge
# Redirect output to stderr.
exec 1>&2
if [ -z $IFS ]; then
IFS=$'\n'
fi
GIT_UPDATE_LOG=/opt/app/tools/atbupdate/update_log.csv
#TODO: use in UpdateController
get_blob () { # get the blob of the file(name) passed as $1
# note: this can be used for any file in the filesystem
echo $(git hash-object $1)
}
get_commit_for_blob () {
# search for the blob in all commits for the file(name) $1
echo $(git log --all --pretty=format:%H -- $2 |
xargs -I{} bash -c "git ls-tree {} -- $2 |
grep -q $1 && echo -n {} && head -n 1")
}
write_log_file () {
local now=$(date +"%Y-%m-%dT%T")
for fn in $(git diff-tree -r HEAD@{1} HEAD --name-only); do
if grep -qE "DC2C.*json" <<< $fn; then
# called in repository: $fn is e.g. etc/psa_tariff/tariff01.json
# add '/' prefix
echo "DOWNLOAD, $(echo $fn | awk '{ printf "/"$0 }'), $now, N/A" >> "$GIT_UPDATE_LOG"
elif grep -qE "dc2c.bin" <<< $fn; then
# download the file referenced by the link dc2c.bin
echo "DOWNLOAD, "/etc/dc/dc2c.bin", $now, N/A" >> "$GIT_UPDATE_LOG"
elif grep -qE ".*opkg_commands" <<< $fn; then
readarray opkg_commands < <(cat $fn)
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 -n "EXECUTE, $opkg_c, $now, N/A" | tr -d '\n\r' >> $GIT_UPDATE_LOG 2>&1
echo "" >> $GIT_UPDATE_LOG 2>&1
fi
done
fi
done
}
write_log_file

16
.gitignore vendored
View File

@@ -1,16 +0,0 @@
*
## Except
!**/.gitignore
!**/.githooks/post-merge
!/etc/*.ini
!/etc/atb/*.ini
!/etc/psa_config/*
!/etc/psa_update/*
!/etc/psa_tariff/*
!/etc/dc/dc2c.hex
!/opt/app/ATBAPP/*.ini
!/opt/app/sysconfig/*.ini
!/opt/app/ISMASMgr/*.ini

View File

@@ -1,16 +0,0 @@
{
"title":"DC2C_cash ",
"project":"DBM Szeged",
"version":"1.0.0-2024-07-05",
"CoinDenom(15..0)":[200,100,50,0,0,0,0,100,200,100,50,20,10,5,0,3],
"CoinValue(15..0)":[730,365,185,0,0,0,0,100,200,100,50,20,10,5,0,3],
"CoinAccept(15..0)":[1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,1],
"ExchangeRate":365,
"TokenChannel":1,
"BillValues(7..0)":[0,0,0,0,0,0,0,0],
"LocalTaxRate":20,
"ForeignTaxRate":19,
"Surcharge":0,
"Discount":0
}

View File

@@ -1,27 +0,0 @@
"title":"DC2C_pri22",
"project":"DBM Szeged StartParking",
"styl":"size 00",
"text":"Automata száma: ",
"vari":"manu",
"feed":"nl",
"text":"Igazoló sz. sorsz: ",
"feed":"nl",
"vari":"Dynamic07",
"feed":"nl",
"vari":"Dynamic08",
"feed":"nl",
"text":"Az igazolo szelvény",
"feed":"nl"
"text":"a nyugtával együtt érvényes. ",
"feed":"nl",
"feed":"nl",
"text":"Üf. szolg nyitvatartás:",
"feed":"nl",
"text":"Zrínyi utca 4-8",
"feed":"nl",
"text":"H - P: 7:45 - 17:00",
"feed":"nl",
"text":"Tel: (80) 820-500",
"feed":"nl",
"feed":"nl"
}

View File

@@ -1,29 +0,0 @@
{
"title":"DC2C_pri25",
"project":"DBM Szeged StopParking",
"text":"érvényes.",
"feed":"nl",
"feed":"nl",
"text":"Üf. szolg nyitvatartás:"
"feed":"nl",
"text":" Zrínyi utca 4-8",
"styl":"size 00",
"feed":"nl",
"text":" H - P: 7:45 - 17:00",
"feed":"nl",
"text":" Tel: (80) 820-500",
"feed":"nl",
"feed":"nl",
"text":"Szegedi Közlekedési Kft",
"feed":"nl",
"text":" 6720 Szeged ",
"feed":"nl",
"text":" Zrínyi utca 4-8.",
"feed":"nl",
"text":"Adósz: 11092612-2-06",
"feed":"nl",
"text":" A jegy ára az ÁFA-t",
"feed":"nl",
"text":" tartalmazza!",
"feed":"nl"
}

View File

@@ -1,34 +0,0 @@
{
"title":"DC2C_pri28",
"project":"DBM Szeged Error",
"styl":"size 00",
"text":" Üf. szolg nyitvatartás:",
"feed":"nl",
"text":" Zrínyi utca 4-8 ",
"feed":"nl",
"text":" H - P: 7:45 - 17:00",
"feed":"nl",
"text":" Tel: (80) 820-500",
"feed":"nl",
"feed":"nl",
"text":"Szegedi Közlekedési Kft",
"feed":"nl",
"text":" 6720",
"text":" Szeged ",
"feed":"nl",
"text":" Zrínyi utca 4-8",
"feed":"nl",
"text":"Adósz: ",
"text":"11092612-2-06",
"feed":"nl",
"feed":"nl",
"text":"Parkoljon egy érintéssel.",
"feed":"nl",
"text":"Használja bankkártyáját",
"feed":"nl",
"text":" automatáinknál",
"text":" is!",
"feed":"nl",
"feed":"eject"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,851 +0,0 @@
{
"Project" : "Szeged Zone 5",
"Version" : "1.0.1",
"Info" : "6723",
"Currency": [
{
"pcu_id": 2,
"pcu_sign": "Ft",
"pcu_major": "HUF",
"pcu_minor": "",
"pcu_active": true
}
],
"PaymentMethod": [
{
"pme_id": 1,
"pme_label": "progressive"
},
{
"pme_id": 2,
"pme_label": "degressive"
},
{
"pme_id": 3,
"pme_label": "linear"
},
{
"pme_id": 4,
"pme_label": "steps"
}
],
"PaymentOption": [
{
"pop_id": 1081,
"pop_label": "Zone Gelb Mars 5",
"pop_payment_method_id": 3,
"pop_day_end_time": "15:08:00",
"pop_day_night_end_time": "15:08:00",
"pop_price_night": 0,
"pop_min_time": 15,
"pop_max_time": 360,
"pop_min_price": 90,
"pop_carry_over": 1,
"pop_daily_card_price": 2160,
"pop_multi_hour_price": 0
}
],
"PaymentRate": [
{
"pra_payment_option_id": 1081,
"pra_payment_unit_id": 1,
"pra_price": 360
}
],
"Duration": [
{
"pun_id": 1,
"pun_label": "1h",
"pun_duration": 60
},
{
"pun_id": 3,
"pun_label": "15 min",
"pun_duration": 15
},
{
"pun_id": 4,
"pun_label": "1 min",
"pun_duration": 1
},
{
"pun_id": 5,
"pun_label": "Voller Tag",
"pun_duration": 1441
}
],
"WeekDaysWorktime": [
{
"pwd_id": 632,
"pwd_period_week_day_id": 37,
"pwd_period_day_in_week_id": 1,
"pwd_time_from": "08:00:00",
"pwd_time_to": "18:00:00"
},
{
"pwd_id": 633,
"pwd_period_week_day_id": 37,
"pwd_period_day_in_week_id": 2,
"pwd_time_from": "08:00:00",
"pwd_time_to": "18:00:00"
},
{
"pwd_id": 634,
"pwd_period_week_day_id": 37,
"pwd_period_day_in_week_id": 3,
"pwd_time_from": "08:00:00",
"pwd_time_to": "18:00:00"
},
{
"pwd_id": 635,
"pwd_period_week_day_id": 37,
"pwd_period_day_in_week_id": 4,
"pwd_time_from": "08:00:00",
"pwd_time_to": "18:00:00"
},
{
"pwd_id": 636,
"pwd_period_week_day_id": 37,
"pwd_period_day_in_week_id": 5,
"pwd_time_from": "08:00:00",
"pwd_time_to": "18:00:00"
},
{
"pwd_id": 637,
"pwd_period_week_day_id": 37,
"pwd_period_day_in_week_id": 6,
"pwd_time_from": "08:00:00",
"pwd_time_to": "12:00:00"
}
],
"PeriodYear": [
{
"pye_id": 2,
"pye_label": "Whole year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 9,
"pye_label": "Whole year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 10,
"pye_label": "Whole year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 11,
"pye_label": "Whole Year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 12,
"pye_label": "Whole Year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 13,
"pye_label": "Whole Year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 14,
"pye_label": "Whole Year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 15,
"pye_label": "Whole year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 17,
"pye_label": "Whole year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
},
{
"pye_id": 18,
"pye_label": "Whole Year",
"pye_start_month": 1,
"pye_start_day": 1,
"pye_end_month": 12,
"pye_end_day": 31
}
],
"SpecialDays": [
{
"ped_id": 1,
"ped_label": "Republic Day (Hungary)",
"ped_date_start": "2026-10-23",
"ped_date_end": "2026-10-23",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 2,
"ped_label": "Good Friday",
"ped_date_start": "2026-04-03",
"ped_date_end": "2026-04-03",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 3,
"ped_label": "NewYear 27",
"ped_date_start": "2027-01-01",
"ped_date_end": "2027-01-01",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 4,
"ped_label": "NewYear extended 26",
"ped_date_start": "2026-01-02",
"ped_date_end": "2026-01-02",
"ped_period_special_day_id": 2,
"ped_year": 2025
},
{
"ped_id": 5,
"ped_label": "Easter Sunday",
"ped_date_start": "2026-04-05",
"ped_date_end": "2026-04-05",
"ped_period_special_day_id": 2,
"ped_year": 2025
},
{
"ped_id": 6,
"ped_label": "Easter Monday",
"ped_date_start": "2026-04-06",
"ped_date_end": "2026-04-06",
"ped_period_special_day_id": 2,
"ped_year": 2025
},
{
"ped_id": 7,
"ped_label": "Whit Sunday",
"ped_date_start": "2025-06-08",
"ped_date_end": "2025-06-08",
"ped_period_special_day_id": 2,
"ped_year": 2025
},
{
"ped_id": 8,
"ped_label": "Whit Monday",
"ped_date_start": "2026-05-25",
"ped_date_end": "2026-05-25",
"ped_period_special_day_id": 2,
"ped_year": 2025
},
{
"ped_id": 9,
"ped_label": "Revolution Day (Hungary)",
"ped_date_start": "2026-03-15",
"ped_date_end": "2026-03-15",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 10,
"ped_label": "Labour Day",
"ped_date_start": "2026-05-01",
"ped_date_end": "2026-05-01",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 11,
"ped_label": "",
"ped_date_start": "2026-08-21",
"ped_date_end": "2026-08-21",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 12,
"ped_label": "Saint Stephens Day (Hungary)",
"ped_date_start": "2026-08-20",
"ped_date_end": "2026-08-20",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 13,
"ped_label": "All Saints Day",
"ped_date_start": "2026-11-01",
"ped_date_end": "2026-11-01",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 14,
"ped_label": "Christmas 1st day",
"ped_date_start": "2026-12-25",
"ped_date_end": "2026-12-25",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 15,
"ped_label": "Christmas 2nd day",
"ped_date_start": "2026-12-26",
"ped_date_end": "2026-12-26",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 16,
"ped_label": "Christmas 3rd day",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 17,
"ped_label": "Christmas 4th day",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 18,
"ped_label": "Christmas (Sunday)",
"ped_date_start": "2026-12-24",
"ped_date_end": "2026-12-24",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 19,
"ped_label": "Christmas 1st day",
"ped_date_start": "2025-12-25",
"ped_date_end": "2025-12-25",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 20,
"ped_label": "Christmas 2nd day",
"ped_date_start": "2025-12-26",
"ped_date_end": "2025-12-26",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 21,
"ped_label": "Christmas 3rd day",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 22,
"ped_label": "Christmas",
"ped_date_start": "2025-12-24",
"ped_date_end": "2025-12-24",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 30,
"ped_label": "Saturday 25",
"ped_date_start": "2025-12-06",
"ped_date_end": "2025-12-06",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 31,
"ped_label": "Saturday 25",
"ped_date_start": "2025-12-20",
"ped_date_end": "2025-12-20",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 32,
"ped_label": "Saturday 25",
"ped_date_start": "2025-12-27",
"ped_date_end": "2025-12-27",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 33,
"ped_label": "Saturday 26",
"ped_date_start": "2026-01-03",
"ped_date_end": "2026-01-03",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 34,
"ped_label": "Saturday 26",
"ped_date_start": "2026-01-17",
"ped_date_end": "2026-01-17",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 34,
"ped_label": "Saturday 26",
"ped_date_start": "2026-01-24",
"ped_date_end": "2026-01-24",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 35,
"ped_label": "Saturday 26",
"ped_date_start": "2026-01-31",
"ped_date_end": "2026-01-31",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 36,
"ped_label": "Saturday 26",
"ped_date_start": "2026-02-07",
"ped_date_end": "2026-02-07",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 37,
"ped_label": "Saturday 26",
"ped_date_start": "2026-02-14",
"ped_date_end": "2026-02-14",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 38,
"ped_label": "Saturday 26",
"ped_date_start": "2026-02-21",
"ped_date_end": "2026-02-21",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 38,
"ped_label": "Saturday 26",
"ped_date_start": "2026-02-28",
"ped_date_end": "2026-02-28",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 39,
"ped_label": "Saturday 26",
"ped_date_start": "2026-03-07",
"ped_date_end": "2026-03-07",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 40,
"ped_label": "Saturday 26",
"ped_date_start": "2026-03-14",
"ped_date_end": "2026-03-14",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 41,
"ped_label": "Saturday 26",
"ped_date_start": "2026-03-21",
"ped_date_end": "2026-03-21",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 42,
"ped_label": "Saturday 26",
"ped_date_start": "2026-03-28",
"ped_date_end": "2026-03-28",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 43,
"ped_label": "Saturday 26",
"ped_date_start": "2026-04-04",
"ped_date_end": "2026-04-04",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 44,
"ped_label": "Saturday 26",
"ped_date_start": "2026-04-11",
"ped_date_end": "2026-04-11",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 45,
"ped_label": "Saturday 26",
"ped_date_start": "2026-04-18",
"ped_date_end": "2026-04-18",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 46,
"ped_label": "Saturday 26",
"ped_date_start": "2026-04-25",
"ped_date_end": "2026-04-25",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 47,
"ped_label": "Saturday 26",
"ped_date_start": "2026-05-02",
"ped_date_end": "2026-05-02",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 48,
"ped_label": "Saturday 26",
"ped_date_start": "2026-05-09",
"ped_date_end": "2026-05-09",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 49,
"ped_label": "Saturday 26",
"ped_date_start": "2026-05-16",
"ped_date_end": "2026-05-16",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 50,
"ped_label": "Saturday 26",
"ped_date_start": "2026-05-23",
"ped_date_end": "2026-05-23",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 51,
"ped_label": "Saturday 26",
"ped_date_start": "2026-05-30",
"ped_date_end": "2026-05-30",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 52,
"ped_label": "Saturday 26",
"ped_date_start": "2026-06-06",
"ped_date_end": "2026-06-06",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 53,
"ped_label": "Saturday 26",
"ped_date_start": "2026-06-13",
"ped_date_end": "2026-06-13",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 54,
"ped_label": "Saturday 26",
"ped_date_start": "2026-06-20",
"ped_date_end": "2026-06-20",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 55,
"ped_label": "Saturday 26",
"ped_date_start": "2026-06-27",
"ped_date_end": "2026-06-27",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 56,
"ped_label": "Saturday 26",
"ped_date_start": "2026-07-04",
"ped_date_end": "2026-07-04",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 57,
"ped_label": "Saturday 26",
"ped_date_start": "2026-07-11",
"ped_date_end": "2026-07-11",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 58,
"ped_label": "Saturday 26",
"ped_date_start": "2026-07-18",
"ped_date_end": "2026-07-18",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 59,
"ped_label": "Saturday 26",
"ped_date_start": "2026-07-25",
"ped_date_end": "2026-07-25",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 60,
"ped_label": "Saturday 26",
"ped_date_start": "2026-08-01",
"ped_date_end": "2026-08-01",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 61,
"ped_label": "Saturday 26",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 62,
"ped_label": "Saturday 26",
"ped_date_start": "2026-08-15",
"ped_date_end": "2026-08-15",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 63,
"ped_label": "Saturday 26",
"ped_date_start": "2026-08-22",
"ped_date_end": "2026-08-22",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 64,
"ped_label": "Saturday 26",
"ped_date_start": "2026-08-29",
"ped_date_end": "2026-08-29",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 65,
"ped_label": "Saturday 26",
"ped_date_start": "2026-09-05",
"ped_date_end": "2026-09-05",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 66,
"ped_label": "Saturday 26",
"ped_date_start": "2026-09-12",
"ped_date_end": "2026-09-12",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 67,
"ped_label": "Saturday 26",
"ped_date_start": "2026-09-19",
"ped_date_end": "2026-09-19",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 68,
"ped_label": "Saturday 26",
"ped_date_start": "2026-09-26",
"ped_date_end": "2026-09-26",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 69,
"ped_label": "Saturday 26",
"ped_date_start": "2026-10-03",
"ped_date_end": "2026-10-03",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 70,
"ped_label": "Saturday 26",
"ped_date_start": "2026-10-10",
"ped_date_end": "2026-10-10",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 71,
"ped_label": "Saturday 26",
"ped_date_start": "2026-10-17",
"ped_date_end": "2026-10-17",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 72,
"ped_label": "Saturday 26",
"ped_date_start": "2026-10-24",
"ped_date_end": "2026-10-24",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 73,
"ped_label": "Saturday 26",
"ped_date_start": "2026-10-31",
"ped_date_end": "2026-10-31",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 74,
"ped_label": "Saturday 26",
"ped_date_start": "2026-11-07",
"ped_date_end": "2026-11-07",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 75,
"ped_label": "Saturday 26",
"ped_date_start": "2026-11-14",
"ped_date_end": "2026-11-14",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 76,
"ped_label": "Saturday 26",
"ped_date_start": "2026-11-21",
"ped_date_end": "2026-11-21",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 77,
"ped_label": "Saturday 26",
"ped_date_start": "2026-11-28",
"ped_date_end": "2026-11-28",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 78,
"ped_label": "Saturday 26",
"ped_date_start": "2026-12-05",
"ped_date_end": "2026-12-05",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 79,
"ped_label": "Saturday 26",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 80,
"ped_label": "Saturday 26",
"ped_date_start": "2026-12-19",
"ped_date_end": "2026-12-19",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 81,
"ped_label": "Saturday 26",
"ped_date_start": "2026-12-26",
"ped_date_end": "2026-12-26",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 82,
"ped_label": "Saturday 27",
"ped_date_start": "2027-01-02",
"ped_date_end": "2027-01-02",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 83,
"ped_label": "reserve",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 84,
"ped_label": "reserve",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
},
{
"ped_id": 85,
"ped_label": "reserve",
"ped_date_start": "",
"ped_date_end": "",
"ped_period_special_day_id": 2,
"ped_year": 0
}
]
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,20 +0,0 @@
###############################################################################
# !!! NOTE !!!
###############################################################################
# opkg-commands added to this file will be executed by ATBUpdateTool.
###############################################################################
##
opkg update
# opkg install prepare-update
# download packages
# opkg --cache /var/cache/opkg --download-only upgrade tariff-config-281
# opkg --cache /var/cache/opkg --download-only upgrade libmobilisis-calc2
# opkg --cache /var/cache/opkg --download-only upgrade atb-plugin-calculateprice-mobilisis
opkg --cache /var/cache/opkg --download-only upgrade atbqt=4.99.11+git0+66f98a3bef-r0
opkg --cache /var/cache/opkg --download-only upgrade apism=1.7.0-r1
# install packages
# opkg --cache /var/cache/opkg upgrade tariff-config-281
# opkg --cache /var/cache/opkg upgrade libmobilisis-calc2
# opkg --cache /var/cache/opkg upgrade atb-plugin-calculateprice-mobilisis
opkg --cache /var/cache/opkg upgrade atbqt=4.99.11+git0+66f98a3bef-r0
opkg --cache /var/cache/opkg upgrade apism=1.7.0-r1

1
szeged/.location Normal file
View File

@@ -0,0 +1 @@
szeged

1
szeged/1/.zone_group Normal file
View File

@@ -0,0 +1 @@
contained zones in group 1

1
szeged/1/1/.zone Normal file
View File

@@ -0,0 +1 @@
1

0
szeged/1/1/etc/.psa.conf Normal file
View File

View File

View File

View File

View File

0
szeged/1/1/tmp/.tmp.conf Normal file
View File

1
szeged/1/1/zone Normal file
View File

@@ -0,0 +1 @@
1

1
szeged/1/zone_group Normal file
View File

@@ -0,0 +1 @@
contained zones in group 1

1
szeged/location Normal file
View File

@@ -0,0 +1 @@
szeged

19
szeged/update.conf Normal file
View File

@@ -0,0 +1,19 @@
{
"ini" : {
"/opt/app/sysconfig/ISMASMgr.ini" : "d41d8cd98f00b204e9800998ecf8427e",
"/opt/app/sysconfig/sysconfig.ini" : "d41d8cd98f00b204e9800998ecf8427e",
"/opt/app/sysconfig/SystemControl.ini" : "d41d8cd98f00b204e9800998ecf8427e"
},
"conf" : {
"szeged/1/1/etc/psa_config/emp.conf" : "d41d8cd98f00b204e9800998ecf8427e",
"szeged/1/1/etc/psa_config/printer.conf": "d41d8cd98f00b204e9800998ecf8427e"
},
"opkg" : {
"atbqt" : {
"Version" : "1.0.0-r1",
"MD5Sum" : "642eda2b3637291b024ef152479218bc",
"Architecture" : "cortexa9t2hf-neon"
}
}
}