[SOLVED] What is the equivalent of "systemctl enable" in S6 04 July 2020, 21:15:23 Hello everybody. I've been reading the wiki but I can't figure out how I can enable a service from boot for example. I installed bluez and bluez-s6 and everytime I start the machine I have to bring up the service manually. Code: [Select]s6-rc -u change bluetoothdI want to do something similar to Code: [Select]systemctl enable bluetoothdI try to read s6 official documentation but at the moment is not clear to me. I am new with this so be kind with me Last Edit: 05 July 2020, 11:52:08 by SGOrava
Re: What is the equivalent of "systemctl enable" in S6 Reply #1 – 04 July 2020, 21:54:16 In Artix, the bundle called "default" is automatically brought up on boot (with the default configuration at least).If you don't have that bundle, you need to first create it like so:Code: [Select]s6-rc-bundle add default bluetoothdIf you already have the bundle and want to add another service to it then:Code: [Select]s6-rc-bundle-update add default bluetoothdThere's a lot more you can do, but that should get you going.
Re: What is the equivalent of "systemctl enable" in S6 Reply #2 – 05 July 2020, 11:41:41 Quote from: Dudemanguy – on 04 July 2020, 21:54:16In Artix, the bundle called "default" is automatically brought up on boot (with the default configuration at least).If you don't have that bundle, you need to first create it like so:Code: [Select]s6-rc-bundle add default bluetoothdIf you already have the bundle and want to add another service to it then:Code: [Select]s6-rc-bundle-update add default bluetoothdThere's a lot more you can do, but that should get you going.Hi, thanks for your reply. Now bluetooth daemon is running from boot. The command that worked was this:Code: [Select]s6-rc-bundle-update add default bluetoothdI already had default bundle created. Thank you very much.