20. 8. 19. 오후 10:06에 Michael Walter 이(가) 쓴 글:
> service dnsmasq restart command but really want something to do this
> automatically if it ever fails.
ha, my fault!
Might this works, but didn't test it.
while true; do { pidof dnsmasq || { service dnsmasq restart; };
sleep 1; } done