diff options
author | Roy Marples <roy@marples.name> | 2008-05-25 22:57:44 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-05-25 22:57:44 +0000 |
commit | 328215e8416d199263e47e4bbacbb1b265626806 (patch) | |
tree | 9af0fbaf83468dfa9784965ed03f345bc3baedcf /net/dhcpcd.sh | |
parent | b03282b901db41f91c442b9d66a9c3b6fc209f83 (diff) |
Work with new beta5 options to skip hoof files.
Diffstat (limited to 'net/dhcpcd.sh')
-rw-r--r-- | net/dhcpcd.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/dhcpcd.sh b/net/dhcpcd.sh index 79c90156..001baaab 100644 --- a/net/dhcpcd.sh +++ b/net/dhcpcd.sh @@ -31,21 +31,21 @@ dhcpcd_start() case "${opt}" in nodns) if ${new}; then - args="${args} -O domain_name_servers,domain_name,domain_search" + args="${args} -C resolv.conf" else args="${args} -R" fi ;; nontp) if ${new}; then - args="${args} -O ntp_servers" + args="${args} -C ntp.conf" else args="${args} -N" fi ;; nonis) if ${new}; then - args="${args} -O nis_servers,nis_domain" + args="${args} -C yp.conf" else args="${args} -Y" fi |