All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs
@ 2015-07-17  6:31 rongqing.li
  2015-07-27  0:55 ` Rongqing Li
  0 siblings, 1 reply; 4+ messages in thread
From: rongqing.li @ 2015-07-17  6:31 UTC (permalink / raw)
  To: openembedded-core

From: Li Wang <li.wang@windriver.com>

Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the configuration
for ntp, nis or other programes

These codes are from redhat rpm package.

Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Roy Li <rongqing.li@windriver.com>
---
 .../dhcp/dhcp/dhcp-add-exec-script-function.patch  | 101 +++++++++++++++++++++
 meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb       |   1 +
 meta/recipes-connectivity/dhcp/files/dhclient.conf |   1 +
 3 files changed, 103 insertions(+)
 create mode 100644 meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch

diff --git a/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
new file mode 100644
index 0000000..73b3ce4
--- /dev/null
+++ b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
@@ -0,0 +1,101 @@
+[PATCH] dhcp: add exec script function
+
+Upstream-Statue: Pending
+
+Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the configuration
+for ntp, nis or other programes
+
+These codes are from redhat rpm packages.
+
+Signed-off-by: Li Wang <li.wang@windriver.com>
+Signed-off-by: Roy Li <rongqing.li@windriver.com>
+---
+ client/scripts/linux | 25 ++++++++++++++++++++++++-
+ 1 file changed, 24 insertions(+), 1 deletion(-)
+
+diff --git a/client/scripts/linux b/client/scripts/linux
+index 232a0aa..bdb5e22 100755
+--- a/client/scripts/linux
++++ b/client/scripts/linux
+@@ -24,6 +24,8 @@
+ 
+ # 'ip' just looks too weird.  /sbin/ip looks less weird.
+ ip=/sbin/ip
++ETCDIR="/etc/dhcp"
++export SAVEDIR=/var/lib/dhclient
+ 
+ make_resolv_conf() {
+   if [ x"$new_domain_name_servers" != x ]; then
+@@ -80,6 +82,20 @@ exit_with_hooks() {
+   exit $exit_status
+ }
+ 
++execute_client_side_configuration_scripts() {
++# execute any additional client side configuration scripts we have
++    if [ "${1}" == "config" ] || [ "${1}" == "restore" ]; then
++        for f in ${ETCDIR}/dhclient.d/*.sh ; do
++            if [ -x ${f} ]; then
++                subsystem="${f%.sh}"
++                subsystem="${subsystem##*/}"
++                . ${f}
++                "${subsystem}_${1}"
++            fi
++        done
++    fi
++}
++
+ # Invoke the local dhcp client enter hooks, if they exist.
+ if [ -f /etc/dhclient-enter-hooks ]; then
+   exit_status=0
+@@ -198,11 +214,14 @@ if [ x$reason = xBOUND ] || [ x$reason = xRENEW ] || \
+     ${ip} -4 route add ${alias_ip_address} dev ${interface} >/dev/null 2>&1
+   fi
+   make_resolv_conf
++  execute_client_side_configuration_scripts "config"
+   exit_with_hooks 0
+ fi
+ 
+ if [ x$reason = xEXPIRE ] || [ x$reason = xFAIL ] || [ x$reason = xRELEASE ] \
+    || [ x$reason = xSTOP ]; then
++  execute_client_side_configuration_scripts "restore"
++
+   if [ x$alias_ip_address != x ]; then
+     # Turn off alias interface.
+     ${ip} -4 addr flush dev ${interface} label ${interface}:0
+@@ -281,7 +300,7 @@ if [ x$reason = xBOUND6 ] ; then
+ 
+   # Check for nameserver options.
+   make_resolv_conf
+-
++  execute_client_side_configuration_scripts "config"
+   exit_with_hooks 0
+ fi
+ 
+@@ -299,6 +318,7 @@ if [ x$reason = xRENEW6 ] || [ x$reason = xREBIND6 ] ; then
+     make_resolv_conf
+   fi
+ 
++  execute_client_side_configuration_scripts "config"
+   exit_with_hooks 0
+ fi
+ 
+@@ -310,6 +330,7 @@ if [ x$reason = xDEPREF6 ] ; then
+   ${ip} -f inet6 addr change ${new_ip6_address}/${new_ip6_prefixlen} \
+        dev ${interface} scope global preferred_lft 0
+ 
++  execute_client_side_configuration_scripts "config"
+   exit_with_hooks 0
+ fi
+ 
+@@ -318,6 +339,8 @@ if [ x$reason = xEXPIRE6 -o x$reason = xRELEASE6 -o x$reason = xSTOP6 ] ; then
+     exit_with_hooks 2;
+   fi
+ 
++  execute_client_side_configuration_scripts "restore"
++
+   ${ip} -f inet6 addr del ${old_ip6_address}/${old_ip6_prefixlen} \
+ 	dev ${interface}
+ 
+-- 
+1.9.1
+
diff --git a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
index b4a05fc..a73d31f 100644
--- a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
+++ b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
@@ -6,6 +6,7 @@ SRC_URI += "file://dhcp-3.0.3-dhclient-dbus.patch;striplevel=0 \
             file://fixsepbuild.patch \
             file://dhclient-script-drop-resolv.conf.dhclient.patch \
             file://replace-ifconfig-route.patch \
+            file://dhcp-add-exec-script-function.patch \
            "
 
 SRC_URI[md5sum] = "5a284875dd2c12ddd388416d69156a67"
diff --git a/meta/recipes-connectivity/dhcp/files/dhclient.conf b/meta/recipes-connectivity/dhcp/files/dhclient.conf
index 0e6dcf9..0f7d42f 100644
--- a/meta/recipes-connectivity/dhcp/files/dhclient.conf
+++ b/meta/recipes-connectivity/dhcp/files/dhclient.conf
@@ -17,6 +17,7 @@
 #supersede domain-name "fugue.com home.vix.com";
 #prepend domain-name-servers 127.0.0.1;
 request subnet-mask, broadcast-address, time-offset, routers,
+	nis-domain, nis-servers, domain-search, ntp-servers,
 	domain-name, domain-name-servers, host-name,
 	netbios-name-servers, netbios-scope;
 #require subnet-mask, domain-name-servers;
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs
  2015-07-17  6:31 [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs rongqing.li
@ 2015-07-27  0:55 ` Rongqing Li
  2015-08-10  2:09   ` Rongqing Li
  0 siblings, 1 reply; 4+ messages in thread
From: Rongqing Li @ 2015-07-27  0:55 UTC (permalink / raw)
  To: openembedded-core

ping

-Roy

On 2015年07月17日 14:31, rongqing.li@windriver.com wrote:
> From: Li Wang <li.wang@windriver.com>
>
> Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the configuration
> for ntp, nis or other programes
>
> These codes are from redhat rpm package.
>
> Signed-off-by: Li Wang <li.wang@windriver.com>
> Signed-off-by: Roy Li <rongqing.li@windriver.com>
> ---
>   .../dhcp/dhcp/dhcp-add-exec-script-function.patch  | 101 +++++++++++++++++++++
>   meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb       |   1 +
>   meta/recipes-connectivity/dhcp/files/dhclient.conf |   1 +
>   3 files changed, 103 insertions(+)
>   create mode 100644 meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>
> diff --git a/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
> new file mode 100644
> index 0000000..73b3ce4
> --- /dev/null
> +++ b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
> @@ -0,0 +1,101 @@
> +[PATCH] dhcp: add exec script function
> +
> +Upstream-Statue: Pending
> +
> +Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the configuration
> +for ntp, nis or other programes
> +
> +These codes are from redhat rpm packages.
> +
> +Signed-off-by: Li Wang <li.wang@windriver.com>
> +Signed-off-by: Roy Li <rongqing.li@windriver.com>
> +---
> + client/scripts/linux | 25 ++++++++++++++++++++++++-
> + 1 file changed, 24 insertions(+), 1 deletion(-)
> +
> +diff --git a/client/scripts/linux b/client/scripts/linux
> +index 232a0aa..bdb5e22 100755
> +--- a/client/scripts/linux
> ++++ b/client/scripts/linux
> +@@ -24,6 +24,8 @@
> +
> + # 'ip' just looks too weird.  /sbin/ip looks less weird.
> + ip=/sbin/ip
> ++ETCDIR="/etc/dhcp"
> ++export SAVEDIR=/var/lib/dhclient
> +
> + make_resolv_conf() {
> +   if [ x"$new_domain_name_servers" != x ]; then
> +@@ -80,6 +82,20 @@ exit_with_hooks() {
> +   exit $exit_status
> + }
> +
> ++execute_client_side_configuration_scripts() {
> ++# execute any additional client side configuration scripts we have
> ++    if [ "${1}" == "config" ] || [ "${1}" == "restore" ]; then
> ++        for f in ${ETCDIR}/dhclient.d/*.sh ; do
> ++            if [ -x ${f} ]; then
> ++                subsystem="${f%.sh}"
> ++                subsystem="${subsystem##*/}"
> ++                . ${f}
> ++                "${subsystem}_${1}"
> ++            fi
> ++        done
> ++    fi
> ++}
> ++
> + # Invoke the local dhcp client enter hooks, if they exist.
> + if [ -f /etc/dhclient-enter-hooks ]; then
> +   exit_status=0
> +@@ -198,11 +214,14 @@ if [ x$reason = xBOUND ] || [ x$reason = xRENEW ] || \
> +     ${ip} -4 route add ${alias_ip_address} dev ${interface} >/dev/null 2>&1
> +   fi
> +   make_resolv_conf
> ++  execute_client_side_configuration_scripts "config"
> +   exit_with_hooks 0
> + fi
> +
> + if [ x$reason = xEXPIRE ] || [ x$reason = xFAIL ] || [ x$reason = xRELEASE ] \
> +    || [ x$reason = xSTOP ]; then
> ++  execute_client_side_configuration_scripts "restore"
> ++
> +   if [ x$alias_ip_address != x ]; then
> +     # Turn off alias interface.
> +     ${ip} -4 addr flush dev ${interface} label ${interface}:0
> +@@ -281,7 +300,7 @@ if [ x$reason = xBOUND6 ] ; then
> +
> +   # Check for nameserver options.
> +   make_resolv_conf
> +-
> ++  execute_client_side_configuration_scripts "config"
> +   exit_with_hooks 0
> + fi
> +
> +@@ -299,6 +318,7 @@ if [ x$reason = xRENEW6 ] || [ x$reason = xREBIND6 ] ; then
> +     make_resolv_conf
> +   fi
> +
> ++  execute_client_side_configuration_scripts "config"
> +   exit_with_hooks 0
> + fi
> +
> +@@ -310,6 +330,7 @@ if [ x$reason = xDEPREF6 ] ; then
> +   ${ip} -f inet6 addr change ${new_ip6_address}/${new_ip6_prefixlen} \
> +        dev ${interface} scope global preferred_lft 0
> +
> ++  execute_client_side_configuration_scripts "config"
> +   exit_with_hooks 0
> + fi
> +
> +@@ -318,6 +339,8 @@ if [ x$reason = xEXPIRE6 -o x$reason = xRELEASE6 -o x$reason = xSTOP6 ] ; then
> +     exit_with_hooks 2;
> +   fi
> +
> ++  execute_client_side_configuration_scripts "restore"
> ++
> +   ${ip} -f inet6 addr del ${old_ip6_address}/${old_ip6_prefixlen} \
> + 	dev ${interface}
> +
> +--
> +1.9.1
> +
> diff --git a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
> index b4a05fc..a73d31f 100644
> --- a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
> +++ b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
> @@ -6,6 +6,7 @@ SRC_URI += "file://dhcp-3.0.3-dhclient-dbus.patch;striplevel=0 \
>               file://fixsepbuild.patch \
>               file://dhclient-script-drop-resolv.conf.dhclient.patch \
>               file://replace-ifconfig-route.patch \
> +            file://dhcp-add-exec-script-function.patch \
>              "
>
>   SRC_URI[md5sum] = "5a284875dd2c12ddd388416d69156a67"
> diff --git a/meta/recipes-connectivity/dhcp/files/dhclient.conf b/meta/recipes-connectivity/dhcp/files/dhclient.conf
> index 0e6dcf9..0f7d42f 100644
> --- a/meta/recipes-connectivity/dhcp/files/dhclient.conf
> +++ b/meta/recipes-connectivity/dhcp/files/dhclient.conf
> @@ -17,6 +17,7 @@
>   #supersede domain-name "fugue.com home.vix.com";
>   #prepend domain-name-servers 127.0.0.1;
>   request subnet-mask, broadcast-address, time-offset, routers,
> +	nis-domain, nis-servers, domain-search, ntp-servers,
>   	domain-name, domain-name-servers, host-name,
>   	netbios-name-servers, netbios-scope;
>   #require subnet-mask, domain-name-servers;
>

-- 
Best Reagrds,
Roy | RongQing Li


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs
  2015-07-27  0:55 ` Rongqing Li
