Files
ecmc_server_cfg/AutoStart/S10-ecmc-python-venv
Maier Felix 5881d29ceb add support for Debian 12
templates now support Debian 10 and Debian 12
2025-06-13 09:08:09 +02:00

10 lines
241 B
Bash
Executable File

#!/bin/bash
if [ "$EPICS_HOST_ARCH" = "deb10-x86_64" ]; then
cp -r /ioc/NeedfulThings/ecmc_python_venv/.venv /tmp/
fi
if [ "$EPICS_HOST_ARCH" = "deb12-x86_64" ]; then
cp -r /ioc/NeedfulThings/ecmc_python_venv/.venv_deb12 /tmp/.venv
fi