12 lines
283 B
Bash
Executable File
12 lines
283 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# these are the keys and files you need
|
|
#
|
|
# to be able to apt install packages from mirrors.wit.com
|
|
|
|
mkdir -p files/etc/apt/trusted.gpg.d/
|
|
cp wit-sid.asc files/etc/apt/trusted.gpg.d/
|
|
|
|
mkdir -p files/etc/apt/sources.list.d/
|
|
cp wit.list files/etc/apt/sources.list.d/
|