sh/bash/debian.sh

9 lines
175 B
Bash
Raw Normal View History

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