bundles/pppd: also wait for ppp interface to vanish before restarting
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2020-11-15 10:02:13 +01:00
parent 0aafeb96cd
commit ccfa56ad5e
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -1,5 +1,18 @@
#!/bin/bash
(
while true
do
ip link show | grep ppp
if [[ $? -eq 0 ]]
then
sleep 1
else
exit 0
fi
done
) &
% for service in sorted(services):
(
while true