Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • infrastruktur/ansible-warpzone
  • specki/ansible-warpzone
2 results
Show changes
Commits on Source (5)
......@@ -9,7 +9,7 @@
binary_sensor:
- platform: gpio
pi2n:
pin:
number: GPIO13
mode: INPUT_PULLUP
inverted: True
......
......@@ -5,7 +5,7 @@ services:
app:
image: mbentley/omada-controller:5.9
image: mbentley/omada-controller:5.12
restart: always
ports:
- {{ omada_port_http }}:8088
......
......@@ -27,7 +27,7 @@ services:
app:
image: nextcloud:27.1.1-apache
image: nextcloud:27.1.3-apache
restart: always
volumes:
- /srv/nextcloud/data/:/var/www/html/
......
......@@ -24,7 +24,7 @@ def do_work():
# Remove empty lines from topics
topics = []
for extracted in raw[firstline:lastline-1]:
for extracted in raw[firstline:lastline]:
if extracted != '':
topics.append(extracted)
......