Tagged Questions
0
votes
0answers
32 views
Shutdown slow: unknown job s35networking
Since I've upgraded to Ubuntu 13.04 from 12.04 LTS, I get this error when I shutdown the pc:
rather than invoking init scripts through /etc/init.d, use the service(8) utility service S35 ...
0
votes
0answers
59 views
static-network-up not emitted if virtual interfaces present?
I'm wondering if I've found a bug in ifupdown, but I wanted to ask here before reporting a bug:
/etc/network/if-up.d/upstart seems to fail to emit static-network-up if any virtual interfaces are ...
1
vote
1answer
48 views
How to check in script if upstart event was emited?
I am running remote connection on session start using xdg autostart script. But sometimes network interface needs more time to start. So I need to check if network is up.
Is it possible to check if ...
0
votes
1answer
314 views
How do I delay Upstart's net-device-up signal until a condition is met?
I need to wait for a specific condition to be met a network interface is considered "up". Upstart is sending its net-device-up signal before this condition is met, which cases the scripts that depend ...
2
votes
3answers
567 views
How to start a task before networking?
I've written an upstart task that modifies /etc/network/interfaces. (Actually a file sourced into it.) Which start on condition do I need to declare to let my task run before any networking jobs?
...
1
vote
2answers
366 views
Upstart not running my dynamic DNS script
I have a dynamic DNS script as follows:
#!/bin/bash
curl -kL# "http://example.com/updatedns.php"
echo $? >> /var/log/ddns
...saved to /usr/local/bin/ddns. Obviously the URL above isn't the ...