10 lines
218 B
Bash
Executable File
10 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /etc/os-release
|
|
|
|
echo "deb http://deb.debian.org/debian ${VERSION_CODENAME}-backports main" > /etc/apt/sources.list.d/backports.list
|
|
|
|
apt update ; apt install -y -t ${VERSION_CODENAME}-backports cockpit
|
|
|
|
|