forked from sibsau/docker-rosa
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53d0171
commit 970b8a6
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
# build all possible images | ||
|
||
# build minimal images | ||
for arch in i586 x86_64 | ||
do | ||
export arch="$arch" | ||
|
||
for rosaVersion in rosa2016.1 rosa2014.1 | ||
do | ||
env rosaVersion="$rosaVersion" ./mkimage-minimal.sh | ||
done | ||
|
||
for rosaVersion in rosa2012.1 rosa2012lts | ||
do | ||
env rosaVersion="$rosaVersion" ./mkimage-minimal-2012.sh | ||
done | ||
|
||
# build standard images only of rosa2016.1 | ||
unset packagesList | ||
env rosaVersion="rosa2016.1" type="std" systemd_networkd=1 ./mkimage-urpmi.sh | ||
done |