blob: 12fbe1a30237ecdae8a41ba6f260239c764b1486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
source ./Fedora-setup.sh
name="fedora-${vers}-wsl"
rpms="git-core"
tar="${IMAGEFISH_DESTDIR-.}/${name}.tar"
echo ""
echo "###"
echo "### $name"
echo "###"
echo "### $rpms"
echo "###"
set -ex
rm -f "$tar"
scripts/install-redhat.sh --config "$repo" --tar "$tar" --packages "$rpms" --kernel "" --dnf
|