8 lines
98 B
Text
8 lines
98 B
Text
|
#!/bin/bash
|
||
|
|
||
|
ping6 -q -c 1 -w 2 2600:: >& /dev/null
|
||
|
if [ $? -ne 0 ];
|
||
|
then
|
||
|
nmcli c up eth0
|
||
|
fi
|