diff options
Diffstat (limited to 'meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/dhcp-3.0.3-dhclient-dbus.patch')
| -rw-r--r-- | meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/dhcp-3.0.3-dhclient-dbus.patch | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/dhcp-3.0.3-dhclient-dbus.patch b/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/dhcp-3.0.3-dhclient-dbus.patch new file mode 100644 index 0000000000..b4a666d106 --- /dev/null +++ b/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/dhcp-3.0.3-dhclient-dbus.patch | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | Upstream-Status: Inappropriate [distribution] | ||
| 2 | |||
| 3 | --- client/scripts/bsdos | ||
| 4 | +++ client/scripts/bsdos | ||
| 5 | @@ -47,6 +47,11 @@ | ||
| 6 | . /etc/dhcp/dhclient-exit-hooks | ||
| 7 | fi | ||
| 8 | # probably should do something with exit status of the local script | ||
| 9 | + if [ x$dhc_dbus != x -a $exit_status -eq 0 ]; then | ||
| 10 | + dbus-send --system --dest=com.redhat.dhcp \ | ||
| 11 | + --type=method_call /com/redhat/dhcp/$interface com.redhat.dhcp.set \ | ||
| 12 | + 'string:'"`env | grep -Ev '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`" | ||
| 13 | + fi | ||
| 14 | exit $exit_status | ||
| 15 | } | ||
| 16 | |||
| 17 | --- client/scripts/freebsd | ||
| 18 | +++ client/scripts/freebsd | ||
| 19 | @@ -57,6 +57,11 @@ | ||
| 20 | . /etc/dhcp/dhclient-exit-hooks | ||
| 21 | fi | ||
| 22 | # probably should do something with exit status of the local script | ||
| 23 | + if [ x$dhc_dbus != x -a $exit_status -eq 0 ]; then | ||
| 24 | + dbus-send --system --dest=com.redhat.dhcp \ | ||
| 25 | + --type=method_call /com/redhat/dhcp/$interface com.redhat.dhcp.set \ | ||
| 26 | + 'string:'"`env | grep -Ev '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`" | ||
| 27 | + fi | ||
| 28 | exit $exit_status | ||
| 29 | } | ||
| 30 | |||
| 31 | --- client/scripts/linux | ||
| 32 | +++ client/scripts/linux | ||
| 33 | @@ -69,6 +69,11 @@ | ||
| 34 | . /etc/dhcp/dhclient-exit-hooks | ||
| 35 | fi | ||
| 36 | # probably should do something with exit status of the local script | ||
| 37 | + if [ x$dhc_dbus != x -a $exit_status -eq 0 ]; then | ||
| 38 | + dbus-send --system --dest=com.redhat.dhcp \ | ||
| 39 | + --type=method_call /com/redhat/dhcp/$interface com.redhat.dhcp.set \ | ||
| 40 | + 'string:'"`env | grep -Ev '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`" | ||
| 41 | + fi | ||
| 42 | exit $exit_status | ||
| 43 | } | ||
| 44 | |||
| 45 | --- client/scripts/netbsd | ||
| 46 | +++ client/scripts/netbsd | ||
| 47 | @@ -47,6 +47,11 @@ | ||
| 48 | . /etc/dhcp/dhclient-exit-hooks | ||
| 49 | fi | ||
| 50 | # probably should do something with exit status of the local script | ||
| 51 | + if [ x$dhc_dbus != x -a $exit_status -eq 0 ]; then | ||
| 52 | + dbus-send --system --dest=com.redhat.dhcp \ | ||
| 53 | + --type=method_call /com/redhat/dhcp/$interface com.redhat.dhcp.set \ | ||
| 54 | + 'string:'"`env | grep -Ev '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`" | ||
| 55 | + fi | ||
| 56 | exit $exit_status | ||
| 57 | } | ||
| 58 | |||
| 59 | --- client/scripts/openbsd | ||
| 60 | +++ client/scripts/openbsd | ||
| 61 | @@ -47,6 +47,11 @@ | ||
| 62 | . /etc/dhcp/dhclient-exit-hooks | ||
| 63 | fi | ||
| 64 | # probably should do something with exit status of the local script | ||
| 65 | + if [ x$dhc_dbus != x -a $exit_status -eq 0 ]; then | ||
| 66 | + dbus-send --system --dest=com.redhat.dhcp \ | ||
| 67 | + --type=method_call /com/redhat/dhcp/$interface com.redhat.dhcp.set \ | ||
| 68 | + 'string:'"`env | grep -Ev '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`" | ||
| 69 | + fi | ||
| 70 | exit $exit_status | ||
| 71 | } | ||
| 72 | |||
| 73 | --- client/scripts/solaris | ||
| 74 | +++ client/scripts/solaris | ||
| 75 | @@ -47,6 +47,11 @@ | ||
| 76 | . /etc/dhcp/dhclient-exit-hooks | ||
| 77 | fi | ||
| 78 | # probably should do something with exit status of the local script | ||
| 79 | + if [ x$dhc_dbus != x -a $exit_status -eq 0 ]; then | ||
| 80 | + dbus-send --system --dest=com.redhat.dhcp \ | ||
| 81 | + --type=method_call /com/redhat/dhcp/$interface com.redhat.dhcp.set \ | ||
| 82 | + 'string:'"`env | grep -Ev '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`" | ||
| 83 | + fi | ||
| 84 | exit $exit_status | ||
| 85 | } | ||
| 86 | |||
