rc.d

  1. F

    Solved Troubleshooting service startup

    Good afternoon all, I've installed Gitlab into a FreeBSD 10.2 Jail and got everything working nicely, except for the fact that when the Jail starts, Gitlab doesn't...All of the other related services start (redis, postgresql, and nginx). The rc script I'm using is from here and I've placed it...
  2. justrjlewis

    rc.d daemon not processing command flags

    I started working with a great web server called caddy and started working on an rc.d script to get it running as a service. I put together a script that mostly worked seen here. The bug in this original script was that the service would start on boot/reboot, but it didn’t play well with the...
  3. DimMan

    Solved rc.d script not run at startup

    I try start circus via rc.d script I create script [root@comp ~]# cat /usr/local/etc/rc.d/circusd #!/bin/sh . /etc/rc.subr name="circusd" rcvar=circusd_enable start_cmd="${name}_start" stop_cmd=":" load_rc_config $name : ${circusd_enable="NO"} ...
  4. patpro

    PF How to handle PF rules for process launching after PF (openvpn for example)?

    Hello, On various servers, I'm facing problems with processes like security/openvpn or Jails and their interaction with pf. They require specific rules involving network interface or IP address that do not exists yet on the system when pf starts. Hence for security/openvpn I've got this at...
  5. rfraile

    Solved Execute rc.d script at shutdown

    Hello, I'm trying to install a rc.d script to run at startup and shutdown, but it only run at startup. Reducing the script to a skeleton test, I have the following: #!/bin/sh - # PROVIDE: test # REQUIRE: FILESYSTEMS # KEYWORD: nojail shutdown . /etc/rc.subr name="test" rcvar="test_enable"...
Back
Top