From 1825faabf6641065aa64c4477701f143d29cf329 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Thu, 28 Oct 2021 23:41:25 +0200 Subject: [PATCH] autowip --- bundles/homeassistant/items.py | 20 ++++++++++++++++++++ bundles/homeassistant/metadata.py | 9 +++++++++ nodes/home.openhab.py | 19 +++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 bundles/homeassistant/items.py create mode 100644 bundles/homeassistant/metadata.py create mode 100644 nodes/home.openhab.py diff --git a/bundles/homeassistant/items.py b/bundles/homeassistant/items.py new file mode 100644 index 0000000..7599078 --- /dev/null +++ b/bundles/homeassistant/items.py @@ -0,0 +1,20 @@ +users = { + 'homeassistant': { + 'home': '/var/lib/homeassistant', + }, +} + +directories = { + '/var/lib/homeassistant': { + 'owner': 'homeassistant', + }, + '/var/lib/homeassistant/config': { + 'owner': 'homeassistant', + }, + '/var/lib/homeassistant/venv': { + 'owner': 'homeassistant', + }, +} + + +# https://wiki.instar.com/de/Software/Linux/Home_Assistant/ diff --git a/bundles/homeassistant/metadata.py b/bundles/homeassistant/metadata.py new file mode 100644 index 0000000..9067a4c --- /dev/null +++ b/bundles/homeassistant/metadata.py @@ -0,0 +1,9 @@ +defaults = { + 'apt': { + 'packages': { + 'python3-dev': {}, + 'python3-pip': {}, + 'python3-venv': {}, + }, + }, +} diff --git a/nodes/home.openhab.py b/nodes/home.openhab.py new file mode 100644 index 0000000..c319960 --- /dev/null +++ b/nodes/home.openhab.py @@ -0,0 +1,19 @@ +{ + 'hostname': '10.0.0.14', + 'groups': [ + 'raspberry-pi', + 'debian-10', + ], + 'bundles': [ + ], + 'metadata': { + 'id': '397d6f7f-f5bb-49ab-bdad-f1404e49d0d5', + 'network': { + 'internal': { + 'interface': 'eth0', + 'ipv4': '10.0.0.14/24', + 'gateway4': '10.0.0.1', + }, + }, + }, +}