equal
deleted
inserted
replaced
188 done |
188 done |
189 } |
189 } |
190 |
190 |
191 # Update $DHCP files from $DATA/dhcp |
191 # Update $DHCP files from $DATA/dhcp |
192 function run_dhcp { |
192 function run_dhcp { |
193 log "Linking DHCP configs..." |
193 log "Copying DHCP configs..." |
194 for conf in "${DHCP_CONFS[@]}"; do |
194 for conf in "${DHCP_CONFS[@]}"; do |
195 # conf base |
195 # conf base |
196 check_dhcp_conf $conf |
196 check_dhcp_conf $conf |
197 link_dhcp_conf $conf |
197 copy_dhcp_conf $conf |
198 done |
198 done |
199 |
199 |
200 log "Testing dhcp..." |
200 log "Testing dhcp..." |
201 # this is partially redundant with the above check_dhcp_hosts, but doesn't matter |
201 # this is partially redundant with the above check_dhcp_hosts, but doesn't matter |
202 check_dhcp |
202 check_dhcp |