2024-11-12 06:03:36 +01:00
|
|
|
DEBIAN_CODENAME="$(
|
|
|
|
grep "VERSION_CODENAME" "/etc/os-release" |
|
|
|
|
cut --delimiter "=" --fields "2"
|
|
|
|
)"
|
|
|
|
|
|
|
|
debian_disable_frontend() {
|
2024-11-12 09:31:24 +01:00
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
2023-05-14 11:48:35 +02:00
|
|
|
}
|