diff options
Diffstat (limited to 'net-scripts/net.modules.d/dhcpcd')
-rw-r--r-- | net-scripts/net.modules.d/dhcpcd | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net-scripts/net.modules.d/dhcpcd b/net-scripts/net.modules.d/dhcpcd index 5fc64c0..516f7e3 100644 --- a/net-scripts/net.modules.d/dhcpcd +++ b/net-scripts/net.modules.d/dhcpcd @@ -1,4 +1,3 @@ -#!/bin/bash # Copyright (c) 2004-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 @@ -11,6 +10,12 @@ dhcpcd_depend() { after interface provide dhcp functions interface_exists interface_get_address +} + +# void dhcpcd_expose(void) +# +# Expose variables that can be configured +dhcpcd_expose() { variables dhcpcd dhcp } @@ -115,4 +120,4 @@ dhcpcd_start() { return 0 } -# vim:ts=4 +# vim: set ft=sh ts=4 : |