Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] lm_sensors service missing
@ 2020-12-29  9:53 Mek101
  2021-01-02  0:29 ` ericonr
                   ` (31 more replies)
  0 siblings, 32 replies; 33+ messages in thread
From: Mek101 @ 2020-12-29  9:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 989 bytes --]

New issue by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt . However, a quality pull request may help. -->
### System

* xuname:  
  Void 5.9.16_1 x86_64-musl AuthenticAMD uptodate rFFFF
* package:  
  lm_sensors-3.6.0_1

### Expected behavior
At the end of the `sensors` setup via `sensors-detect`, the latter prints to enable the `lm_sensors` service to load the appropriate modules at boot time.

### Actual behavior
The output is:
```
Copy prog/init/lm_sensors.init to /etc/init.d/lm_sensors for initialization at boot time.
You should now start the lm_sensors service to load the required kernel modules.
```
Not only the paths are wrong, but there also no sensors service under `/etc/sv/` to start

### Steps to reproduce the behavior
Run the `sensors-detect` command.


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors service missing
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
@ 2021-01-02  0:29 ` ericonr
  2021-01-02  0:30 ` ericonr
                   ` (30 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-01-02  0:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 686 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-753409324

Comment:
The systemd unit is

```
[Unit]
Description=Initialize hardware monitoring sensors

[Service]
EnvironmentFile=/etc/sysconfig/lm_sensors
Type=oneshot
RemainAfterExit=yes
ExecStart=-/sbin/modprobe -qab $BUS_MODULES $HWMON_MODULES
ExecStart=/usr/bin/sensors -s
ExecStop=-/sbin/modprobe -qabr $BUS_MODULES $HWMON_MODULES

[Install]
WantedBy=multi-user.target
```

Looks quite feasible to port to a run script, if you want to try it!

It also has `fancontrol.service` and `sensord.service`, but I think we don't build `sensord`.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors service missing
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
  2021-01-02  0:29 ` ericonr
