mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* Add YAML linter * Drop GitHub registry login as its not required at this point * Add YAML document start marker * Fix YAMLlint issues * Fix YAMLlint issues in .github yaml files * Fix YAMLlint issue in .github/dependabot.yml * Remove .github/move.yml * Set dependabot to weekly Co-authored-by: Joakim Sørensen <hi@ludeeus.dev> * Use YAML strip option where appropriate * Fix multiline string Co-authored-by: Joakim Sørensen <hi@ludeeus.dev>
51 lines
903 B
YAML
51 lines
903 B
YAML
---
|
|
version: "1.2"
|
|
slug: dhcp_server
|
|
name: DHCP server
|
|
description: A simple DHCP server
|
|
url: https://home-assistant.io/addons/dhcp_server/
|
|
advanced: true
|
|
arch:
|
|
- armhf
|
|
- armv7
|
|
- aarch64
|
|
- amd64
|
|
- i386
|
|
host_network: true
|
|
image: homeassistant/{arch}-addon-dhcp_server
|
|
options:
|
|
default_lease: 86400
|
|
dns:
|
|
- 8.8.8.8
|
|
- 8.8.4.4
|
|
domain: null
|
|
hosts: []
|
|
max_lease: 172800
|
|
networks:
|
|
- broadcast: 192.168.1.255
|
|
gateway: 192.168.1.1
|
|
interface: eth0
|
|
netmask: 255.255.255.0
|
|
range_end: 192.168.1.200
|
|
range_start: 192.168.1.100
|
|
subnet: 192.168.1.0
|
|
schema:
|
|
default_lease: int
|
|
dns:
|
|
- str
|
|
domain: str
|
|
hosts:
|
|
- ip: str
|
|
mac: str
|
|
name: str
|
|
max_lease: int
|
|
networks:
|
|
- broadcast: str
|
|
gateway: str
|
|
interface: str
|
|
netmask: str
|
|
range_end: str
|
|
range_start: str
|
|
subnet: str
|
|
startup: system
|