You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
351 B
12 lines
351 B
#!/bin/sh -efu
|
|
# configure package repository of the image (provided by sub/main);
|
|
# this script will be run iff both live and repo features are used
|
|
|
|
[ -n "$GLOBAL_ROOTFS_MAIN" ] || exit 0
|
|
|
|
DIR=/etc/apt/sources.list.d
|
|
|
|
mkdir -p $DIR && {
|
|
echo "# for real stuff you'll need full repo, see apt-repo"
|
|
echo "rpm file:/srv/ ALT main"
|
|
} > $DIR/main.list
|
|
|