mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
8 lines
111 B
Bash
Executable File
8 lines
111 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ping6 -q -c 1 -w 2 2600:: >& /dev/null
|
|
if [ $? -ne 0 ];
|
|
then
|
|
nmcli c up eth0 >& /dev/null
|
|
fi
|