bundlewrap/bundles/radvd/files/ip-up

8 lines
110 B
Bash

#!/bin/bash
if systemctl is-active radvd;
then
systemctl restart radvd
else
systemctl start radvd
fi