@ 2021-01-02  0:30 ` ericonr
  2021-01-02  0:31 ` ericonr
                   ` (29 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-01-02  0:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 430 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-753409509

Comment:
Argh, no :/

It's a oneshot... So it would be best to install the `lm_sensors.init` script and tell people to call it in `/etc/rc.local`, assuming that works. Afaik we don't any new oneshot services, since they require using `exec pause` at the end, which is quite the ugly workaround.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors service missing
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
  2021-01-02  0:29 ` ericonr
  2021-01-02  0:30 ` ericonr
@ 2021-01-02  0:31 ` ericonr
  2021-02-22 11:37 ` lm_sensors should include a service Mek101
                   ` (28 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-01-02  0:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 435 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-753409509

Comment:
Argh, no :/

It's a oneshot... So it would be best to install the `lm_sensors.init` script and tell people to call it in `/etc/rc.local`, assuming that works. Afaik we don't want any new oneshot services, since they require using `exec pause` at the end, which is quite the ugly workaround.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (2 preceding siblings ...)
  2021-01-02  0:31 ` ericonr
@ 2021-02-22 11:37 ` Mek101
  2021-02-22 15:58 ` ericonr
                   ` (27 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-02-22 11:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 232 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-783312244

Comment:
What if we put them in [`/etc/modules-load.d/`](https://man.voidlinux.org/modules-load.8)?

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (3 preceding siblings ...)
  2021-02-22 11:37 ` lm_sensors should include a service Mek101
@ 2021-02-22 15:58 ` ericonr
  2021-02-22 16:48 ` Mek101
                   ` (26 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-02-22 15:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 210 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-783476970

Comment:
Can their utility write a file that works in `/etc/modules-load.d`?

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (4 preceding siblings ...)
  2021-02-22 15:58 ` ericonr
@ 2021-02-22 16:48 ` Mek101
  2021-02-22 16:53 ` ericonr
                   ` (25 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-02-22 16:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-783512259

Comment:
We could either patch it or provide the file with the package

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (5 preceding siblings ...)
  2021-02-22 16:48 ` Mek101
@ 2021-02-22 16:53 ` ericonr
  2021-02-22 17:13 ` Mek101
                   ` (24 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-02-22 16:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 266 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-783515495

Comment:
How about try to get it upstream? It should solve the issue for any distro, because a service is really not necessary here.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (6 preceding siblings ...)
  2021-02-22 16:53 ` ericonr
@ 2021-02-22 17:13 ` Mek101
  2021-04-03 16:23 ` Mek101
                   ` (23 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-02-22 17:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 219 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-783529136

Comment:
That would be ideal.
Upstream here: https://github.com/lm-sensors/lm-sensors

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (7 preceding siblings ...)
  2021-02-22 17:13 ` Mek101
@ 2021-04-03 16:23 ` Mek101
  2021-04-03 16:55 ` Mek101
                   ` (22 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-03 16:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 464 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-812888418

Comment:
We could patch the `sensors-detect` [script](https://github.com/lm-sensors/lm-sensors/blob/master/prog/detect/sensors-detect) to place a file with the modules to load in `/etc/modules-load.d/sensors` (which is just plaintext with a name of a module to load per line).
Unfortunately, I don't know Perl to do it myself :(


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (8 preceding siblings ...)
  2021-04-03 16:23 ` Mek101
@ 2021-04-03 16:55 ` Mek101
  2021-04-03 19:36 ` ericonr
                   ` (21 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-03 16:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 300 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-812893138

Comment:
Ok, Tested it: not `/etc/modules-load.d/sensors` but `/etc/modules-load.d/sensors.conf`, and after that update initramfs with `xbps-reconfigure -f linux5.11 `

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (9 preceding siblings ...)
  2021-04-03 16:55 ` Mek101
@ 2021-04-03 19:36 ` ericonr
  2021-04-04  7:34 ` Mek101
                   ` (20 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-04-03 19:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 276 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-812915208

Comment:
I think it's an ok patch to carry downstream, for now, if you already have it written. It would be nice to PR it upstream, of course.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (10 preceding siblings ...)
  2021-04-03 19:36 ` ericonr
@ 2021-04-04  7:34 ` Mek101
  2021-04-04 20:20 ` ericonr
                   ` (19 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-04  7:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 518 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-812988851

Comment:
Unfortunately, I don't have any patch: since I only tested the file streategy and what needs to be done; the modules to load change from system to system and the file must be generated and placed in `/etc/modules-load.d/` by the script linked above.
Perhaps, could you add the tag "Help wanted" to this issue", hoping that someone who knows how to write perl stubles upon it?

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (11 preceding siblings ...)
  2021-04-04  7:34 ` Mek101
@ 2021-04-04 20:20 ` ericonr
  2021-04-20 19:56 ` thegarlynch
                   ` (18 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2021-04-04 20:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 157 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-813093910

Comment:
Sure, will do.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (12 preceding siblings ...)
  2021-04-04 20:20 ` ericonr
@ 2021-04-20 19:56 ` thegarlynch
  2021-04-20 20:07 ` Mek101
                   ` (17 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: thegarlynch @ 2021-04-20 19:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 204 bytes --]

New comment by thegarlynch on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-823560414

Comment:
Wait. i do have to configure rc.shutdown too here right ?

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (13 preceding siblings ...)
  2021-04-20 19:56 ` thegarlynch
@ 2021-04-20 20:07 ` Mek101
  2021-04-21 17:31 ` thegarlynch
                   ` (16 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-20 20:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 218 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-823567068

Comment:
You shouldn't need to, since at shutdown the modules will be unloaded anyway

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (14 preceding siblings ...)
  2021-04-20 20:07 ` Mek101
@ 2021-04-21 17:31 ` thegarlynch
  2021-04-21 17:41 ` Mek101
                   ` (15 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: thegarlynch @ 2021-04-21 17:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 476 bytes --]

New comment by thegarlynch on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-824233891

Comment:
Argh, i give up, it is hard to made this fan less noisy. i've tried everything, thermald turns out dptfxtract is not in musl and non gpl. i tried lm_sensors but pwmconfig is errored with "there are no pwm capable sensors installed" (already recompile kernel and include it in modules-load.d)

my windows is less noisy than this

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (15 preceding siblings ...)
  2021-04-21 17:31 ` thegarlynch
@ 2021-04-21 17:41 ` Mek101
  2021-04-21 17:44 ` Mek101
                   ` (14 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-21 17:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 244 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-824240302

Comment:
Sir, lm_sensors only displays the sensors data, it doesn't modify or otherwise interact with the fans.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (16 preceding siblings ...)
  2021-04-21 17:41 ` Mek101
@ 2021-04-21 17:44 ` Mek101
  2021-04-21 17:45 ` thegarlynch
                   ` (13 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-21 17:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 367 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-824240302

Comment:
Sir, lm_sensors only displays the sensors data, it doesn't modify or otherwise interact with the fans.
Recompiling the kernel with the same settings doesn't really help either. I suggest you try asking to your distro's forum

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (17 preceding siblings ...)
  2021-04-21 17:44 ` Mek101
@ 2021-04-21 17:45 ` thegarlynch
  2021-04-21 17:48 ` Mek101
                   ` (12 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: thegarlynch @ 2021-04-21 17:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 205 bytes --]

New comment by thegarlynch on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-824242324

Comment:
Lol, this is XY problem isn't it. i should have just asked

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (18 preceding siblings ...)
  2021-04-21 17:45 ` thegarlynch
@ 2021-04-21 17:48 ` Mek101
  2021-12-22 12:08 ` CatalinCsnMaster
                   ` (11 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-04-21 17:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 267 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-824244341

Comment:
In the appropiate place in the appropiate manner, not in a bug tracking issue regarding a sensor reader command line utility.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (19 preceding siblings ...)
  2021-04-21 17:48 ` Mek101
@ 2021-12-22 12:08 ` CatalinCsnMaster
  2021-12-22 12:09 ` CatalinCsnMaster
                   ` (10 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: CatalinCsnMaster @ 2021-12-22 12:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 196 bytes --]

New comment by CatalinCsnMaster on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-999529054

Comment:
Hello! Is this still open? can I contribute?

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (20 preceding siblings ...)
  2021-12-22 12:08 ` CatalinCsnMaster
@ 2021-12-22 12:09 ` CatalinCsnMaster
  2021-12-22 12:26 ` Mek101
                   ` (9 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: CatalinCsnMaster @ 2021-12-22 12:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 237 bytes --]

New comment by CatalinCsnMaster on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-999529054

Comment:
Hello! Found this issue and I know Perl 😄  
Is this still open? can I contribute?

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (21 preceding siblings ...)
  2021-12-22 12:09 ` CatalinCsnMaster
@ 2021-12-22 12:26 ` Mek101
  2021-12-22 12:26 ` Mek101
                   ` (8 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-12-22 12:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 151 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-999539696

Comment:
Of course

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (22 preceding siblings ...)
  2021-12-22 12:26 ` Mek101
@ 2021-12-22 12:26 ` Mek101
  2021-12-22 12:27 ` Mek101
                   ` (7 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-12-22 12:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 151 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-999539696

Comment:
Of course

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (23 preceding siblings ...)
  2021-12-22 12:26 ` Mek101
@ 2021-12-22 12:27 ` Mek101
  2022-05-01  2:15 ` github-actions
                   ` (6 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2021-12-22 12:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 151 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-999540559

Comment:
Of course

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (24 preceding siblings ...)
  2021-12-22 12:27 ` Mek101
@ 2022-05-01  2:15 ` github-actions
  2022-05-01 15:19 ` Mek101
                   ` (5 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: github-actions @ 2022-05-01  2:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 293 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-1114104851

Comment:
Issues become stale 90 days after last activity and are closed 14 days after that.  If this issue is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (25 preceding siblings ...)
  2022-05-01  2:15 ` github-actions
@ 2022-05-01 15:19 ` Mek101
  2022-05-01 15:19 ` Mek101
                   ` (4 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2022-05-01 15:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-1114264159

Comment:
Bump

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (26 preceding siblings ...)
  2022-05-01 15:19 ` Mek101
@ 2022-05-01 15:19 ` Mek101
  2022-05-01 15:40 ` Mek101
                   ` (3 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2022-05-01 15:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-1114264201

Comment:
Bump

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (27 preceding siblings ...)
  2022-05-01 15:19 ` Mek101
@ 2022-05-01 15:40 ` Mek101
  2022-05-01 19:10 ` ericonr
                   ` (2 subsequent siblings)
  31 siblings, 0 replies; 33+ messages in thread
From: Mek101 @ 2022-05-01 15:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

New comment by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-1114264201

Comment:
Bump

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (28 preceding siblings ...)
  2022-05-01 15:40 ` Mek101
@ 2022-05-01 19:10 ` ericonr
  2022-07-31  2:14 ` github-actions
  2022-08-14  2:14 ` [ISSUE] [CLOSED] " github-actions
  31 siblings, 0 replies; 33+ messages in thread
From: ericonr @ 2022-05-01 19:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 263 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-1114312546

Comment:
@Mek101 do you think we need to keep this open in here? The upstream issue is technically where it should be tracked :/

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (29 preceding siblings ...)
  2022-05-01 19:10 ` ericonr
@ 2022-07-31  2:14 ` github-actions
  2022-08-14  2:14 ` [ISSUE] [CLOSED] " github-actions
  31 siblings, 0 replies; 33+ messages in thread
From: github-actions @ 2022-07-31  2:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 293 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/issues/27525#issuecomment-1200332123

Comment:
Issues become stale 90 days after last activity and are closed 14 days after that.  If this issue is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [ISSUE] [CLOSED] lm_sensors should include a service
  2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
                   ` (30 preceding siblings ...)
  2022-07-31  2:14 ` github-actions
@ 2022-08-14  2:14 ` github-actions
  31 siblings, 0 replies; 33+ messages in thread
From: github-actions @ 2022-08-14  2:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 992 bytes --]

Closed issue by Mek101 on void-packages repository

https://github.com/void-linux/void-packages/issues/27525

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt . However, a quality pull request may help. -->
### System

* xuname:  
  Void 5.9.16_1 x86_64-musl AuthenticAMD uptodate rFFFF
* package:  
  lm_sensors-3.6.0_1

### Expected behavior
At the end of the `sensors` setup via `sensors-detect`, the latter prints to enable the `lm_sensors` service to load the appropriate modules at boot time.

### Actual behavior
The output is:
```
Copy prog/init/lm_sensors.init to /etc/init.d/lm_sensors for initialization at boot time.
You should now start the lm_sensors service to load the required kernel modules.
```
Not only the paths are wrong, but there also no sensors service under `/etc/sv/` to start

### Steps to reproduce the behavior
Run the `sensors-detect` command.


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2022-08-14  2:14 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-29  9:53 [ISSUE] lm_sensors service missing Mek101
2021-01-02  0:29 ` ericonr
2021-01-02  0:30 ` ericonr
2021-01-02  0:31 ` ericonr
2021-02-22 11:37 ` lm_sensors should include a service Mek101
2021-02-22 15:58 ` ericonr
2021-02-22 16:48 ` Mek101
2021-02-22 16:53 ` ericonr
2021-02-22 17:13 ` Mek101
2021-04-03 16:23 ` Mek101
2021-04-03 16:55 ` Mek101
2021-04-03 19:36 ` ericonr
2021-04-04  7:34 ` Mek101
2021-04-04 20:20 ` ericonr
2021-04-20 19:56 ` thegarlynch
2021-04-20 20:07 ` Mek101
2021-04-21 17:31 ` thegarlynch
2021-04-21 17:41 ` Mek101
2021-04-21 17:44 ` Mek101
2021-04-21 17:45 ` thegarlynch
2021-04-21 17:48 ` Mek101
2021-12-22 12:08 ` CatalinCsnMaster
2021-12-22 12:09 ` CatalinCsnMaster
2021-12-22 12:26 ` Mek101
2021-12-22 12:26 ` Mek101
2021-12-22 12:27 ` Mek101
2022-05-01  2:15 ` github-actions
2022-05-01 15:19 ` Mek101
2022-05-01 15:19 ` Mek101
2022-05-01 15:40 ` Mek101
2022-05-01 19:10 ` ericonr
2022-07-31  2:14 ` github-actions
2022-08-14  2:14 ` [ISSUE] [CLOSED] " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).