initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

29
laminar/laminard.initd Normal file
View File

@@ -0,0 +1,29 @@
#!/sbin/openrc-run
# Copyright 2022 Hyperbola Project
# Distributed under the terms of the GNU General Public License v2
export LAMINAR_HOME=${LAMINAR_HOME}
export LAMINAR_BIND_HTTP=${LAMINAR_BIND_HTTP}
export LAMINAR_BIND_RPC=${LAMINAR_BIND_RPC}
export LAMINAR_TITLE=${LAMINAR_TITLE}
export LAMINAR_KEEP_RUNDIRS=${LAMINAR_KEEP_RUNDIRS}
export LAMINAR_BASE_URL=${LAMINAR_BASE_URL}
export LAMINAR_ARCHIVE_URL=${LAMINAR_ARCHIVE_URL}
depend() {
need net localmount
}
start() {
ebegin "Starting Laminar Continuous Integration Server"
start-stop-daemon --start --background --chdir /var/lib/laminar \
--make-pidfile --pidfile /run/laminard.pid \
--exec /usr/sbin/laminard --
eend $?
}
stop() {
ebegin "Stopping Laminar Continuous Integration Server"
start-stop-daemon --stop --quiet --pidfile /run/laminard.pid
eend $?
}