File tree 5 files changed +18
-1
lines changed
root/etc/s6-overlay/s6-rc.d/init-config-homeassistant
5 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -229,6 +229,10 @@ RUN \
229
229
for cleanfiles in *.pyc *.pyo; do \
230
230
find /usr/local/lib/python3.* -iname "${cleanfiles}" -exec rm -f '{}' + ; \
231
231
done && \
232
+ chown -R root:7310 /usr/local && \
233
+ chmod -R g+w /usr/local && \
234
+ groupadd lsio && \
235
+ groupmod -g 7310 lsio && \
232
236
printf "Linuxserver.io version: ${VERSION}\n Build-date: ${BUILD_DATE}" > /build_version && \
233
237
echo "**** cleanup ****" && \
234
238
apk del --purge \
Original file line number Diff line number Diff line change @@ -229,6 +229,10 @@ RUN \
229
229
for cleanfiles in *.pyc *.pyo; do \
230
230
find /usr/local/lib/python3.* -iname "${cleanfiles}" -exec rm -f '{}' + ; \
231
231
done && \
232
+ chown -R root:7310 /usr/local && \
233
+ chmod -R g+w /usr/local && \
234
+ groupadd lsio && \
235
+ groupmod -g 7310 lsio && \
232
236
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
233
237
echo "**** cleanup ****" && \
234
238
apk del --purge \
Original file line number Diff line number Diff line change @@ -316,6 +316,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
316
316
317
317
# # Versions
318
318
319
+ * ** 12.10.24:** - Allow uv to modify system python packages.
319
320
* ** 07.10.24:** - Switch to ` uv` instead of ` pip` .
320
321
* ** 03.07.24:** - Rebase to alpine 3.20.
321
322
* ** 05.03.24:** - Add mime.types to help with detection of certain media files.
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ app_setup_block: |
74
74
unraid_template_sync : false
75
75
# changelog
76
76
changelogs :
77
+ - {date: "12.10.24:", desc: "Allow uv to modify system python packages."}
77
78
- {date: "07.10.24:", desc: "Switch to `uv` instead of `pip`."}
78
79
- {date: "03.07.24:", desc: "Rebase to alpine 3.20."}
79
80
- {date: "05.03.24:", desc: "Add mime.types to help with detection of certain media files."}
Original file line number Diff line number Diff line change 2
2
# shellcheck shell=bash
3
3
4
4
# migration
5
- rm -rf /config/lsiopy
5
+ rm -rf \
6
+ /config/lsiopy \
7
+ /config/.local/{bin,lib}
8
+
9
+ # Add abc user to python system install owner group, lsio (7310)
10
+ if ! id -G abc | grep -qw "7310"; then
11
+ usermod -a -G lsio abc
12
+ fi
6
13
7
14
# set permissions
8
15
echo "Setting permissions"
You can’t perform that action at this time.
0 commit comments