Compare commits

...

30 commits

Author SHA1 Message Date
8e50cb2e15
typo
Some checks failed
/ job (push) Failing after 8m53s
2024-06-24 13:05:27 +02:00
7fc3f088cc
split 2024-06-24 13:03:46 +02:00
d3d54bd2be
unsplit 2024-06-24 12:21:45 +02:00
87feb55792
indents 2024-06-24 12:20:16 +02:00
c197081d8e
indents 2024-06-24 12:17:39 +02:00
f50afa916f
indents 2024-06-24 12:15:09 +02:00
d5468ffde6
indent 2024-06-24 12:13:33 +02:00
db2092a251
indents 2024-06-24 12:10:28 +02:00
bc7498fba2
indents 2024-06-24 12:09:07 +02:00
7a9ed2ee10
pidd_sed 2024-06-24 12:04:00 +02:00
3df6f15f0e
seds 2024-06-24 12:01:44 +02:00
6e4692cb37
cases 2024-06-24 11:53:40 +02:00
736a0174ed
cases 2024-06-24 11:44:21 +02:00
3a5a670311
unindent 2024-06-24 11:35:40 +02:00
57a54c31d5
>" 2024-06-24 11:32:47 +02:00
ffcbe5afe0
+ 1 2024-06-24 11:28:36 +02:00
94087de223
; 2024-06-24 11:22:38 +02:00
1bbfa13c10
\t 2024-06-24 11:19:15 +02:00
3a8c567beb
" | " 2024-06-24 11:06:19 +02:00
61f61b08f2
]; 2024-06-24 11:04:10 +02:00
de370d346d
*) ;; 2024-06-24 10:59:41 +02:00
0dbbaaab69
() 2024-06-24 10:48:26 +02:00
81bcc37d25
stp 2024-06-24 09:51:01 +02:00
e7f64392fc
wpm 2024-06-24 08:43:07 +02:00
10b499d979
ipm 2024-06-24 08:39:21 +02:00
b1579d654f
wcc 2024-06-24 08:30:54 +02:00
dfef8ba5a6
sdr 2024-06-24 08:25:38 +02:00
0ee67f04c1
spr 2024-06-24 08:21:45 +02:00
24312b41c5
lwd 2024-06-24 08:16:50 +02:00
bf521a7200
mv 2024-06-24 08:10:47 +02:00

224
pidd.sh
View file

