commit sysconfig for openSUSE:Factory
Hello community, here is the log from the commit of package sysconfig for openSUSE:Factory checked in at 2015-02-20 12:00:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sysconfig (Old) and /work/SRC/openSUSE:Factory/.sysconfig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "sysconfig" Changes: -------- --- /work/SRC/openSUSE:Factory/sysconfig/sysconfig.changes 2015-01-21 21:56:23.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.sysconfig.new/sysconfig.changes 2015-02-20 12:00:55.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Feb 17 11:23:22 UTC 2015 - mt@suse.de + +- dhcp: add variables for handling of DHCPv4 user-class (bsc#909307) + [+ 0001-dhcp-network-variables-for-dhcp4-user-class.909307.patch] + +------------------------------------------------------------------- @@ -5 +11 @@ -- netconfig: use domain name from hostname (bug#912891) +- netconfig: use domain name from hostname (bnc#912891) @@ -9 +15 @@ -- netconfig: merge NetworkManager settings on -m (bug#900982) +- netconfig: merge NetworkManager settings on -m (bnc#900982) New: ---- 0001-dhcp-network-variables-for-dhcp4-user-class.909307.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sysconfig.spec ++++++ --- /var/tmp/diff_new_pack.CvYqLJ/_old 2015-02-20 12:00:56.000000000 +0100 +++ /var/tmp/diff_new_pack.CvYqLJ/_new 2015-02-20 12:00:56.000000000 +0100 @@ -33,6 +33,7 @@ %define udevdir /lib/udev %endif Source: %name-%version.tar.bz2 +Patch1: 0001-dhcp-network-variables-for-dhcp4-user-class.909307.patch Requires: /sbin/ifup Requires: /sbin/netconfig Requires: sysvinit(network) @@ -74,6 +75,7 @@ %prep %setup -n sysconfig-%{version} +%patch1 -p1 %build autoreconf --force --install ++++++ 0001-dhcp-network-variables-for-dhcp4-user-class.909307.patch ++++++
From 59b8496ff57b745d988cff32596a6988cd045e34 Mon Sep 17 00:00:00 2001 From: Karol Mroz <kmroz@suse.de> Date: Thu, 22 Jan 2015 17:17:54 -0800 Subject: [PATCH] dhcp-network: add sysconfig variables for handling DHCP user-class References: (bsc#909307) Upstream: yes
diff --git a/config/sysconfig.dhcp-network b/config/sysconfig.dhcp-network index 5c36ae6..ca3d8f2 100644 --- a/config/sysconfig.dhcp-network +++ b/config/sysconfig.dhcp-network @@ -77,6 +77,30 @@ DHCLIENT_CLIENT_ID="" # DHCLIENT_VENDOR_CLASS_ID="" +## Type: list<rfc3004,string> +## Default: string +# +# Specifies the format of the DHCLIENT_USER_CLASS_ID variable. +# +# The DHCPv4 option and it's format is specified by RFC3004 as an array +# of class identifiers, but most DHCP clients/servers aren't compliant +# with the specification and send/expect a single string without proper +# RFC3004 length-value tuple format instead. +# +# When set to "rfc3004" DHCLIENT_USER_CLASS_ID[SUFFIX] permit an RFC +# compliant array, otherwise DHCLIENT_USER_CLASS_ID is used as string. +# +DHCLIENT_USER_CLASS_FORMAT="" + +## Type: string +## Default: "" +## Suffix: yes +# +# Specifies the user class identifier (array) to send in dhcp requests. +# The DHCLIENT_USER_CLASS_FORMAT variable specified how to interpret it. +# +DHCLIENT_USER_CLASS_ID="" + ## Type: integer ## Default: "" # -- 2.1.4 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de