9 lines
171 B
Bash
Executable File
9 lines
171 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
install -m 644 files/blokas.list ${ROOTFS_DIR}/etc/apt/sources.list.d/
|
|
|
|
on_chroot apt-key add - < files/blokas.gpg.key
|
|
on_chroot << EOF
|
|
apt-get update
|
|
EOF
|