From 7687b40c339e7c97c56884042ce928e55c5736fa Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 14 Oct 2023 10:31:13 +0000 Subject: [PATCH] introducing new environment variables LINBOSYSDIR and LINBOVARDIR. --- lib/constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/constants.py b/lib/constants.py index be0928c..f5d01d1 100644 --- a/lib/constants.py +++ b/lib/constants.py @@ -3,7 +3,7 @@ # constants.py # # thomas@linuxmuster.net -# 20220910 +# 20231014 # # don't change this file @@ -65,6 +65,8 @@ LINBOSHAREDIR = SHAREDIR + '/linbo' LINBOTPLDIR = LINBOSHAREDIR + '/templates' LINBOCACHEDIR = CACHEDIR + '/linbo' +LINBOSYSDIR = SYSDIR + '/linbo' +LINBOVARDIR = VARDIR + '/linbo' DHCPDEVCONF = '/etc/dhcp/devices.conf' DHCPSUBCONF = '/etc/dhcp/subnets.conf' NETCFG = '/etc/netplan/01-netcfg.yaml'