[08:49] nobody has problem updating busybox with opkg ? === phroddon_ is now known as phroddon [09:06] could be related http://trac.freesmartphone.org/ticket/43 [09:07] 5 years ago :p [09:12] afournier: wrong channel? [09:19] yes [09:19] indeed [09:20] * afournier needs more coffee [09:20] thanks jodh [09:39] btw, i am using upstart with busybox, and ntpd for instance, so i do something like "exec ntpd -l -p pool.ntp.org", ntpd then output to stdout, and everything ends in /var/log/upstart/myjob.log as expected. But is there a stanza to output that in syslog automaticaly, or do i have to append "| logger" ? [09:40] i'd like every single output to go to the syslog... [09:47] exec >/dev/kmsg 2>&1 [10:13] we don't have: "console log syslog" yet [10:14] (e.g. log to both /var/log/upstart/myjob.log and syslog [10:14] ) [14:46] hello, I have one question: is it possible with upstart to check, if a network service is running on an other host and only a local server, if the other network service is available? [14:49] tom0815: one can do anything in the pre-start script, see cookbook. [14:50] tom0815: are you after failover? in that case look up hearbeat that can handover networked services for you like that [14:52] thank you, I have a two servers. on one a mysql db is running and i want to start a second service on the other service, but only, if mysql db is up and running on the first server [14:52] so it is no failover scenario [14:53] tom0815: in pre-start script try to ping mysql port on the mysql host. [14:53] tom0815: and stop if not available. [14:54] tom0815: your job should start on when network is up [14:54] tom0815: and you probably want a loop & timeout to try connecting to mysql later. [14:54] and eventually give up [14:55] tom0815: see cookbook for (linked in the topic) about pre-start scripts, and starting on when network is up. [15:07] thanx alot! I will have a look to the cookbook [15:56] that's funny i am working on the same thing (almost) [15:57] and it's a pain :) [15:59] i did something like mysqladmin --wait=10 ping [15:59] and then i want to "initctl emit --no-wait database-up" === doko__ is now known as doko [16:09] is it ok to call "restart" from the post-start script in case something failed ? [16:10] i know it could lead to infinite loop, but i don't know if it's possible