8 lines
175 B
Bash
8 lines
175 B
Bash
DEBIAN_CODENAME="$(
|
|
grep "VERSION_CODENAME" "/etc/os-release" |
|
|
cut --delimiter "=" --fields "2"
|
|
)"
|
|
|
|
debian_disable_frontend() {
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
}
|