come from inxi branch
This commit is contained in:
commit
bebc2e78de
4
Makefile
4
Makefile
|
@ -44,6 +44,10 @@ boot_iso_uefi_secureboot:
|
||||||
-drive file=deploy/iso/workbench_debug.iso,cache=none,if=virtio,format=raw,index=0,media=disk \
|
-drive file=deploy/iso/workbench_debug.iso,cache=none,if=virtio,format=raw,index=0,media=disk \
|
||||||
-boot menu=on
|
-boot menu=on
|
||||||
|
|
||||||
|
es_gen:
|
||||||
|
$(MAKE) es_gen_po
|
||||||
|
$(MAKE) es_gen_mo
|
||||||
|
|
||||||
es_gen_po:
|
es_gen_po:
|
||||||
cp locale/es/LC_MESSAGES/messages.po locale/es/LC_MESSAGES/messages.pot.bak
|
cp locale/es/LC_MESSAGES/messages.po locale/es/LC_MESSAGES/messages.pot.bak
|
||||||
pygettext3 -p locale/es/LC_MESSAGES/ workbench-script.py
|
pygettext3 -p locale/es/LC_MESSAGES/ workbench-script.py
|
||||||
|
|
|
@ -199,12 +199,12 @@ create_persistence_partition() {
|
||||||
mkdir -p "${tmp_rw_mount}"
|
mkdir -p "${tmp_rw_mount}"
|
||||||
${SUDO} mount "$(pwd)/${rw_img_path}" "${tmp_rw_mount}"
|
${SUDO} mount "$(pwd)/${rw_img_path}" "${tmp_rw_mount}"
|
||||||
${SUDO} mkdir -p "${tmp_rw_mount}"
|
${SUDO} mkdir -p "${tmp_rw_mount}"
|
||||||
if [ -f "settings.ini" ]; then
|
if [ ! -f "settings.ini" ]; then
|
||||||
${SUDO} cp -v settings.ini "${tmp_rw_mount}/settings.ini"
|
${SUDO} cp -v settings.ini.example settings.ini
|
||||||
else
|
echo "WARNING: settings.ini was not there, settings.ini.example was copied, this only happens once"
|
||||||
echo "ERROR: settings.ini does not exist yet, cannot read config from there. You can take inspiration with file settings.ini.example"
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
${SUDO} cp -v settings.ini "${tmp_rw_mount}/settings.ini"
|
||||||
|
|
||||||
${SUDO} umount "${tmp_rw_mount}"
|
${SUDO} umount "${tmp_rw_mount}"
|
||||||
|
|
||||||
uuid="$(blkid "${rw_img_path}" | awk '{ print $3; }')"
|
uuid="$(blkid "${rw_img_path}" | awk '{ print $3; }')"
|
||||||
|
@ -253,6 +253,27 @@ END2
|
||||||
END
|
END
|
||||||
)"
|
)"
|
||||||
|
|
||||||
|
|
||||||
|
# thanks https://wiki.debian.org/Keyboard
|
||||||
|
chroot_kbd_conf_str="$(cat<<END
|
||||||
|
chroot_kbd_conf() {
|
||||||
|
###################
|
||||||
|
# configure keyboard
|
||||||
|
cat > /etc/default/keyboard <<END2
|
||||||
|
# KEYBOARD CONFIGURATION FILE
|
||||||
|
# generated by deploy-workbench.sh
|
||||||
|
|
||||||
|
# Consult the keyboard(5) manual page.
|
||||||
|
|
||||||
|
XKBMODEL="pc105"
|
||||||
|
XKBLAYOUT="\${CUSTOM_LANG}"
|
||||||
|
|
||||||
|
BACKSPACE="guess"
|
||||||
|
END2
|
||||||
|
}
|
||||||
|
END
|
||||||
|
)"
|
||||||
|
|
||||||
prepare_app() {
|
prepare_app() {
|
||||||
# prepare app during prepare_chroot_env
|
# prepare app during prepare_chroot_env
|
||||||
workbench_dir="${ISO_PATH}/chroot/opt/workbench"
|
workbench_dir="${ISO_PATH}/chroot/opt/workbench"
|
||||||
|
@ -280,13 +301,15 @@ if [ "\${nfs_host}" ]; then
|
||||||
mount --bind /run/live/medium /mnt
|
mount --bind /run/live/medium /mnt
|
||||||
# debian live nfs path is readonly, do a trick
|
# debian live nfs path is readonly, do a trick
|
||||||
# to make snapshots subdir readwrite
|
# to make snapshots subdir readwrite
|
||||||
mount \${nfs_host}:/snapshots /run/live/medium/snapshots
|
mount -v \${nfs_host}:/snapshots /run/live/medium/snapshots
|
||||||
# reload mounts on systemd
|
# reload mounts on systemd
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
fi
|
fi
|
||||||
# clearly specify the right working directory, used in the python script as os.getcwd()
|
# clearly specify the right working directory, used in the python script as os.getcwd()
|
||||||
cd /mnt
|
cd /mnt
|
||||||
pipenv run python /opt/workbench/workbench-script.py --config /mnt/settings.ini
|
#pipenv run python /opt/workbench/workbench-script.py --config /mnt/settings.ini
|
||||||
|
# works meanwhile this project is vanilla python
|
||||||
|
python /opt/workbench/workbench-script.py --config /mnt/settings.ini
|
||||||
|
|
||||||
stty echo
|
stty echo
|
||||||
set +x
|
set +x
|
||||||
|
@ -302,7 +325,7 @@ echo 'Install requirements'
|
||||||
|
|
||||||
# Install debian requirements
|
# Install debian requirements
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
sudo locales \
|
sudo locales keyboard-configuration console-setup qrencode \
|
||||||
python-is-python3 python3 python3-dev python3-pip pipenv \
|
python-is-python3 python3 python3-dev python3-pip pipenv \
|
||||||
dmidecode smartmontools hwinfo pciutils lshw nfs-common < /dev/null
|
dmidecode smartmontools hwinfo pciutils lshw nfs-common < /dev/null
|
||||||
|
|
||||||
|
@ -360,8 +383,14 @@ ${install_app_str}
|
||||||
# thanks src https://serverfault.com/questions/362903/how-do-you-set-a-locale-non-interactively-on-debian-ubuntu
|
# thanks src https://serverfault.com/questions/362903/how-do-you-set-a-locale-non-interactively-on-debian-ubuntu
|
||||||
export LANG=${LANG}
|
export LANG=${LANG}
|
||||||
export LC_ALL=${LANG}
|
export LC_ALL=${LANG}
|
||||||
|
echo "${MYLOCALE}" > /etc/locale.gen
|
||||||
|
# Generate the locale
|
||||||
|
locale-gen
|
||||||
|
# feeds /etc/default/locale for the shell env var
|
||||||
|
update-locale LANG=${LANG} LC_ALL=${LANG}
|
||||||
# this is a high level command that does locale-gen and update-locale altogether
|
# this is a high level command that does locale-gen and update-locale altogether
|
||||||
dpkg-reconfigure --frontend=noninteractive locales
|
# but it is too interactive
|
||||||
|
#dpkg-reconfigure --frontend=noninteractive locales
|
||||||
# DEBUG
|
# DEBUG
|
||||||
locale -a
|
locale -a
|
||||||
|
|
||||||
|
@ -387,6 +416,9 @@ apt-get install -y --no-install-recommends \
|
||||||
< /dev/null
|
< /dev/null
|
||||||
|
|
||||||
${chroot_netdns_conf_str}
|
${chroot_netdns_conf_str}
|
||||||
|
CUSTOM_LANG=${CUSTOM_LANG}
|
||||||
|
${chroot_kbd_conf_str}
|
||||||
|
chroot_kbd_conf
|
||||||
|
|
||||||
# Set up root user
|
# Set up root user
|
||||||
# this is the root password
|
# this is the root password
|
||||||
|
@ -406,7 +438,19 @@ CHROOT
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare_chroot_env() {
|
prepare_chroot_env() {
|
||||||
LANG="${CUSTOM_LANG:-es_ES.UTF-8}"
|
CUSTOM_LANG="${CUSTOM_LANG:-es}"
|
||||||
|
case "${CUSTOM_LANG}" in
|
||||||
|
es)
|
||||||
|
export LANG="es_ES.UTF-8"
|
||||||
|
export MYLOCALE="${LANG} UTF-8"
|
||||||
|
;;
|
||||||
|
en)
|
||||||
|
export LANG="en_US.UTF-8"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "ERROR: CUSTOM_LANG not supported. Available: es"
|
||||||
|
exit 1
|
||||||
|
esac
|
||||||
# version of debian the bootstrap is going to build
|
# version of debian the bootstrap is going to build
|
||||||
# if no VERSION_CODENAME is specified we assume that the bootstrap is going to
|
# if no VERSION_CODENAME is specified we assume that the bootstrap is going to
|
||||||
# be build with the same version of debian being executed because some files
|
# be build with the same version of debian being executed because some files
|
||||||
|
@ -430,6 +474,7 @@ prepare_chroot_env() {
|
||||||
prepare_app
|
prepare_app
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# thanks https://willhaley.com/blog/custom-debian-live-environment/
|
# thanks https://willhaley.com/blog/custom-debian-live-environment/
|
||||||
install_requirements() {
|
install_requirements() {
|
||||||
# Install requirements
|
# Install requirements
|
||||||
|
|
Binary file not shown.
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2024-10-15 21:15+0200\n"
|
"POT-Creation-Date: 2024-11-08 18:25+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -17,19 +17,19 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: workbench-script.py:48 workbench-script.py:53
|
#: workbench-script.py:49 workbench-script.py:54
|
||||||
msgid "Running command `%s`"
|
msgid "Running command `%s`"
|
||||||
msgstr "Ejecutando comando `%s`"
|
msgstr "Ejecutando comando `%s`"
|
||||||
|
|
||||||
#: workbench-script.py:284
|
#: workbench-script.py:279
|
||||||
msgid "Created snapshots directory at '%s'"
|
msgid "Created snapshots directory at '%s'"
|
||||||
msgstr "Creado directorio de snapshots en '%s'"
|
msgstr "Creado directorio de snapshots en '%s'"
|
||||||
|
|
||||||
#: workbench-script.py:287
|
#: workbench-script.py:282
|
||||||
msgid "Snapshot written in path '%s'"
|
msgid "Snapshot written in path '%s'"
|
||||||
msgstr "Snapshot escrito en ruta '%s'"
|
msgstr "Snapshot escrito en ruta '%s'"
|
||||||
|
|
||||||
#: workbench-script.py:290
|
#: workbench-script.py:285
|
||||||
msgid ""
|
msgid ""
|
||||||
"Attempting to save file in actual path. Reason: Failed to write in snapshots "
|
"Attempting to save file in actual path. Reason: Failed to write in snapshots "
|
||||||
"directory:\n"
|
"directory:\n"
|
||||||
|
@ -39,11 +39,11 @@ msgstr ""
|
||||||
"escribir en el directorio de snapshots:\n"
|
"escribir en el directorio de snapshots:\n"
|
||||||
" %s."
|
" %s."
|
||||||
|
|
||||||
#: workbench-script.py:297
|
#: workbench-script.py:292
|
||||||
msgid "Snapshot written in fallback path '%s'"
|
msgid "Snapshot written in fallback path '%s'"
|
||||||
msgstr "Snapshot escrito en ruta alternativa '%s'"
|
msgstr "Snapshot escrito en ruta alternativa '%s'"
|
||||||
|
|
||||||
#: workbench-script.py:299
|
#: workbench-script.py:294
|
||||||
msgid ""
|
msgid ""
|
||||||
"Could not save snapshot locally. Reason: Failed to write in fallback path:\n"
|
"Could not save snapshot locally. Reason: Failed to write in fallback path:\n"
|
||||||
" %s"
|
" %s"
|
||||||
|
@ -52,49 +52,53 @@ msgstr ""
|
||||||
"alternativa:\n"
|
"alternativa:\n"
|
||||||
" %s"
|
" %s"
|
||||||
|
|
||||||
#: workbench-script.py:316
|
#: workbench-script.py:317
|
||||||
msgid "Snapshot successfully sent to '%s'"
|
msgid "Snapshot successfully sent to '%s'"
|
||||||
msgstr "Snapshot enviado con éxito a '%s'"
|
msgstr "Snapshot enviado con éxito a '%s'"
|
||||||
|
|
||||||
#: workbench-script.py:331
|
#: workbench-script.py:335
|
||||||
|
msgid "Snapshot %s could not be sent to URL '%s'"
|
||||||
|
msgstr "Snapshot %s no se pudo enviar a la URL '%s'"
|
||||||
|
|
||||||
|
#: workbench-script.py:338
|
||||||
msgid ""
|
msgid ""
|
||||||
"Snapshot not remotely sent to URL '%s'. Do you have internet? Is your server "
|
"Snapshot %s not remotely sent to URL '%s'. Do you have internet? Is your "
|
||||||
"up & running? Is the url token authorized?\n"
|
"server up & running? Is the url token authorized?\n"
|
||||||
" %s"
|
" %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Snapshot no enviado remotamente a la URL '%s'. Tienes internet? Está el "
|
"Snapshot %s no enviado remotamente a la URL '%s'. Tienes internet? Está el "
|
||||||
"servidor en marcha? Está autorizado el url token?\n"
|
"servidor en marcha? Está autorizado el url token?\n"
|
||||||
" %s"
|
" %s"
|
||||||
|
|
||||||
#: workbench-script.py:342
|
#: workbench-script.py:350
|
||||||
msgid "Found config file in path: %s."
|
msgid "Found config file in path: %s."
|
||||||
msgstr "Encontrado fichero de configuración en ruta: %s."
|
msgstr "Encontrado fichero de configuración en ruta: %s."
|
||||||
|
|
||||||
#: workbench-script.py:353
|
#: workbench-script.py:361
|
||||||
msgid "Config file '%s' not found. Using default values."
|
msgid "Config file '%s' not found. Using default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Fichero de configuración '%s' no encontrado. Utilizando valores por defecto."
|
"Fichero de configuración '%s' no encontrado. Utilizando valores por defecto."
|
||||||
|
|
||||||
#: workbench-script.py:373
|
#: workbench-script.py:379
|
||||||
msgid "workbench-script.py [-h] [--config CONFIG]"
|
msgid "workbench-script.py [-h] [--config CONFIG]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: workbench-script.py:374
|
#: workbench-script.py:380
|
||||||
msgid "Optional config loader for workbench."
|
msgid "Optional config loader for workbench."
|
||||||
msgstr "Cargador opcional de configuración para workbench"
|
msgstr "Cargador opcional de configuración para workbench"
|
||||||
|
|
||||||
#: workbench-script.py:377
|
#: workbench-script.py:383
|
||||||
msgid ""
|
msgid ""
|
||||||
"path to the config file. Defaults to 'settings.ini' in the current directory."
|
"path to the config file. Defaults to 'settings.ini' in the current directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"ruta al fichero de configuración. Por defecto es 'settings.ini' en el "
|
"ruta al fichero de configuración. Por defecto es 'settings.ini' en el "
|
||||||
"directorio actual"
|
"directorio actual"
|
||||||
|
|
||||||
#: workbench-script.py:410
|
#: workbench-script.py:416
|
||||||
msgid "START"
|
msgid "START"
|
||||||
msgstr "INICIO"
|
msgstr "INICIO"
|
||||||
|
|
||||||
#: workbench-script.py:423
|
#: workbench-script.py:430
|
||||||
msgid ""
|
msgid ""
|
||||||
"This script must be run as root. Collected data will be incomplete or "
|
"This script must be run as root. Collected data will be incomplete or "
|
||||||
"unusable"
|
"unusable"
|
||||||
|
@ -102,6 +106,6 @@ msgstr ""
|
||||||
"Es conveniente que este script sea ejecutado como administrador (root). Los "
|
"Es conveniente que este script sea ejecutado como administrador (root). Los "
|
||||||
"datos recopilados serán incompletos o no usables."
|
"datos recopilados serán incompletos o no usables."
|
||||||
|
|
||||||
#: workbench-script.py:441
|
#: workbench-script.py:448
|
||||||
msgid "END"
|
msgid "END"
|
||||||
msgstr "FIN"
|
msgstr "FIN"
|
||||||
|
|
|
@ -37,7 +37,7 @@ backup_file() {
|
||||||
|
|
||||||
if [ -f "${target}" ]; then
|
if [ -f "${target}" ]; then
|
||||||
if ! grep -q 'we should do a backup' "${target}"; then
|
if ! grep -q 'we should do a backup' "${target}"; then
|
||||||
${SUDO} cp -a "${target}" "${target}-bak_${ts}"
|
${SUDO} cp -v -a "${target}" "${target}-bak_${ts}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -69,14 +69,14 @@ END
|
||||||
# reload nfs exports
|
# reload nfs exports
|
||||||
${SUDO} exportfs -vra
|
${SUDO} exportfs -vra
|
||||||
|
|
||||||
|
if [ ! -f ./settings.ini ]; then
|
||||||
|
cp -v ./settings.ini.example ./settings.ini
|
||||||
|
echo "WARNING: settings.ini was not there, settings.ini.example was copied, this only happens once"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -f "${nfs_path}/settings.ini" ]; then
|
if [ ! -f "${nfs_path}/settings.ini" ]; then
|
||||||
if [ -f "settings.ini" ]; then
|
${SUDO} cp -v settings.ini "${nfs_path}/settings.ini"
|
||||||
${SUDO} cp settings.ini "${nfs_path}/settings.ini"
|
echo "WARNING: ${nfs_path}/settings.ini was not there, ./settings.ini was copied, this only happens once"
|
||||||
else
|
|
||||||
echo "ERROR: $(pwd)/settings.ini does not exist yet, cannot read config from there. You can take inspiration with file $(pwd)/settings.ini.example"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,8 +110,12 @@ install_netboot() {
|
||||||
${SUDO} cp -fv "${PXE_DIR}/../iso/staging/live/vmlinuz" "${tftp_path}/"
|
${SUDO} cp -fv "${PXE_DIR}/../iso/staging/live/vmlinuz" "${tftp_path}/"
|
||||||
${SUDO} cp -fv "${PXE_DIR}/../iso/staging/live/initrd" "${tftp_path}/"
|
${SUDO} cp -fv "${PXE_DIR}/../iso/staging/live/initrd" "${tftp_path}/"
|
||||||
|
|
||||||
${SUDO} cp /usr/lib/syslinux/memdisk "${tftp_path}/"
|
${SUDO} cp -v /usr/lib/syslinux/memdisk "${tftp_path}/"
|
||||||
${SUDO} cp /usr/lib/syslinux/modules/bios/* "${tftp_path}/"
|
${SUDO} cp -v /usr/lib/syslinux/modules/bios/* "${tftp_path}/"
|
||||||
|
if [ ! -f ./pxe-menu.cfg ]; then
|
||||||
|
${SUDO} cp -v ./pxe-menu.cfg.example pxe-menu.cfg
|
||||||
|
echo "WARNING: pxe-menu.cfg was not there, pxe-menu.cfg.example was copied, this only happens once"
|
||||||
|
fi
|
||||||
envsubst < ./pxe-menu.cfg | ${SUDO} tee "${tftp_path}/pxelinux.cfg/default"
|
envsubst < ./pxe-menu.cfg | ${SUDO} tee "${tftp_path}/pxelinux.cfg/default"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -128,11 +132,11 @@ init_config() {
|
||||||
|
|
||||||
PXE_DIR="$(pwd)"
|
PXE_DIR="$(pwd)"
|
||||||
|
|
||||||
if [ -f ./.env ]; then
|
if [ ! -f ./.env ]; then
|
||||||
. ./.env
|
cp -v ./.env.example ./.env
|
||||||
else
|
echo "WARNING: .env was not there, .env.example was copied, this only happens once"
|
||||||
echo "PXE: WARNING: $(pwd)/.env does not exist yet, cannot read config from there. You can take inspiration with file $(pwd)/.env.example"
|
|
||||||
fi
|
fi
|
||||||
|
. ./.env
|
||||||
VERSION_CODENAME="${VERSION_CODENAME:-bookworm}"
|
VERSION_CODENAME="${VERSION_CODENAME:-bookworm}"
|
||||||
tftp_path="${tftp_path:-/srv/pxe-tftp}"
|
tftp_path="${tftp_path:-/srv/pxe-tftp}"
|
||||||
# vars used in envsubst require to be exported:
|
# vars used in envsubst require to be exported:
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
[settings]
|
[settings]
|
||||||
url = http://localhost:8000/api/snapshot/
|
url = http://localhost:8000/api/snapshot/
|
||||||
token = '1234'
|
#url = https://demo.ereuse.org/api/v1/snapshot/
|
||||||
|
# sample token that works with default deployment such as the previous two urls
|
||||||
|
token = 5018dd65-9abd-4a62-8896-80f34ac66150
|
||||||
# wb_sign_token = "27de6ad7-cee2-4fe8-84d4-c7eea9c969c8"
|
# wb_sign_token = "27de6ad7-cee2-4fe8-84d4-c7eea9c969c8"
|
||||||
# url_wallet = "http://localhost"
|
# url_wallet = "http://localhost"
|
||||||
# path = /path/to/save
|
# path = /path/to/save
|
||||||
|
|
|
@ -66,12 +66,12 @@ def convert_to_legacy_snapshot(snapshot):
|
||||||
snapshot["timestamp"] = snapshot["timestamp"].replace(" ", "T")
|
snapshot["timestamp"] = snapshot["timestamp"].replace(" ", "T")
|
||||||
snapshot["data"]["smart"] = snapshot["data"]["disks"]
|
snapshot["data"]["smart"] = snapshot["data"]["disks"]
|
||||||
snapshot["data"].pop("disks")
|
snapshot["data"].pop("disks")
|
||||||
|
snapshot["data"].pop("inxi")
|
||||||
snapshot.pop("erase")
|
snapshot.pop("erase")
|
||||||
snapshot.pop("token_hash")
|
snapshot.pop("token_hash")
|
||||||
|
|
||||||
lshw = 'sudo lshw -xml'
|
lshw = 'sudo lshw -xml'
|
||||||
hwinfo = 'sudo hwinfo --reallyall'
|
hwinfo = 'sudo hwinfo --reallyall'
|
||||||
dmidecode = 'sudo dmidecode'
|
|
||||||
lspci = 'sudo lspci -vv'
|
lspci = 'sudo lspci -vv'
|
||||||
|
|
||||||
data = {
|
data = {
|
||||||
|
|
Loading…
Reference in a new issue