mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
506be3cb26
This sets up a more useful convention and avoids future .gitignore problems. Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit 58c696dc600f1073e693930da061776b6fb199f2)
13 lines
165 B
Bash
Executable File
13 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
link="yes"
|
|
|
|
if [ -f "${FAKE_ETHTOOL_LINK_DOWN}/${1}" ] ; then
|
|
link="no"
|
|
fi
|
|
|
|
# Expect to add more fields later.
|
|
cat <<EOF
|
|
Link detected: ${link}
|
|
EOF
|