Skip to content

Commit 268b594

Browse files
author
Lutz Bender
committed
fix module path for python modules
1 parent e1d7983 commit 268b594

File tree

44 files changed

+80
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+80
-128
lines changed

modules/bezug_alphaess/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
MYLOGFILE="${RAMDISKDIR}/evu.log"
1111
fi
1212

13-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.alpha_ess.device" "counter" "${alphasource}" "${alphav123}" "${alphaip}" >>"${MYLOGFILE}" 2>&1
13+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.alpha_ess.device" "counter" "${alphasource}" "${alphav123}" "${alphaip}" >>"$MYLOGFILE" 2>&1
1414
ret=$?
1515

1616
openwbDebugLog ${DMOD} 2 "EVU RET: ${ret}"

modules/bezug_batterx/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fi
1414

1515
# Werte werden im WR ausgelesen, max eine Abfrage pro Sekunde
1616
if [ ${pvwattmodul} != "wr_batterx" ]; then
17-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.batterx.device" "counter" "${batterx_ip}" >>"${MYLOGFILE}" 2>&1
17+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.batterx.device" "counter" "${batterx_ip}" >>"$MYLOGFILE" 2>&1
1818
ret=$?
1919
fi
2020

modules/bezug_ethmpm3pm/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ else
1212
MYLOGFILE="${RAMDISKDIR}/evu.log"
1313
fi
1414
if { [[ $pvwattmodul != "wr_ethmpm3pmaevu" ]] || [[ $pv2wattmodul != "wr2_ethlovatoaevu" ]]; } && [[ $speichermodul != "speicher_sdmaevu" ]]; then
15-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.openwb_evu_kit.device" "counter" "${evukitversion}" >>"${MYLOGFILE}" 2>&1
15+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.openwb_evu_kit.device" "counter" "${evukitversion}" >>"$MYLOGFILE" 2>&1
1616
ret=$?
1717
openwbDebugLog ${DMOD} 2 "EVU RET: ${ret}"
1818
fi

modules/bezug_ethmpm3pmflex/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
MYLOGFILE="${RAMDISKDIR}/evu.log"
1111
fi
1212

13-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.openwb_flex.device" "counter" "${evuflexversion}" "${evuflexip}" "${evuflexport}" "${evuflexid}" >>"${MYLOGFILE}" 2>&1
13+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.openwb_flex.device" "counter" "${evuflexversion}" "${evuflexip}" "${evuflexport}" "${evuflexid}" >>"$MYLOGFILE" 2>&1
1414
ret=$?
1515

1616
openwbDebugLog ${DMOD} 2 "EVU RET: ${ret}"

modules/bezug_fronius_s0/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ openwbDebugLog ${DMOD} 2 "WR Var2: ${froniusvar2}"
1616
openwbDebugLog ${DMOD} 2 "WR IP2: ${wrfronius2ip}"
1717
openwbDebugLog ${DMOD} 2 "WR Speicher: ${speichermodul}"
1818

19-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.fronius.device" "counter_s0" "${wrfroniusip}" "${froniuserzeugung}" "${froniusvar2}" "${wrfronius2ip}">>"$MYLOGFILE" 2>&1
19+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.fronius.device" "counter_s0" "${wrfroniusip}" "${froniuserzeugung}" "${froniusvar2}" "${wrfronius2ip}">>"$MYLOGFILE" 2>&1
2020

2121
cat "${RAMDISKDIR}/wattbezug"

modules/bezug_fronius_sm/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ openwbDebugLog ${DMOD} 2 "WR Var2: ${froniusvar2}"
1616
openwbDebugLog ${DMOD} 2 "WR IP2: ${wrfronius2ip}"
1717
openwbDebugLog ${DMOD} 2 "WR Speicher: ${speichermodul}"
1818

19-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.fronius.device" "counter_sm" "${wrfroniusip}" "${froniuserzeugung}" "${froniusvar2}" "${wrfronius2ip}">>"$MYLOGFILE" 2>&1
19+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.fronius.device" "counter_sm" "${wrfroniusip}" "${froniuserzeugung}" "${froniusvar2}" "${wrfronius2ip}">>"$MYLOGFILE" 2>&1
2020

2121
cat "${RAMDISKDIR}/wattbezug"

modules/bezug_good_we/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else
1313
MYLOGFILE="${RAMDISKDIR}/evu.log"
1414
fi
1515

16-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.good_we.device" "counter" "${good_we_ip}" "${good_we_id}">>"${MYLOGFILE}" 2>&1
16+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.good_we.device" "counter" "${good_we_ip}" "${good_we_id}">>"$MYLOGFILE" 2>&1
1717
ret=$?
1818

1919
openwbDebugLog ${DMOD} 2 "EVU RET: ${ret}"

modules/bezug_http/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
MYLOGFILE="$RAMDISKDIR/evu.log"
1111
fi
1212

13-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.http.device" "counter" "${bezug_http_w_url}" "${bezug_http_ikwh_url}" "${bezug_http_ekwh_url}" "${bezug_http_l1_url}" "${bezug_http_l2_url}" "${bezug_http_l3_url}" >>"$MYLOGFILE" 2>&1
13+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.http.device" "counter" "${bezug_http_w_url}" "${bezug_http_ikwh_url}" "${bezug_http_ekwh_url}" "${bezug_http_l1_url}" "${bezug_http_l2_url}" "${bezug_http_l3_url}" >>"$MYLOGFILE" 2>&1
1414
ret=$?
1515

1616
openwbDebugLog ${DMOD} 2 "RET: ${ret}"

modules/bezug_janitza/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
MYLOGFILE="${RAMDISKDIR}/evu.log"
1111
fi
1212

13-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.janitza.device" "counter" "${bezug1_ip}" >>"${MYLOGFILE}" 2>&1
13+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.janitza.device" "counter" "${bezug1_ip}" >>"$MYLOGFILE" 2>&1
1414
ret=$?
1515

1616
openwbDebugLog ${DMOD} 2 "EVU RET: ${ret}"

modules/bezug_json/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ openwbDebugLog ${DMOD} 2 "Filter Watt : ${bezugjsonwatt}"
1515
openwbDebugLog ${DMOD} 2 "Filter Bezug: ${bezugjsonkwh}"
1616
openwbDebugLog ${DMOD} 2 "Filter Einsp: ${einspeisungjsonkwh}"
1717

18-
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.json.device" "counter" "${bezugjsonurl}" "${bezugjsonwatt}" "${bezugjsonkwh}" "${einspeisungjsonkwh}" >>"$MYLOGFILE" 2>&1
18+
bash "$OPENWBBASEDIR/packages/legacy_run.sh" "modules.devices.json.device" "counter" "${bezugjsonurl}" "${bezugjsonwatt}" "${bezugjsonkwh}" "${einspeisungjsonkwh}" >>"$MYLOGFILE" 2>&1
1919
ret=$?
2020

2121
openwbDebugLog ${DMOD} 2 "RET: ${ret}"

0 commit comments

Comments
 (0)