Skip to content

Instantly share code, notes, and snippets.

@ShadowKyogre
Created June 3, 2015 20:35
Show Gist options
  • Select an option

  • Save ShadowKyogre/9fc7e8ad035618773fd1 to your computer and use it in GitHub Desktop.

Select an option

Save ShadowKyogre/9fc7e8ad035618773fd1 to your computer and use it in GitHub Desktop.
OpenRC services
#!/usr/bin/openrc-run
depend() {
need localmount
after net
}
start() {
/usr/lib/systemd/scripts/dkms start
}
stop() {
/usr/lib/systemd/scripts/dkms stop
}
#!/usr/bin/openrc-run
depend() {
before net
provide firewall
}
start() {
/usr/lib/ufw/ufw-init start &> /dev/null &
}
stop() {
/usr/lib/ufw/ufw-init stop
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment