80-repo-rootfs-main 349 Bytes
Newer Older
1 2 3 4
#!/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

5
[ -n "$GLOBAL_REPO_MAIN" ] || exit 0
6 7 8 9 10 11 12

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