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 @@ ...@@ -9,7 +9,7 @@
binary_sensor: binary_sensor:
- platform: gpio - platform: gpio
pi2n: pin:
number: GPIO13 number: GPIO13
mode: INPUT_PULLUP mode: INPUT_PULLUP
inverted: True inverted: True
......
...@@ -5,7 +5,7 @@ services: ...@@ -5,7 +5,7 @@ services:
app: app:
image: mbentley/omada-controller:5.9 image: mbentley/omada-controller:5.12
restart: always restart: always
ports: ports:
- {{ omada_port_http }}:8088 - {{ omada_port_http }}:8088
......
...@@ -27,7 +27,7 @@ services: ...@@ -27,7 +27,7 @@ services:
app: app:
image: nextcloud:27.1.1-apache image: nextcloud:27.1.3-apache
restart: always restart: always
volumes: volumes:
- /srv/nextcloud/data/:/var/www/html/ - /srv/nextcloud/data/:/var/www/html/
......
...@@ -24,7 +24,7 @@ def do_work(): ...@@ -24,7 +24,7 @@ def do_work():
# Remove empty lines from topics # Remove empty lines from topics
topics = [] topics = []
for extracted in raw[firstline:lastline-1]: for extracted in raw[firstline:lastline]:
if extracted != '': if extracted != '':
topics.append(extracted) topics.append(extracted)
......