41
Forum / Re: OpenRC or dinit?
Last post by n00b -But dinit is better
Such systems are not intended for ordinary mouse pushers.
Once set up and properly maintained, such systems run for decades without any problems, so the ‘outdated, overpriced CPU’ is a bargain.
This is where the real advantage of opensource comes to the fore.
do you think it could handly the compiling needed for artix builds?
Code: [Select]XDG_SESSION_TYPE=x11 plank &If you don't background plank exec startlxqt does not get executed (at least until plank exits).
Disclaimer: I have no idea what plank is.
XDG_SESSION_TYPE=x11 plank &If you don't background plank exec startlxqt does not get executed (at least until plank exits).
#!/sbin/openrc-run
# OpenRC script for Wazuh XDR agent
# Minimal draft written by TopHatProductions115
# TopHatProductions115@mail.txp-network.ml
# Ping-able 0900 to 1145 EST on business days
# Some references taken from
# https://github.com/wazuh/wazuh/blob/master/src/init/templates/ossec-hids-gentoo.init
# BEGIN CONFIGURATION SECTION
# Required parameters for service
name="wazuh-controld"
description="Wazuh Agent control and init for Artix OpenRC"
# This parameter should not be used or called anywhere else in this script
BASE_PATH="/var/ossec"
configfile="$BASE_PATH/etc/ossec.conf"
command="$BASE_PATH/bin/wazuh-control"
# Assuming that wazuh-controld is a well-behaved service that backgrounds itself
# command_background="yes"
# Assuming that wazuh-controld manages its own PID file
# pidfile=$PID_PATH/wazuh-controld.pid
# END CONFIGURATION SECTION
# Service Dependencies
depend() {
need net network-online syslog-ng
use logger syslog-ng
provide wazuh-controld
}
# Non-standard functions that aren't included in OpenRC by default
extra_commands="info"
extra_started_commands="reload"
# Configuration file check - stub?
checkconfig() {
ebegin "Checking Wazuh Configuration File..."
if [ ! -r "${configfile}" ]; then
eerror "Unable to read configuration file: ${configfile}"
return 1
fi
# Maybe something to check the contents of the config file?
return $ret
eend $?
}
# Many sources state not to define start and stop (and sometimes even restart) functions...
# After discussing with some people online, I've learned a few details.
# By using the start-stop-daemon, I'd be committing at least two bad practices:
# Using a startup script to (attempt to) control another script
# Spawning a daemon, to (attempt to) control another daemon
# Wazuh control appears to have its own daemon, which can fork and control its own processes.
# Therefore, I won't use the start-stop-daemon here.
start() {
checkconfig || return 1
ebegin "Attempting to initialise $name ..."
${command} start
eend $?
}
stop() {
checkconfig || return 1
ebegin "Attempting to terminate $name ..."
${command} stop
eend $?
}
# Stop the service, check the config file, restart the service
# Restart tends to be defined as stop() + start()
restart() {
# Insert OpenRC service status check here
# Which parameter should I use in place of SERVICE_NAME ?
# if ! service_started "${SERVICE_NAME}" ; then
# eerror "ERR :: $name is not running. Please start the service first before attempting a restart or reload..."
# else
checkconfig || return 1
ebegin "Attempting to restart $name ..."
${command} restart
eend $?
# fi
}
# Reload the config file without restarting the entire service
# Can only be attempted when the service is running
# Not a standard OpenRC command - extra_started
reload() {
checkconfig || return 1
ebegin "Attempting to reload $name ..."
${command} reload
eend $?
}
# Get general service information
# Also not a standard OpenRC command - extra
info() {
ebegin "Retrieving all $name service info..."
${command} info
eend $?
}
# Get service status
status() {
checkconfig || return 1
# ebegin "Retrieving status of $name ..."
${command} status
# eend $?
}
$ nano .xinitrcplank can start but every time the plank reboots it disappears, how do I make it so that plank is always there when I start startx?
XDG_SESSION_TYPE=x11
exec startlxqt
XDG_SESSION_TYPE=x11 plankBut after rebooting, I only see plank and black screen. As I understand it, there is a conflict between Wayland and X11 or something like that.
exec startlxqt
[CRITICAL 20:16:47.173510] [AbstractMain:255] Only X11 environments are supported.
$ XDG_SESSION_TYPE=x11 plank
[CRITICAL 21:27:23.122921] [Wnck] wnck_set_client_type: changing the client type is not supported.
[WARN 21:27:23.213743] [Preferences:192] '/usr/share/plank/themes/Default/dock.theme' is read-only!
Lxqt + Kwin + Plank
$ echo $XDG_SESSION_TYPE
tty
$ env | grep "XDG_SESSION"
XDG_SESSION_CLASS=user
XDG_SESSION_ID=1
XDG_SESSION_TYPE=tty