archboot/usr/bin/archboot-binary-check.sh

31 lines
953 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
2023-08-11 17:19:18 +02:00
# SPDX-License-Identifier: GPL-3.0-or-later
2022-01-28 08:24:31 +01:00
# created by Tobias Powalowski <tpowa@archlinux.org>
2023-09-01 13:28:32 +02:00
. /usr/lib/archboot/common.sh
_APPNAME=${0##*/}
2023-01-09 18:28:06 +01:00
_usage () {
2022-01-28 08:24:31 +01:00
echo "Check on missing binaries in archboot environment"
echo "-------------------------------------------------"
echo "This will check binaries from package, if they exist"
echo "and report missing to binary.txt"
2023-04-24 07:02:39 +02:00
echo ""
echo "usage: ${_APPNAME} <package>"
2022-01-28 08:24:31 +01:00
exit 0
}
2023-01-09 18:28:06 +01:00
[[ -z "${1}" ]] && _usage
2023-09-01 13:28:32 +02:00
_archboot_check
2022-09-07 09:04:10 +02:00
# update pacman db first
2024-06-10 15:04:08 +02:00
pacman --noconfirm -Sy
2022-09-07 09:04:10 +02:00
if [[ "${1}" == "base" ]]; then
2024-06-10 15:04:08 +02:00
pacman --noconfirm -S base
2023-01-09 18:28:06 +01:00
_PACKAGE="$(pacman -Qi base | grep Depends | cut -d ":" -f2)"
2022-09-07 09:04:10 +02:00
else
2023-01-09 18:28:06 +01:00
_PACKAGE="${1}"
2022-09-07 09:04:10 +02:00
fi
2023-01-09 18:28:06 +01:00
echo "${_PACKAGE}" >binary.txt
#shellcheck disable=SC2086
2023-01-09 18:28:06 +01:00
for i in $(pacman -Ql ${_PACKAGE} | grep "/usr/bin/..*"$ | cut -d' ' -f2); do
2024-06-10 16:27:05 +02:00
command -v "${i}" &>"${_NO_LOG}" || echo "${i}" >>binary.txt
2022-01-28 08:24:31 +01:00
done
2023-07-14 09:36:44 +02:00
# vim: set ft=sh ts=4 sw=4 et: