forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CLI 4.11.0 (home-assistant#1920)
- Loading branch information
Showing
7 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 7.12.2 | ||
|
||
- Update Home Assistant CLI to 4.11.0 | ||
|
||
## 7.12.1 | ||
|
||
- Update options schema for passwords | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
"i386": "homeassistant/i386-base:3.11" | ||
}, | ||
"args": { | ||
"CLI_VERSION": "4.2.0" | ||
"CLI_VERSION": "4.11.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/with-contenv bashio | ||
# ============================================================================== | ||
# SSH install additional packages on startup | ||
# ============================================================================== | ||
|
||
if ! bashio::config.has_value "apks"; then | ||
bashio::exit.ok | ||
fi | ||
|
||
apk update \ | ||
|| bashio::exit.nok "Failed updating Alpine packages indexes" | ||
|
||
for package in $(bashio::config "apks"); do | ||
apk add "$package" \ | ||
|| bashio::exit.nok "Failed installing ${package}" | ||
done |