This repository was archived by the owner on Apr 23, 2024. It is now read-only.
File tree 3 files changed +14
-8
lines changed
root/etc/s6-overlay/s6-rc.d
3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Python 3
8
8
project_lsio_github_repo_url : " https://github.com/linuxserver/docker-{{ project_name }}"
9
9
project_blurb_optional_extras_enabled : false
10
10
11
+ project_deprecation_status : true
12
+ project_deprecation_message : |
13
+ Please migrate to our Kometa image instead:
14
+ https://github.com/linuxserver/docker-kometa
15
+
11
16
# supported architectures
12
17
available_architectures :
13
18
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
@@ -61,6 +66,7 @@ app_setup_block: |
61
66
62
67
# changelog
63
68
changelogs :
69
+ - { date: "22.04.24:", desc: "Deprecate."}
64
70
- { date: "22.04.24:", desc: "Update backend to reflect upstream repo rename."}
65
71
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
66
72
- { date: "10.06.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ if [[ -n "${CONFIG_FILE}" ]] && [[ ! -e "${CONFIG_FILE}" ]]; then
23
23
fi
24
24
25
25
if { echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--run|-r)([\s]|$)'; } && { echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--config|-c)([\s])(.+\/[^\/]+)\.(yml|yaml)'; }; then
26
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py "${CLI_OPTIONS[@]}"
26
+ s6-setuidgid abc python3 /app/pmm/kometa .py "${CLI_OPTIONS[@]}"
27
27
elif echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--run|-r)([\s]|$)'; then
28
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py --config "${CONFIG_FILE}" "${CLI_OPTIONS[@]}"
28
+ s6-setuidgid abc python3 /app/pmm/kometa .py --config "${CONFIG_FILE}" "${CLI_OPTIONS[@]}"
29
29
elif echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--config|-c)([\s])(.+\/[^\/]+)\.(yml|yaml)'; then
30
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py --run "${CLI_OPTIONS[@]}"
30
+ s6-setuidgid abc python3 /app/pmm/kometa .py --run "${CLI_OPTIONS[@]}"
31
31
else
32
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py --run --config "${CONFIG_FILE}" "${CLI_OPTIONS[@]}"
32
+ s6-setuidgid abc python3 /app/pmm/kometa .py --run --config "${CONFIG_FILE}" "${CLI_OPTIONS[@]}"
33
33
fi
Original file line number Diff line number Diff line change 23
23
24
24
if { echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--time|-t)([\s])'; } && { echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--config|-c)([\s])(.+\/[^\/]+)\.(yml|yaml)'; }; then
25
25
exec \
26
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py "${CLI_OPTIONS[@]}"
26
+ s6-setuidgid abc python3 /app/pmm/kometa .py "${CLI_OPTIONS[@]}"
27
27
elif echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--time|-t)([\s])'; then
28
28
exec \
29
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py --config "${CONFIG_FILE}" "${CLI_OPTIONS[@]}"
29
+ s6-setuidgid abc python3 /app/pmm/kometa .py --config "${CONFIG_FILE}" "${CLI_OPTIONS[@]}"
30
30
elif echo "${CLI_OPTIONS[@]}" | grep -qPo '([\s]|^)(--config|-c)([\s])(.+\/[^\/]+)\.(yml|yaml)'; then
31
31
exec \
32
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py --time "${PMM_TIME:-03:00}" "${CLI_OPTIONS[@]}"
32
+ s6-setuidgid abc python3 /app/pmm/kometa .py --time "${PMM_TIME:-03:00}" "${CLI_OPTIONS[@]}"
33
33
else
34
34
exec \
35
- s6-setuidgid abc python3 /app/pmm/plex_meta_manager .py --config "${CONFIG_FILE}" --time "${PMM_TIME:-03:00}" "${CLI_OPTIONS[@]}"
35
+ s6-setuidgid abc python3 /app/pmm/kometa .py --config "${CONFIG_FILE}" --time "${PMM_TIME:-03:00}" "${CLI_OPTIONS[@]}"
36
36
fi
You can’t perform that action at this time.
0 commit comments