@ 2015-08-10  2:09   ` Rongqing Li
  2015-08-20  7:17     ` Rongqing Li
  0 siblings, 1 reply; 4+ messages in thread
From: Rongqing Li @ 2015-08-10  2:09 UTC (permalink / raw)
  To: openembedded-core



On 2015年07月27日 08:55, Rongqing Li wrote:
> ping
>
> -Roy

ping

-R

>
> On 2015年07月17日 14:31, rongqing.li@windriver.com wrote:
>> From: Li Wang <li.wang@windriver.com>
>>
>> Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the configuration
>> for ntp, nis or other programes
>>
>> These codes are from redhat rpm package.
>>
>> Signed-off-by: Li Wang <li.wang@windriver.com>
>> Signed-off-by: Roy Li <rongqing.li@windriver.com>
>> ---
>>   .../dhcp/dhcp/dhcp-add-exec-script-function.patch  | 101
>> +++++++++++++++++++++
>>   meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb       |   1 +
>>   meta/recipes-connectivity/dhcp/files/dhclient.conf |   1 +
>>   3 files changed, 103 insertions(+)
>>   create mode 100644
>> meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>>
>> diff --git
>> a/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>> b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>> new file mode 100644
>> index 0000000..73b3ce4
>> --- /dev/null
>> +++
>> b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>> @@ -0,0 +1,101 @@
>> +[PATCH] dhcp: add exec script function
>> +
>> +Upstream-Statue: Pending
>> +
>> +Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the
>> configuration
>> +for ntp, nis or other programes
>> +
>> +These codes are from redhat rpm packages.
>> +
>> +Signed-off-by: Li Wang <li.wang@windriver.com>
>> +Signed-off-by: Roy Li <rongqing.li@windriver.com>
>> +---
>> + client/scripts/linux | 25 ++++++++++++++++++++++++-
>> + 1 file changed, 24 insertions(+), 1 deletion(-)
>> +
>> +diff --git a/client/scripts/linux b/client/scripts/linux
>> +index 232a0aa..bdb5e22 100755
>> +--- a/client/scripts/linux
>> ++++ b/client/scripts/linux
>> +@@ -24,6 +24,8 @@
>> +
>> + # 'ip' just looks too weird.  /sbin/ip looks less weird.
>> + ip=/sbin/ip
>> ++ETCDIR="/etc/dhcp"
>> ++export SAVEDIR=/var/lib/dhclient
>> +
>> + make_resolv_conf() {
>> +   if [ x"$new_domain_name_servers" != x ]; then
>> +@@ -80,6 +82,20 @@ exit_with_hooks() {
>> +   exit $exit_status
>> + }
>> +
>> ++execute_client_side_configuration_scripts() {
>> ++# execute any additional client side configuration scripts we have
>> ++    if [ "${1}" == "config" ] || [ "${1}" == "restore" ]; then
>> ++        for f in ${ETCDIR}/dhclient.d/*.sh ; do
>> ++            if [ -x ${f} ]; then
>> ++                subsystem="${f%.sh}"
>> ++                subsystem="${subsystem##*/}"
>> ++                . ${f}
>> ++                "${subsystem}_${1}"
>> ++            fi
>> ++        done
>> ++    fi
>> ++}
>> ++
>> + # Invoke the local dhcp client enter hooks, if they exist.
>> + if [ -f /etc/dhclient-enter-hooks ]; then
>> +   exit_status=0
>> +@@ -198,11 +214,14 @@ if [ x$reason = xBOUND ] || [ x$reason = xRENEW
>> ] || \
>> +     ${ip} -4 route add ${alias_ip_address} dev ${interface}
>> >/dev/null 2>&1
>> +   fi
>> +   make_resolv_conf
>> ++  execute_client_side_configuration_scripts "config"
>> +   exit_with_hooks 0
>> + fi
>> +
>> + if [ x$reason = xEXPIRE ] || [ x$reason = xFAIL ] || [ x$reason =
>> xRELEASE ] \
>> +    || [ x$reason = xSTOP ]; then
>> ++  execute_client_side_configuration_scripts "restore"
>> ++
>> +   if [ x$alias_ip_address != x ]; then
>> +     # Turn off alias interface.
>> +     ${ip} -4 addr flush dev ${interface} label ${interface}:0
>> +@@ -281,7 +300,7 @@ if [ x$reason = xBOUND6 ] ; then
>> +
>> +   # Check for nameserver options.
>> +   make_resolv_conf
>> +-
>> ++  execute_client_side_configuration_scripts "config"
>> +   exit_with_hooks 0
>> + fi
>> +
>> +@@ -299,6 +318,7 @@ if [ x$reason = xRENEW6 ] || [ x$reason =
>> xREBIND6 ] ; then
>> +     make_resolv_conf
>> +   fi
>> +
>> ++  execute_client_side_configuration_scripts "config"
>> +   exit_with_hooks 0
>> + fi
>> +
>> +@@ -310,6 +330,7 @@ if [ x$reason = xDEPREF6 ] ; then
>> +   ${ip} -f inet6 addr change ${new_ip6_address}/${new_ip6_prefixlen} \
>> +        dev ${interface} scope global preferred_lft 0
>> +
>> ++  execute_client_side_configuration_scripts "config"
>> +   exit_with_hooks 0
>> + fi
>> +
>> +@@ -318,6 +339,8 @@ if [ x$reason = xEXPIRE6 -o x$reason = xRELEASE6
>> -o x$reason = xSTOP6 ] ; then
>> +     exit_with_hooks 2;
>> +   fi
>> +
>> ++  execute_client_side_configuration_scripts "restore"
>> ++
>> +   ${ip} -f inet6 addr del ${old_ip6_address}/${old_ip6_prefixlen} \
>> +     dev ${interface}
>> +
>> +--
>> +1.9.1
>> +
>> diff --git a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>> b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>> index b4a05fc..a73d31f 100644
>> --- a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>> +++ b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>> @@ -6,6 +6,7 @@ SRC_URI +=
>> "file://dhcp-3.0.3-dhclient-dbus.patch;striplevel=0 \
>>               file://fixsepbuild.patch \
>>               file://dhclient-script-drop-resolv.conf.dhclient.patch \
>>               file://replace-ifconfig-route.patch \
>> +            file://dhcp-add-exec-script-function.patch \
>>              "
>>
>>   SRC_URI[md5sum] = "5a284875dd2c12ddd388416d69156a67"
>> diff --git a/meta/recipes-connectivity/dhcp/files/dhclient.conf
>> b/meta/recipes-connectivity/dhcp/files/dhclient.conf
>> index 0e6dcf9..0f7d42f 100644
>> --- a/meta/recipes-connectivity/dhcp/files/dhclient.conf
>> +++ b/meta/recipes-connectivity/dhcp/files/dhclient.conf
>> @@ -17,6 +17,7 @@
>>   #supersede domain-name "fugue.com home.vix.com";
>>   #prepend domain-name-servers 127.0.0.1;
>>   request subnet-mask, broadcast-address, time-offset, routers,
>> +    nis-domain, nis-servers, domain-search, ntp-servers,
>>       domain-name, domain-name-servers, host-name,
>>       netbios-name-servers, netbios-scope;
>>   #require subnet-mask, domain-name-servers;
>>
>

