Bump confd to 1.3

This since there is breaking changes.
This commit is contained in:
Mattias Walström
2024-12-19 14:42:17 +01:00
parent 37b97d9e4c
commit 79bec6877c
5 changed files with 22 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
#
################################################################################
CONFD_VERSION = 1.2
CONFD_VERSION = 1.3
CONFD_SITE_METHOD = local
CONFD_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/confd
CONFD_LICENSE = BSD-3-Clause
+2 -1
View File
@@ -1,6 +1,6 @@
AC_PREREQ(2.61)
# confd version is same as system YANG model version, step on breaking changes
AC_INIT([confd], [1.2], [https://github.com/kernelkit/infix/issues])
AC_INIT([confd], [1.3], [https://github.com/kernelkit/infix/issues])
AM_INIT_AUTOMAKE(1.11 foreign subdir-objects)
AM_SILENT_RULES(yes)
@@ -16,6 +16,7 @@ AC_CONFIG_FILES([
share/migrate/1.0/Makefile
share/migrate/1.1/Makefile
share/migrate/1.2/Makefile
share/migrate/1.3/Makefile
src/Makefile
yang/Makefile
])
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
# SSH is now configurable, add default settings to configuration
file=$1
temp=${file}.tmp
jq '.["infix-services:ssh"] = {
"enabled": true,
"hostkey": ["genkey"],
"listen": [
{"name": "ipv4", "address": "0.0.0.0", "port": 22},
{"name": "ipv6", "address": "::", "port": 22}
]
}' "$file" > "$temp"
mv "$temp" "$file"
+2
View File
@@ -0,0 +1,2 @@
migratedir = $(pkgdatadir)/migrate/1.3
dist_migrate_DATA = 10-ssh-server.sh
+1 -1
View File
@@ -1,2 +1,2 @@
SUBDIRS = 1.0 1.1 1.2
SUBDIRS = 1.0 1.1 1.2 1.3
migratedir = $(pkgdatadir)/migrate