refactored alacritty

This commit is contained in:
Matthew Stobbs
2025-03-24 21:42:43 -06:00
parent d30927930c
commit 4290535b3c
5 changed files with 33 additions and 57 deletions

View File

@@ -16,7 +16,7 @@ log_args="$log_file $log_format $log_level $log_rotate"
command_args="server $config_args $log_args -non-interactive"
depend() {
need net
need networking
}
start_pre() {
@@ -25,35 +25,4 @@ start_pre() {
--mode 0755 \
/var/log/$RC_SVCNAME
}
#
# start() {
# ebegin "Starting $RC_SVCNAME"
# start-stop-daemon --start \
# --exec $command \
# --capabilities $capabilities \
# --make-pidfile \
# --pidfile /var/run/$RC_SVCNAME.pid \
# --user $command_user:$command_group \
#
# -- \
# $command_args
#
# eend $?
# }
#
# stop() {
# ebegin "Stopping $RC_SVCNAME"
# start-stop-daemon --stop \
# --exec $command \
# --pidfile /var/run/$RC_SVCNAME.pid
#
# eend $?
# }
#
# restart() {
# ebegin "Restarting $RC_SVCNAME"
# stop()
# start()
# eend $?
# }
# vim: set filetype=sh :