- Timestamp:
- 01/28/09 19:17:41 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/modules/admin-core/root/etc/init.d/luci_ethers
r3395 r4174 9 9 10 10 [ -n "$macaddr" -a -n "$ipaddr" ] || return 0 11 11 12 12 echo "$macaddr $ipaddr" >> /var/etc/ethers 13 13 } … … 20 20 21 21 test -d /var/etc || mkdir -p /var/etc 22 22 23 echo "# This file is autogenerated, use /etc/ethers.local instead" > /var/etc/ethers 24 23 25 config_load luci_ethers 24 26 config_foreach apply_lease static_lease 25 27 26 28 test -f /etc/ethers.local && cat /etc/ethers.local >> /var/etc/ethers 27 29 28 30 return 0 29 31 } … … 31 33 stop() { 32 34 test -f /var/etc/ethers && rm -f /var/etc/ethers 33 35 34 36 return 0 35 37 }
