-
Notifications
You must be signed in to change notification settings - Fork 521
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This makes it easier to pass new options, for example to change the log output level for debugging purposes. Drop the auto4 service and helper binary, since we don't use auto4. Signed-off-by: Ben Cressey <bcressey@amazon.com>
- Loading branch information
Showing
9 changed files
with
110 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[Unit] | ||
Description=wicked managed network interfaces | ||
Wants=network.target wickedd.service wickedd-nanny.service | ||
After=network-pre.target wickedd.service wickedd-nanny.service | ||
Before=network-online.target network.target | ||
|
||
[Service] | ||
Type=oneshot | ||
RemainAfterExit=yes | ||
LimitCORE=infinity | ||
ExecStart=/usr/sbin/wicked --systemd ifup all | ||
ExecStop=/usr/sbin/wicked --systemd ifdown all | ||
ExecReload=/usr/sbin/wicked --systemd ifreload all | ||
|
||
[Install] | ||
WantedBy=multi-user.target network-online.target | ||
Alias=network.service | ||
Also=wickedd.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[Unit] | ||
Description=wicked DHCPv4 supplicant service | ||
Requisite=dbus.service | ||
After=local-fs.target dbus.service network-pre.target | ||
Before=wickedd.service wicked.service network.target | ||
PartOf=wickedd.service | ||
|
||
[Service] | ||
Type=notify | ||
LimitCORE=infinity | ||
ExecStart=/usr/libexec/wicked/bin/wickedd-dhcp4 --systemd --foreground | ||
StandardError=null | ||
Restart=on-abort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[Unit] | ||
Description=wicked DHCPv6 supplicant service | ||
Requisite=dbus.service | ||
After=local-fs.target dbus.service network-pre.target | ||
Before=wickedd.service wicked.service network.target | ||
PartOf=wickedd.service | ||
|
||
[Service] | ||
Type=notify | ||
LimitCORE=infinity | ||
ExecStart=/usr/libexec/wicked/bin/wickedd-dhcp6 --systemd --foreground | ||
StandardError=null | ||
Restart=on-abort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[Unit] | ||
Description=wicked network nanny service | ||
Requisite=dbus.service | ||
After=local-fs.target dbus.service network-pre.target wickedd.service | ||
Before=wicked.service network.target | ||
PartOf=wickedd.service | ||
|
||
[Service] | ||
Type=notify | ||
LimitCORE=infinity | ||
ExecStart=/usr/sbin/wickedd-nanny --systemd --foreground | ||
StandardError=null | ||
Restart=on-abort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[Unit] | ||
Description=wicked network management service daemon | ||
Requisite=dbus.service | ||
Wants=wickedd-nanny.service wickedd-dhcp6.service wickedd-dhcp4.service systemd-udev-settle.service | ||
After=local-fs.target dbus.service network-pre.target systemd-udev-settle.service | ||
Before=wickedd-nanny.service wicked.service network.target | ||
|
||
[Service] | ||
Type=notify | ||
LimitCORE=infinity | ||
ExecStart=/usr/sbin/wickedd --systemd --foreground | ||
StandardError=null | ||
Restart=on-abort | ||
|
||
[Install] | ||
Also=wickedd-nanny.service | ||
Also=wickedd-dhcp4.service | ||
Also=wickedd-dhcp6.service |