Shell command doesn't work anymore after 2020.12

Hello,
I have simple shall command which did work without any issues, but it doesn÷t work anymore after 2020.12:
paplay --volume=15000 /media/notifications/short-notice.wav

All I get is this error:
Error running command: paplay --volume=15000 /media/notifications/short-notice.wav, return code: 1

In terminal (SSH & Web & Terminal add-on) it works as expected.

What changes in the atest update that it doesn’t work anymore? Any idea how can I fix it?

Thank you.

Check your command in the homeassistant container.

But it does work in Terminal add-on even with protection mode On, so I do not have any problem with terminal.
Problem is, that shell_command doesn’t work even it worked before. What has been changed? I cannot find anything in release notes.

1 Like

Same issue here. I think it started to fail after the HassOS 5 update (for me it was before 2020.12 version).
Any hint/solution you have found so far?

I am using it with SSH & Web Terminal add-on like this now:

notification_confirm:
  alias: Confirm sound
  sequence:
  - data:
      addon: a0d7b954_ssh
      input: /config/my_scripts/notification_confirm.sh
    service: hassio.addon_stdin

and notification_confirm.sh contains:

#!/bin/bash
paplay --volume=15000 /media/notifications/short-notice.wav
1 Like

Thanks, it seems that hassio.addon_stdin service doesn’t work with core_ssh add on, only with the SSH & Web Terminal one, which I can’t install due to a boken pipe error. Seems impossible to fix!