8 lines
123 B
Bash
8 lines
123 B
Bash
#!/bin/bash
|
|
|
|
if systemctl is-active wide-dhcpv6-client;
|
|
then
|
|
systemctl restart radvd
|
|
else
|
|
systemctl start radvd
|
|
fi
|