mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-07-28 07:26:28 +00:00
Only run HA CLI interactively if stdout is a terminal (#3292)
* Only run HA CLI interactively if stdout is a terminal Flags for running HA CLI commands in an interactive shell added in #3238 cause the command to fail if the process is not running in a terminal. This is needed for example for the fsfreeze hook, otherwise the command fails, as seen in this trace when the hook is executed: ----------- + '[' thaw '=' freeze ] + '[' thaw '=' thaw ] + echo 'File system thaw requested, thawing Home Assistant' File system thaw requested, thawing Home Assistant + ha backups thaw the input device is not a TTY ------------ However, for example on Proxmox this message is not logged anywhere and the hook just fails silently (i.e. it doesn't cause the backup to fail). Fixes #3251 * Use -i also when not running in a terminal (cherry picked from commit 78d281fce111dec47154e02a6f70c1f7a6346ad5)
This commit is contained in:
parent
3e970f1e9a
commit
5dc234d14f
@ -3,4 +3,9 @@
|
||||
# HA utility
|
||||
# ==============================================================================
|
||||
|
||||
docker exec -it hassio_cli ha "$@"
|
||||
if [ -t 1 ]; then
|
||||
# stdout (fd 1) must be terminal, otherwise `-t` causes error
|
||||
docker exec -it hassio_cli ha "$@"
|
||||
else
|
||||
docker exec -i hassio_cli ha "$@"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user