On Sat, Mar 28, 2020 at 11:46:19AM -0400, Fabrizio D'Angelo wrote:
/var/lib/lorax/composer/blueprints/git/workspace/master/ The UI for Cockpit is great, but I can't find an option for adding in several packages at once. To avoid having to search and add each individual package, I used a script to add to the .toml file for the blueprint in the same format as the ones that got input by Cockpit. Like so: [[packages]] name = "dejavu-sans-fonts" version = "*"
After doing this, Cockpit just won't load blueprints anymore. Perhaps there's a better way to go about this?
Maybe. I'll point the people working on the project at this and see what they say.
The closest we've gotten to success was with livemedia-creator. Here is the anaconda output of the error I got hung up on:
2020-02-10 18:24:17,327: 1) [x] Language settings 2) [x] Time settings 2020-02-10 18:24:17,328: (English (United States)) (America/New_York timezone) 2020-02-10 18:24:17,329: 3) [x] Installation source 4)[x] Software selection 2020-02-10 18:24:17,329: (https://mirrors.fedoraproject.o (Custom software selected) 2020-02-10 18:24:17,330: rg/mirrorlist?repo=rawhide&arch= 2020-02-10 18:24:17,330: $basearch) 2020-02-10 18:24:17,331: 5) [!] Installation Destination 2020-02-10 18:24:17,331: (Kickstart insufficient)
The kickstart I used was exactly the result from using ksflatten on fedora-arm-minimal.ks from https://pagure.io/fedora-kickstarts. I have also tried this with an added a user account, root password, and activated network. Same deal.
I think "Installation Destination (Kickstart insufficient)" is a complaint about something in the storage definition part of the kickstart file. Can you post that part of the flattened ks file?
I used the following command to attempt to create the image: livemedia-creator --make-disk --ks $1 --image-only --no-virt --resultdir /home/rpi/build/image --releasever 30 --image-name Fedora30BuildTEST
And the $1 in this case is a argument with the actual ks file, right? Just checking :)