7 lines
82 B
Bash
7 lines
82 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -a /proc/net/if_inet6 ];then
|
||
|
echo bad
|
||
|
exit 1
|
||
|
fi
|