From b43ea19e1ecdb6e7fe6426d13c75e9ff48f1f0a9 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Fri, 26 Jun 2026 14:27:33 +0100 Subject: [PATCH] starts joeac.net services on boot --- Makefile | 10 ++++++++-- openrc/conf.d/.gitignore | 3 +++ openrc/conf.d/user.example | 3 +++ openrc/user-runlevel-default | 6 ------ 4 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 openrc/conf.d/.gitignore create mode 100644 openrc/conf.d/user.example delete mode 100644 openrc/user-runlevel-default diff --git a/Makefile b/Makefile index ec74aa0..b4d0763 100644 --- a/Makefile +++ b/Makefile @@ -116,7 +116,7 @@ endif $(foreach module,$(MODULES),$(eval $(install_module_rule))) $(foreach module,$(MODULES),$(eval $(uninstall_module_rule))) -~/.config/rc/init.d/joeac.net: openrc/init.d/joeac.net ~/.config/rc/init.d ~/.config/rc/runlevels/default +~/.config/rc/init.d/joeac.net: openrc/init.d/joeac.net ~/.config/rc/init.d ~/.config/rc/runlevels/default /etc/init.d/user.$(shell whoami) /etc/conf.d/user.$(shell whoami) rm -f ~/.config/rc/init.d/joeac.net; \ mkdir -p ~/.config/rc/init.d; \ cp openrc/init.d/joeac.net ~/.config/rc/init.d/joeac.net @@ -126,7 +126,13 @@ $(foreach module,$(MODULES),$(eval $(uninstall_module_rule))) ~/.config/rc/runlevels/default: mkdir -p ~/.config/rc/runlevels/default - @echo "now edit openrc/user-default-runlevel with your username, copy it to /etc/init.d, and add it to the system's default runlevel with \`rc-service add default\`" + +/etc/init.d/user.$(shell whoami): + sudo ln -s /etc/init.d/user /etc/init.d/user.$(shell whoami) + +/etc/conf.d/user.$(shell whoami): openrc/conf.d/user.$(shell whoami) + sudo cp openrc/conf.d/user.$(shell whoami) /etc/conf.d/user.$(shell whoami) + sudo rc-update add user.$(shell whoami) default .PHONY: uninstall_service uninstall_service: diff --git a/openrc/conf.d/.gitignore b/openrc/conf.d/.gitignore new file mode 100644 index 0000000..de4549a --- /dev/null +++ b/openrc/conf.d/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore +!user.example diff --git a/openrc/conf.d/user.example b/openrc/conf.d/user.example new file mode 100644 index 0000000..6200354 --- /dev/null +++ b/openrc/conf.d/user.example @@ -0,0 +1,3 @@ +# copy this file to user. for the user you want to be running joeac.net via OpenRC +# add in here any user setup, bearing in mind that OpenRC doesn't use your usual login flow +# this may include setting up $HOME and/or $XDG_RUNTIME_DIR diff --git a/openrc/user-runlevel-default b/openrc/user-runlevel-default deleted file mode 100644 index 5554db0..0000000 --- a/openrc/user-runlevel-default +++ /dev/null @@ -1,6 +0,0 @@ -#!/sbin/openrc - -description="start default runlevel" -command="openrc" -command_args="-U default" -command_user=""