@ -38,6 +38,19 @@ pidd_main () {
pidd_switch_to_python "${@}"
}
# context
pidd_list_environment_variables() {
pidd_step "List environment variables"
env | sort
}
pidd_list_working_directory() {
pidd_step "List working directory"
pidd_lwd__path="$(realpath .)"
pidd_ls "${pidd_lwd__path}"
}
# steps
pidd_set_environment_variables() {
@ -59,18 +72,19 @@ pidd_set_environment_variables () {
esac
# set operating system version
case "${PIDD_OS_ID}" in
"${PIDD_OS_ALMA}"|"${PIDD_OS_ARCH}"|"${PIDD_OS_FEDORA}"|"${PIDD_OS_ROCKY}")
PIDD_OS_VERSION=$(pidd_grep_os VERSION_ID \
| sed "s|^\([0-9]\+\)\..*|\1|")
"${PIDD_OS_ALMA}" | "${PIDD_OS_FEDORA}" | "${PIDD_OS_ROCKY}" | \
"${PIDD_OS_ARCH}")
PIDD_OS_VERSION=$(pidd_grep_os VERSION_ID |
sed "s|^\([0-9]\+\)\..*|\1|")
;;
"${PIDD_OS_ALPINE}")
PIDD_OS_VERSION=$(pidd_grep_os VERSION_ID \
| sed "s|^\([0-9]\+\.[0-9]\+\)\..*|\1|")
PIDD_OS_VERSION=$(pidd_grep_os VERSION_ID |
sed "s|^\([0-9]\+\.[0-9]\+\)\..*|\1|")
;;
"${PIDD_OS_DEBIAN}" | "${PIDD_OS_UBUNTU}")
PIDD_OS_VERSION="$(pidd_grep_os VERSION_CODENAME)"
;;
*)
*) ;;
esac
# check operating system version
case "${PIDD_OS_ID}" in
@ -110,7 +124,7 @@ pidd_set_environment_variables () {
*) pidd_error_os "PIDD_OS_VERSION" ;;
esac
;;
*)
*) ;;
esac
pidd_split
pidd_echo "PIDD_OS_ID" "PIDD_OS_VERSION"
@ -141,7 +155,7 @@ pidd_set_environment_variables () {
PIDD_CA_ROOT="/usr/local/share/ca-certificates"
PIDD_CMD_CA="update-ca-certificates"
;;
*)
*) ;;
esac
pidd_split
pidd_echo "PIDD_CA_ROOT" "PIDD_CMD_CA"
@ -159,7 +173,7 @@ pidd_set_environment_variables () {
"${PIDD_OS_ARCH}")
PIDD_PM="${PIDD_PM_PACMAN}"
;;
*)
*) ;;
esac
pidd_split
pidd_echo "PIDD_PM"
@ -233,7 +247,7 @@ Dir::Etc::SourceParts \"\";
Acquire::https::Verify-Peer False;
"
;;
*)
*) ;;
esac
pidd_split
pidd_echo "PIDD_PM_CLEAN" \
@ -263,7 +277,7 @@ Acquire::https::Verify-Peer False;
"${PIDD_OS_UBUNTU}")
PIDD_URL_DEFAULT="http://archive.ubuntu.com/ubuntu"
;;
*)
*) ;;
esac
PIDD_URL_CHOSEN="${PIDD_URL_DEFAULT}"
case "${PIDD_OS_ID}" in
@ -277,22 +291,22 @@ Acquire::https::Verify-Peer False;
[ -n "${PIDD_URL_ARCH}" ] && PIDD_URL_CHOSEN="${PIDD_URL_ARCH}"
;;
"${PIDD_OS_DEBIAN}")
[ -n "${PIDD_URL_DEBIAN}" ] && PIDD_URL_CHOSEN="${PIDD_URL_DEBIAN}" \
|| PIDD_URL_CHOSEN="https://deb.debian.org/debian"
[ -n "${PIDD_URL_DEBIAN}" ] && PIDD_URL_CHOSEN="${PIDD_URL_DEBIAN}" ||
PIDD_URL_CHOSEN="https://deb.debian.org/debian"
;;
"${PIDD_OS_FEDORA}")
[ -n "${PIDD_URL_FEDORA}" ] && PIDD_URL_CHOSEN="${PIDD_URL_FEDORA}" \
|| PIDD_URL_CHOSEN="https://rpmfind.net/linux/fedora/linux/releases"
[ -n "${PIDD_URL_FEDORA}" ] && PIDD_URL_CHOSEN="${PIDD_URL_FEDORA}" ||
PIDD_URL_CHOSEN="https://rpmfind.net/linux/fedora/linux/releases"
;;
"${PIDD_OS_ROCKY}")
[ -n "${PIDD_URL_ROCKY}" ] && PIDD_URL_CHOSEN="${PIDD_URL_ROCKY}" \
|| PIDD_URL_CHOSEN="https://dl.rockylinux.org/\$contentdir"
[ -n "${PIDD_URL_ROCKY}" ] && PIDD_URL_CHOSEN="${PIDD_URL_ROCKY}" ||
PIDD_URL_CHOSEN="https://dl.rockylinux.org/\$contentdir"
;;
"${PIDD_OS_UBUNTU}")
[ -n "${PIDD_URL_UBUNTU}" ] && PIDD_URL_CHOSEN="${PIDD_URL_UBUNTU}" \
|| PIDD_URL_CHOSEN="https://ubuntu.mirrors.ovh.net/ubuntu"
[ -n "${PIDD_URL_UBUNTU}" ] && PIDD_URL_CHOSEN="${PIDD_URL_UBUNTU}" ||
PIDD_URL_CHOSEN="https://ubuntu.mirrors.ovh.net/ubuntu"
;;
*)
*) ;;
esac
pidd_split
pidd_echo "PIDD_URL_DEFAULT" "PIDD_URL_CHOSEN"
@ -314,7 +328,7 @@ Acquire::https::Verify-Peer False;
case "${PIDD_OS_VERSION}" in
"bookworm") PIDD_PYTHON_COMMAND="python3.11" ;;
"bullseye") PIDD_PYTHON_COMMAND="python3.9" ;;
*)
*) ;;
esac
PIDD_PYTHON_PACKAGE="python3"
;;
@ -326,11 +340,11 @@ Acquire::https::Verify-Peer False;
case "${PIDD_OS_VERSION}" in
"noble") PIDD_PYTHON_COMMAND="python3.12" ;;
"jammy") PIDD_PYTHON_COMMAND="python3.10" ;;
*)
*) ;;
esac
PIDD_PYTHON_PACKAGE="python3"
;;
*)
*) ;;
esac
# set python packages
case "${PIDD_OS_ID}" in
@ -343,7 +357,7 @@ Acquire::https::Verify-Peer False;
"${PIDD_OS_DEBIAN}" | "${PIDD_OS_UBUNTU}")
PIDD_PYTHON_PACKAGES="/usr/lib/${PIDD_PYTHON_ALIAS}/dist-packages"
;;
*)
*) ;;
esac
pidd_split
pidd_echo "PIDD_PYTHON_COMMAND" "PIDD_PYTHON_PACKAGE" "PIDD_PYTHON_PACKAGES"
@ -426,7 +440,7 @@ Acquire::https::Verify-Peer False;
"${PIDD_PM_APK}" | "${PIDD_PM_APT}") PIDD_PKG_SSH="openssh-client" ;;
"${PIDD_PM_DNF}") PIDD_PKG_SSH="openssh-clients" ;;
"${PIDD_PM_PACMAN}") PIDD_PKG_SSH="openssh" ;;
*)
*) ;;
esac
}
@ -435,27 +449,25 @@ pidd_set_packages_repositories () {
case "${PIDD_OS_ID}" in
"${PIDD_OS_ALMA}")
case "${PIDD_OS_VERSION}" in
"8") \
pidd_set_packages_repositories__file="/etc/yum.repos.d/almalinux.repo" ;;
"9") \
pidd_set_packages_repositories__file="/etc/yum.repos.d/almalinux-baseos.repo" ;;
*)
"8") pidd_spr__file="/etc/yum.repos.d/almalinux.repo" ;;
"9") pidd_spr__file="/etc/yum.repos.d/almalinux-baseos.repo" ;;
*) ;;
esac
pidd_sed "${pidd_set_packages_repositories__file}" \
pidd_sed "${pidd_spr__file}" \
"|^mirrorlist|# mirrorlist|" \
"|${PIDD_URL_DEFAULT}|${PIDD_URL_CHOSEN}|" \
"|^# baseurl|baseurl|"
;;
"${PIDD_OS_ALPINE}")
pidd_set_packages_repositories__file="/etc/apk/repositories"
pidd_write "${pidd_set_packages_repositories__file}" "\
pidd_spr__file="/etc/apk/repositories"
pidd_write "${pidd_spr__file}" "\
${PIDD_URL_CHOSEN}/v${PIDD_OS_VERSION}/main
${PIDD_URL_CHOSEN}/v${PIDD_OS_VERSION}/community
"
;;
"${PIDD_OS_DEBIAN}")
pidd_set_packages_repositories__file="/etc/apt/sources.list"
pidd_write "${pidd_set_packages_repositories__file}" "\
pidd_spr__file="/etc/apt/sources.list"
pidd_write "${pidd_spr__file}" "\
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION} main
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION}-backports main
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION}-updates main
@ -464,27 +476,25 @@ deb ${PIDD_URL_CHOSEN}-security ${PIDD_OS_VERSION}-security main
;;
"${PIDD_OS_ROCKY}")
case "${PIDD_OS_VERSION}" in
"8") \
pidd_set_packages_repositories__file="/etc/yum.repos.d/Rocky-BaseOS.repo" ;;
"9") \
pidd_set_packages_repositories__file="/etc/yum.repos.d/rocky.repo" ;;
*)
"8") pidd_spr__file="/etc/yum.repos.d/Rocky-BaseOS.repo" ;;
"9") pidd_spr__file="/etc/yum.repos.d/rocky.repo" ;;
*) ;;
esac
pidd_sed "${pidd_set_packages_repositories__file}" \
pidd_sed "${pidd_spr__file}" \
"|^mirrorlist|# mirrorlist|" \
"|${PIDD_URL_DEFAULT}|${PIDD_URL_CHOSEN}|" \
"|^#baseurl|baseurl|"
;;
"${PIDD_OS_UBUNTU}")
pidd_set_packages_repositories__file="/etc/apt/sources.list"
pidd_write "${pidd_set_packages_repositories__file}" "\
pidd_spr__file="/etc/apt/sources.list"
pidd_write "${pidd_spr__file}" "\
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION} main
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION}-backports main
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION}-updates main
deb ${PIDD_URL_CHOSEN} ${PIDD_OS_VERSION}-security main
"
;;
*)
*) ;;
esac
}
@ -495,23 +505,12 @@ pidd_set_packages_configuration () {
"${PIDD_OS_DEBIAN}" | "${PIDD_OS_UBUNTU}")
export DEBIAN_FRONTEND="noninteractive"
;;
*)
*) ;;
esac
}
# agnostic steps
pidd_list_environment_variables () {
pidd_step "List environment variables"
env | sort
}
pidd_list_working_directory () {
pidd_step "List working directory"
pidd_list_working_directory__path="$(realpath .)"
pidd_ls "${pidd_list_working_directory__path}"
}
pidd_set_https_verification_off() {
if [ -n "${PIDD_CA}" ] || [ "${PIDD_PM}" = "${PIDD_PM_APT}" ]; then
pidd_step "Set HTTPS verification off"
@ -522,12 +521,12 @@ pidd_set_https_verification_off () {
pidd_set_dns_resolving() {
pidd_step "Set DNS resolving"
for pidd_set_dns_resolving__server in ${PIDD_DNS} ; do
pidd_set_dns_resolving__text="${pidd_set_dns_resolving__text}\
nameserver ${pidd_set_dns_resolving__server}
for pidd_sdr__server in ${PIDD_DNS}; do
pidd_sdr__text="${pidd_sdr__text}\
nameserver ${pidd_sdr__server}
"
done
pidd_write "${PIDD_DNS_FILE}" "${pidd_set_dns_resolving__text}"
pidd_write "${PIDD_DNS_FILE}" "${pidd_sdr__text}"
}
pidd_update_packages_catalog() {
@ -548,20 +547,15 @@ pidd_install_ca_certificates () {
pidd_write_ca_certificates() {
pidd_step "Write CA certificates"
pidd_mkdir "${PIDD_CA_ROOT}"
pidd_write_ca_certificates__index=1
eval "pidd_write_ca_certificates__text=\
\"\${PIDD_CA_${pidd_write_ca_certificates__index}}\""
while [ -n "${pidd_write_ca_certificates__text}" ] ; do
pidd_write_ca_certificates__path="\
${PIDD_CA_ROOT}/${pidd_write_ca_certificates__index}.crt"
pidd_wcc__index=1
eval "pidd_wcc__text=\"\${PIDD_CA_${pidd_wcc__index}}\""
while [ -n "${pidd_wcc__text}" ]; do
pidd_wcc__path="${PIDD_CA_ROOT}/${pidd_wcc__index}.crt"
pidd_split
pidd_write \
"${pidd_write_ca_certificates__path}" \
"${pidd_write_ca_certificates__text}"
pidd_openssl "${pidd_write_ca_certificates__path}"
pidd_write_ca_certificates__index=$((pidd_write_ca_certificates__index+1))
eval "pidd_write_ca_certificates__text=\
\"\${PIDD_CA_${pidd_write_ca_certificates__index}}\""
pidd_write "${pidd_wcc__path}" "${pidd_wcc__text}"
pidd_openssl "${pidd_wcc__path}"
pidd_wcc__index=$((pidd_wcc__index + 1))
eval "pidd_wcc__text=\"\${PIDD_CA_${pidd_wcc__index}}\""
done
}
@ -611,73 +605,61 @@ pidd_clean_packages_cache () {
pidd_install_python_modules() {
pidd_step "Install Python modules"
pidd_install_python_modules__root="$(mktemp --directory)" || exit
echo "${pidd_install_python_modules__root}"
for pidd_install_python_modules__repository \
in "${PIDD_GIT_MAIN}" "${PIDD_GIT_ROOT}" ; do
case "${pidd_install_python_modules__repository}" in
http*) pidd_install_python_modules__url="\
${pidd_install_python_modules__repository}" ;;
/*) pidd_install_python_modules__url="${PIDD_PROJECT_ROOT}\
${pidd_install_python_modules__repository}" ;;
*) pidd_install_python_modules__url="${PIDD_PROJECT_ROOT}\
/${PIDD_PROJECT_PATH}/${pidd_install_python_modules__repository}" ;;
pidd_ipm__root="$(mktemp --directory)" || exit
echo "${pidd_ipm__root}"
for pidd_ipm__repository in "${PIDD_GIT_MAIN}" "${PIDD_GIT_ROOT}"; do
case "${pidd_ipm__repository}" in
http*) pidd_ipm__url="${pidd_ipm__repository}" ;;
/*) pidd_ipm__url="${PIDD_PROJECT_ROOT}${pidd_ipm__repository}" ;;
*) pidd_ipm__url="\
${PIDD_PROJECT_ROOT}/${PIDD_PROJECT_PATH}/${pidd_ipm__repository}" ;;
esac
pidd_install_python_modules__name="\
$(basename "${pidd_install_python_modules__url}")"
pidd_ipm__name="$(basename "${pidd_ipm__url}")"
pidd_split
echo "\
${pidd_install_python_modules__url}
${pidd_ipm__url}
"
git clone \
"${pidd_install_python_modules__url}" \
"${pidd_install_python_modules__root}\
/${pidd_install_python_modules__name}" \
|| exit
pidd_install_python_modules__path="\
${pidd_install_python_modules__root}\
/${pidd_install_python_modules__name}\
/${pidd_install_python_modules__name}"
"${pidd_ipm__url}" \
"${pidd_ipm__root}/${pidd_ipm__name}" ||
exit
pidd_ipm__path="${pidd_ipm__root}/${pidd_ipm__name}/${pidd_ipm__name}"
echo "\
${pidd_install_python_modules__path}
${pidd_ipm__path}
${PIDD_PYTHON_PACKAGES}"
cp --recursive \
"${pidd_install_python_modules__path}" "${PIDD_PYTHON_PACKAGES}" \
|| exit
cp --recursive "${pidd_ipm__path}" "${PIDD_PYTHON_PACKAGES}" ||
exit
done
pidd_split
pidd_ls "${PIDD_PYTHON_PACKAGES}"
pidd_split
pidd_rm "${pidd_install_python_modules__root}"
pidd_rm "${pidd_ipm__root}"
}
pidd_write_python_module() {
pidd_step "Write Python module"
for pidd_write_python_module__variable in \
OPEN DOWN VERT SPLT __UP SHUT \
for pidd_wpm__variable in \
OS_ID OS_VERSION \
PROJECT_ROOT PROJECT_PATH PROJECT_NAME \
; do
pidd_write_python_module__value="\
$(pidd_echo "PIDD_${pidd_write_python_module__variable}")"
pidd_write_python_module__text="${pidd_write_python_module__text}\
${pidd_write_python_module__value}
OPEN DOWN VERT SPLT __UP SHUT; do
pidd_wpm__value="$(pidd_echo "PIDD_${pidd_wpm__variable}")"
pidd_wpm__text="${pidd_wpm__text}${pidd_wpm__value}
"
done
pidd_write "${PIDD_PYTHON_PACKAGES}/env.py" "${pidd_write_python_module__text}\
pidd_write "${PIDD_PYTHON_PACKAGES}/env.py" "${pidd_wpm__text}
PIDD_STEP = $((PIDD_STEP + 1))
"
}
pidd_switch_to_python() {
pidd_step "Switch to Python"
pidd_switch_to_python__name="$(basename "${PIDD_GIT_MAIN}")"
pidd_stp__name="$(basename "${PIDD_GIT_MAIN}")"
echo "\
${PIDD_PATH}
${PIDD_PYTHON_PACKAGES}/${pidd_switch_to_python__name}"
"${PIDD_PYTHON_ALIAS}" -m "${pidd_switch_to_python__name}" "${@}"
${PIDD_PYTHON_PACKAGES}/${pidd_stp__name}"
"${PIDD_PYTHON_ALIAS}" -m "${pidd_stp__name}" "${@}"
}
# functions
@ -716,9 +698,9 @@ pidd_error_os () {
pidd_grep_os() {
pidd_grep_os__variable="${1}"
if [ -n "${pidd_grep_os__variable}" ]; then
grep "^${pidd_grep_os__variable}=" "/etc/os-release" \
| sed "s|^${pidd_grep_os__variable}=||" \
| sed "s|^\"\(.*\)\"$|\1|"
grep "^${pidd_grep_os__variable}=" "/etc/os-release" |
sed "s|^${pidd_grep_os__variable}=||" |
sed "s|^\"\(.*\)\"$|\1|"
fi
}
@ -733,8 +715,8 @@ pidd_ln_python () {
pidd_ln_python__command="${1}"
if [ -n "${pidd_ln_python__command}" ]; then
echo "${PIDD_PYTHON_ALIAS}${pidd_ln_python__command}"
ln -f -s "${pidd_ln_python__command}" "/usr/bin/${PIDD_PYTHON_ALIAS}" \
|| exit
ln -f -s "${pidd_ln_python__command}" "/usr/bin/${PIDD_PYTHON_ALIAS}" ||
exit
fi
}
@ -764,8 +746,8 @@ pidd_openssl () {
if [ -f "${pidd_openssl__file}" ]; then
openssl x509 \
-in "${pidd_openssl__file}" \
-noout -text \
|| exit
-noout -text ||
exit
fi
}
@ -783,9 +765,9 @@ pidd_sed () {
if [ -f "${pidd_sed__file}" ]; then
pidd_cat "${pidd_sed__file}"
for pidd_sed__regex in "${@}"; do
sed --in-place "s${pidd_sed__regex}g" "${pidd_sed__file}" \
&& pidd_cat "${pidd_sed__file}" \
|| exit
sed --in-place "s${pidd_sed__regex}g" "${pidd_sed__file}" &&
pidd_cat "${pidd_sed__file}" ||
exit
done
fi
}