mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
EtherDFS is an 'installable filesystem' TSR for DOS. It maps a drive from a remote computer to a local drive letter, using raw ethernet frames to communicate. Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
12 lines
242 B
Plaintext
12 lines
242 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name="etherdfs daemon"
|
|
command="/usr/bin/ethersrv-linux"
|
|
command_args="${INTERFACE} ${STORAGEDIR}"
|
|
|
|
depend() {
|
|
need net
|
|
}
|