mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-18 17:05:13 +00:00
8 lines
204 B
YAML
8 lines
204 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- command: ls -1
|
|
args:
|
|
chdir: /sys/class/net
|
|
register: _current_interfaces
|
|
- set_fact:
|
|
current_interfaces: "{{ _current_interfaces.stdout_lines }}"
|