diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-04-11 18:28:22 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-04-11 18:28:22 +0200 |
commit | e9a85e651191aa9152c46ad5b7b75c4b38e77394 (patch) | |
tree | 1221057fffcb888710e836897114c0f9c7b30a3f | |
parent | 5f708051ba156b5b6d407f02b77e32521b6d449a (diff) | |
download | netctl-e9a85e651191aa9152c46ad5b7b75c4b38e77394.tar.gz netctl-e9a85e651191aa9152c46ad5b7b75c4b38e77394.tar.xz |
Systemd service files
The netcfg service provides support for the NETWORKS array in /etc/conf.d/netcfg through netcfg-daemon.
The netcfg@ service allows individual profiles to be treated as services. These services wait until a connection is established (the other service has support for backgrounding)!
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | systemd/netcfg.service | 13 | ||||
-rw-r--r-- | systemd/netcfg@.service | 12 |
3 files changed, 26 insertions, 2 deletions
@@ -35,8 +35,7 @@ install: install-docs $(DESTDIR)/etc/rc.d/ install -d $(DESTDIR)/usr/lib/systemd/system install -m644 \ - systemd/net-auto-wireless.service \ - systemd/net-auto-wired.service \ + systemd/*.service \ $(DESTDIR)/usr/lib/systemd/system/ install-docs: docs diff --git a/systemd/netcfg.service b/systemd/netcfg.service new file mode 100644 index 0000000..d61d902 --- /dev/null +++ b/systemd/netcfg.service @@ -0,0 +1,13 @@ +[Unit] +Description=Netcfg multi-profile daemon +Before=network.target + +[Service] +Type=oneshot +RemainAfterExit=yes +EnvironmentFile=/etc/conf.d/netcfg +ExecStart=/usr/bin/netcfg-daemon start +ExecStop=/usr/bin/netcfg-daemon stop + +[Install] +WantedBy=multi-user.target diff --git a/systemd/netcfg@.service b/systemd/netcfg@.service new file mode 100644 index 0000000..5c0619d --- /dev/null +++ b/systemd/netcfg@.service @@ -0,0 +1,12 @@ +[Unit] +Description=Netcfg profile based networking service +Before=network.target + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=/usr/bin/netcfg check-iface %i +ExecStop=-/usr/bin/netcfg down %i + +[Install] +WantedBy=multi-user.target |