Remove unwanted logging

This commit is contained in:
Tony Garnock-Jones 2022-02-06 23:20:42 +01:00
parent 0a795897be
commit 810c015b21
1 changed files with 0 additions and 2 deletions

View File

@ -6,13 +6,11 @@
<configure-interface "lo" <static "127.0.0.1">>
? <configure-interface ?ifname <static ?ipaddr>> [
$log ! <log "-" { service: $ifname line: "seen-static" ipaddr: $ipaddr }>
! <run-oneshot ["ifconfig" $ifname $ipaddr "up"]>
?- ! <run-oneshot ["ifconfig" $ifname "down"] never>
]
? <configure-interface ?ifname <dhcp>> [
$log ! <log "-" { service: $ifname line: "seen-dhcp" }>
! <run-oneshot ["ifconfig" $ifname "up"]>
?- ! <run-oneshot ["ifconfig" $ifname "down"] never>
<require-service <daemon <udhcpc $ifname>>>