Skip to content

Commit

Permalink
Merge pull request #3 from martymarty004/2.5
Browse files Browse the repository at this point in the history
2.5
  • Loading branch information
martymarty004 authored Jan 7, 2024
2 parents 5ad75d4 + 745aa12 commit fd48db3
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 90 deletions.
4 changes: 4 additions & 0 deletions dhcp_ipv6_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.5

- Update / Fix deployment

## 2.4

- Fix builder
Expand Down
File renamed without changes.
90 changes: 0 additions & 90 deletions dhcp_ipv6_server/config.json

This file was deleted.

82 changes: 82 additions & 0 deletions dhcp_ipv6_server/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
name: DHCP IPv6 server

Check failure on line 2 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

wrong indentation: expected 0 but found 2
version: 2.5
slug: dhcp_ipv6_server
description: A simple DHCP IPv6 server
url: https://github.com/martymarty004/home-assistant-addons
arch:
- armhf
- armv7
- aarch64
- amd64
- i386
advanced: true
startup: system
host_network: true
image: martymarty004/{arch}-addon-dhcp_ipv6_server
options:
default_lease: 86400
max_lease: 172800
domain: home.local
name_servers: 2001:4860:4860::8888, 2001:4860:4860::8844
extra:
- preferred-lifetime 604800;
option dhcp-renewal-time 3600;
option dhcp-rebinding-time 7200;
allow leasequery;
option dhcp6.info-refresh-time 21600;

networks:
subnet: 3ffe:501:ffff:100::/64

Check failure on line 30 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

wrong indentation: expected 6 but found 8
ranges:

Check failure on line 31 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

trailing spaces
- 3ffe:501:ffff:100::10 3ffe:501:ffff:100::11
3ffe:501:ffff:100:: temporary

Check failure on line 33 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

syntax error: mapping values are not allowed here

prefixes: 3ffe:501:ffff:100::, 3ffe:501:ffff:111:: /64
extra: []

subnet: 3ffe:501:ffff:101::/64"
ranges: 3ffe:501:ffff:101::10 3ffe:501:ffff:101::11
name_servers: 3ffe:501:ffff:101:200:ff:fe00:3f3e
extra: []

subnet: 3ffe:501:ffff:102::/64
ranges: 3ffe:501:ffff:102::10 3ffe:501:ffff:102::11
extra: []

hosts:

Check failure on line 47 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

trailing spaces
name: myclient
client_id: 00:01:00:01:00:04:93:e0:00:00:00:00:a2:a2
addresses: 3ffe:501:ffff:100::1234
prefixes: 3ffe:501:ffff:101::/64, 3ffe:501:ffff:102::/64
name_servers: 3ffe:501:ffff:100:200:ff:fe00:4f4e
extra: []

name: otherclient
mac: 01:00:80:a2:55:67
address: 3ffe:501:ffff:100::4321
extra: []

schema:
default_lease: int
max_lease: int
domain: str
name_servers: str
extra: str?

networks:
- subnet: str
ranges: str?
prefixes: str?
name_servers: str?
extra: str?

hosts:

Check failure on line 74 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

trailing spaces
- name: str
client_id: str?
mac: str?
address: str?
prefixes: str?
name_servers: str?
extra: str?

Check failure on line 82 in dhcp_ipv6_server/config.yaml

View workflow job for this annotation

GitHub Actions / YAMLLint

too many blank lines

0 comments on commit fd48db3

Please sign in to comment.