summaryrefslogtreecommitdiff
path: root/callouts/tests/dispatcher-old-down
Commit message (Collapse)AuthorAgeFilesLines
* dispatcher: remove "old" from the test namesDan Winship2015-04-171-21/+0
| | | | | | | There's no reason the dispatcher test files should have "old" in their names, since they're testing the current dispatcher interface. (cherry picked from commit 9cfd9d376fd5fd2fef097293e6f851044068c6d1)
* dispatcher: pass CONNECTION_FILENAME to dispatcher scriptsDan Winship2015-01-141-0/+1
| | | | (cherry picked from commit bd2deace7081dc1327e7bb6ab416d49da4ae79ce)
* dispatcher/test: fix tests after adding PATH environment variableThomas Haller2014-04-221-0/+1
| | | | | | These tests were broken by commit 45ed459ae32976a120f607046021b48bf728c1d6. Signed-off-by: Thomas Haller <thaller@redhat.com>
* core: fix dispatcher handling of empty VPN interface (bgo #649773)Dan Williams2011-05-101-1/+1
| | | | | We pass a VPN IP iface of "" through D-Bus (since dbus doesn't do NULL) and the dispatcher code wasn't ignoring that as it should have been.
* dispatcher: enhance dispatcher script environment (bgo #648382)Dan Williams2011-05-021-0/+19
For VPN connections, the interface name would be that of the VPN's IP interface, but the script environment would be the that of the VPN's parent device. Enhance the environment by adding any VPN specific details as additional environment variables prefixed by "VPN_". Leave the existing environment setup intact for backwards compatiblity. Additionally, the dispatcher never got updated for IPv6 support, so push IPv6 configuration and DHCPv6 configuration into the environment too. Even better, push everything the dispatcher needs to it instead of making the dispatcher make D-Bus requests back to NM, which sometimes fails if NM has already torn down the device or the connection which the device was using. And add some testcases to ensure that we don't break backwards compat, the testcases here were grabbed from a 0.8.4 machine with a hacked up dispatcher to dump everything it was given from NM.