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