On 2018-11-10, Steve Williams <st...@williamsitconsulting.com> wrote:

> I have a script that I would like run after all the network is 
> configured, daemons started, etc.
>
> I looked at rc.local, but am not sure what is actually started after the 
> rc.local runs.

Let's take a look at /etc/rc:

...
  [[ -f /etc/rc.local ]] && sh /etc/rc.local

  # Disable carp interlock.
  ifconfig -g carp -carpdemote 128

  mixerctl_conf

  echo -n 'starting local daemons:'
  start_daemon apmd sensorsd hotplugd watchdogd cron wsmoused xenodm
  echo '.'
...

Also, as you can see, cron(8) is started late, and you can put a
@reboot entry into crontab(5).

-- 
Christian "naddy" Weisgerber                          na...@mips.inka.de

Reply via email to