-- 
Best Reagrds,
Roy | RongQing Li


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs
  2015-08-10  2:09   ` Rongqing Li
@ 2015-08-20  7:17     ` Rongqing Li
  0 siblings, 0 replies; 4+ messages in thread
From: Rongqing Li @ 2015-08-20  7:17 UTC (permalink / raw)
  To: openembedded-core



On 2015年08月10日 10:09, Rongqing Li wrote:
>
>
> On 2015年07月27日 08:55, Rongqing Li wrote:
>> ping
>>
>> -Roy
>
> ping
>
> -R

Ping

-Roy

>
>>
>> On 2015年07月17日 14:31, rongqing.li@windriver.com wrote:
>>> From: Li Wang <li.wang@windriver.com>
>>>
>>> Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the
>>> configuration
>>> for ntp, nis or other programes
>>>
>>> These codes are from redhat rpm package.
>>>
>>> Signed-off-by: Li Wang <li.wang@windriver.com>
>>> Signed-off-by: Roy Li <rongqing.li@windriver.com>
>>> ---
>>>   .../dhcp/dhcp/dhcp-add-exec-script-function.patch  | 101
>>> +++++++++++++++++++++
>>>   meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb       |   1 +
>>>   meta/recipes-connectivity/dhcp/files/dhclient.conf |   1 +
>>>   3 files changed, 103 insertions(+)
>>>   create mode 100644
>>> meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>>>
>>> diff --git
>>> a/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>>>
>>> b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>>>
>>> new file mode 100644
>>> index 0000000..73b3ce4
>>> --- /dev/null
>>> +++
>>> b/meta/recipes-connectivity/dhcp/dhcp/dhcp-add-exec-script-function.patch
>>>
>>> @@ -0,0 +1,101 @@
>>> +[PATCH] dhcp: add exec script function
>>> +
>>> +Upstream-Statue: Pending
>>> +
>>> +Make dhclient to run /etc/dhcp/dhclient.d/*.sh, and get the
>>> configuration
>>> +for ntp, nis or other programes
>>> +
>>> +These codes are from redhat rpm packages.
>>> +
>>> +Signed-off-by: Li Wang <li.wang@windriver.com>
>>> +Signed-off-by: Roy Li <rongqing.li@windriver.com>
>>> +---
>>> + client/scripts/linux | 25 ++++++++++++++++++++++++-
>>> + 1 file changed, 24 insertions(+), 1 deletion(-)
>>> +
>>> +diff --git a/client/scripts/linux b/client/scripts/linux
>>> +index 232a0aa..bdb5e22 100755
>>> +--- a/client/scripts/linux
>>> ++++ b/client/scripts/linux
>>> +@@ -24,6 +24,8 @@
>>> +
>>> + # 'ip' just looks too weird.  /sbin/ip looks less weird.
>>> + ip=/sbin/ip
>>> ++ETCDIR="/etc/dhcp"
>>> ++export SAVEDIR=/var/lib/dhclient
>>> +
>>> + make_resolv_conf() {
>>> +   if [ x"$new_domain_name_servers" != x ]; then
>>> +@@ -80,6 +82,20 @@ exit_with_hooks() {
>>> +   exit $exit_status
>>> + }
>>> +
>>> ++execute_client_side_configuration_scripts() {
>>> ++# execute any additional client side configuration scripts we have
>>> ++    if [ "${1}" == "config" ] || [ "${1}" == "restore" ]; then
>>> ++        for f in ${ETCDIR}/dhclient.d/*.sh ; do
>>> ++            if [ -x ${f} ]; then
>>> ++                subsystem="${f%.sh}"
>>> ++                subsystem="${subsystem##*/}"
>>> ++                . ${f}
>>> ++                "${subsystem}_${1}"
>>> ++            fi
>>> ++        done
>>> ++    fi
>>> ++}
>>> ++
>>> + # Invoke the local dhcp client enter hooks, if they exist.
>>> + if [ -f /etc/dhclient-enter-hooks ]; then
>>> +   exit_status=0
>>> +@@ -198,11 +214,14 @@ if [ x$reason = xBOUND ] || [ x$reason = xRENEW
>>> ] || \
>>> +     ${ip} -4 route add ${alias_ip_address} dev ${interface}
>>> >/dev/null 2>&1
>>> +   fi
>>> +   make_resolv_conf
>>> ++  execute_client_side_configuration_scripts "config"
>>> +   exit_with_hooks 0
>>> + fi
>>> +
>>> + if [ x$reason = xEXPIRE ] || [ x$reason = xFAIL ] || [ x$reason =
>>> xRELEASE ] \
>>> +    || [ x$reason = xSTOP ]; then
>>> ++  execute_client_side_configuration_scripts "restore"
>>> ++
>>> +   if [ x$alias_ip_address != x ]; then
>>> +     # Turn off alias interface.
>>> +     ${ip} -4 addr flush dev ${interface} label ${interface}:0
>>> +@@ -281,7 +300,7 @@ if [ x$reason = xBOUND6 ] ; then
>>> +
>>> +   # Check for nameserver options.
>>> +   make_resolv_conf
>>> +-
>>> ++  execute_client_side_configuration_scripts "config"
>>> +   exit_with_hooks 0
>>> + fi
>>> +
>>> +@@ -299,6 +318,7 @@ if [ x$reason = xRENEW6 ] || [ x$reason =
>>> xREBIND6 ] ; then
>>> +     make_resolv_conf
>>> +   fi
>>> +
>>> ++  execute_client_side_configuration_scripts "config"
>>> +   exit_with_hooks 0
>>> + fi
>>> +
>>> +@@ -310,6 +330,7 @@ if [ x$reason = xDEPREF6 ] ; then
>>> +   ${ip} -f inet6 addr change ${new_ip6_address}/${new_ip6_prefixlen} \
>>> +        dev ${interface} scope global preferred_lft 0
>>> +
>>> ++  execute_client_side_configuration_scripts "config"
>>> +   exit_with_hooks 0
>>> + fi
>>> +
>>> +@@ -318,6 +339,8 @@ if [ x$reason = xEXPIRE6 -o x$reason = xRELEASE6
>>> -o x$reason = xSTOP6 ] ; then
>>> +     exit_with_hooks 2;
>>> +   fi
>>> +
>>> ++  execute_client_side_configuration_scripts "restore"
>>> ++
>>> +   ${ip} -f inet6 addr del ${old_ip6_address}/${old_ip6_prefixlen} \
>>> +     dev ${interface}
>>> +
>>> +--
>>> +1.9.1
>>> +
>>> diff --git a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>>> b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>>> index b4a05fc..a73d31f 100644
>>> --- a/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>>> +++ b/meta/recipes-connectivity/dhcp/dhcp_4.3.2.bb
>>> @@ -6,6 +6,7 @@ SRC_URI +=
>>> "file://dhcp-3.0.3-dhclient-dbus.patch;striplevel=0 \
>>>               file://fixsepbuild.patch \
>>>               file://dhclient-script-drop-resolv.conf.dhclient.patch \
>>>               file://replace-ifconfig-route.patch \
>>> +            file://dhcp-add-exec-script-function.patch \
>>>              "
>>>
>>>   SRC_URI[md5sum] = "5a284875dd2c12ddd388416d69156a67"
>>> diff --git a/meta/recipes-connectivity/dhcp/files/dhclient.conf
>>> b/meta/recipes-connectivity/dhcp/files/dhclient.conf
>>> index 0e6dcf9..0f7d42f 100644
>>> --- a/meta/recipes-connectivity/dhcp/files/dhclient.conf
>>> +++ b/meta/recipes-connectivity/dhcp/files/dhclient.conf
>>> @@ -17,6 +17,7 @@
>>>   #supersede domain-name "fugue.com home.vix.com";
>>>   #prepend domain-name-servers 127.0.0.1;
>>>   request subnet-mask, broadcast-address, time-offset, routers,
>>> +    nis-domain, nis-servers, domain-search, ntp-servers,
>>>       domain-name, domain-name-servers, host-name,
>>>       netbios-name-servers, netbios-scope;
>>>   #require subnet-mask, domain-name-servers;
>>>
>>
>

-- 
Best Reagrds,
Roy | RongQing Li


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-08-20  7:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-17  6:31 [PATCH][resend][v2] dhcp: make dhclient to get configuration for other programs rongqing.li
2015-07-27  0:55 ` Rongqing Li
2015-08-10  2:09   ` Rongqing Li
2015-08-20  7:17     ` Rongqing Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.