Merge branch 'always-sort-interfaces' into 'master'

[explorer/interfaces] Always sort output

See merge request ungleich-public/cdist!801
This commit is contained in:
poljakowski 2019-10-03 07:54:06 +02:00
commit b754ae576c
1 changed files with 6 additions and 8 deletions

View File

@ -18,13 +18,11 @@
# along with cdist. If not, see <http://www.gnu.org/licenses/>. # along with cdist. If not, see <http://www.gnu.org/licenses/>.
# #
if command -v ip > /dev/null if command -v ip >/dev/null
then then
ip -o link show | sed -n 's/^[0-9]\+: \(.\+\): <.*/\1/p' ip -o link show | sed -n 's/^[0-9]\+: \(.\+\): <.*/\1/p'
elif command -v ifconfig >/dev/null
elif command -v ifconfig > /dev/null
then then
ifconfig -a \ ifconfig -a | sed -n -E 's/^(.*)(:[[:space:]]*flags=|Link encap).*/\1/p'
| sed -n -E 's/^(.*)(:[[:space:]]*flags=|Link encap).*/\1/p' \ fi \
| sort -u | sort -u
fi