mirror of
https://github.com/hassio-addons/addon-base.git
synced 2025-05-07 12:21:30 +00:00
11 lines
667 B
Bash
Executable file
11 lines
667 B
Bash
Executable file
#!/bin/bash
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Base Images
|
|
# Really tiny command, that can be used by other images to remove legacy S6
|
|
# Overlay files. This makes startup for those add-ons a tiny bit cleaner.
|
|
# ==============================================================================
|
|
rm -fr \
|
|
/package/admin/s6-overlay/etc/s6-rc/sources/base/contents.d/legacy-cont-init \
|
|
/package/admin/s6-overlay/etc/s6-rc/sources/top/contents.d/legacy-services \
|
|
/package/admin/s6-overlay/etc/s6-rc/sources/legacy-cont-init \
|
|
/package/admin/s6-overlay/etc/s6-rc/sources/legacy-services
|