summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-05-15DiskMan: Add manual pagesA. Wilcox21-0/+671
2020-05-15executor: Add Steps, EXIT STATUS, DIAGNOSTICS sectionsA. Wilcox1-0/+69
2020-05-15fetch: Add manual pageA. Wilcox2-0/+68
2020-05-15executor: Add manual pageA. Wilcox2-0/+42
2020-05-15devel: Add template manpage for future maintenanceA. Wilcox1-0/+48
2020-05-15hscript: Ensure user commands are correct in simulatorA. Wilcox2-15/+20
2020-05-15JSON: Handle user account creationA. Wilcox2-0/+43
2020-05-15hscript: Ensure user commands are run in the targetA. Wilcox1-4/+11
2020-05-15hscript-fromjson: Set network to true when an IP is givenA. Wilcox1-1/+1
2020-05-15hscript: Don't change networking in image modeA. Wilcox1-1/+4
Network configuration on the host should not be changed if we are only creating an image.
2020-05-13devel: Add YANG model for HorizonScript JSON schemaA. Wilcox1-0/+356
2020-05-13tools: Add new hscript-fromjson toolA. Wilcox9-0/+23230
2020-05-13image: TAR: Force UTF-8 pathnames alwaysA. Wilcox1-3/+3
2020-05-07fetch: Disable tests that aren't written yetA. Wilcox1-7/+7
2020-05-07image: Add functional TAR backendA. Wilcox4-9/+84
2020-04-02image: Truly dynamic backend registrationA. Wilcox6-10/+143
This allows one backend to provide multiple types. For example, our TarBackend can provide optional .gz, .bz2, and .xz compression.
2020-04-02hscript: Overwrite existing /e/n/i file, if presentA. Wilcox1-1/+1
/etc/network/interfaces may already exists if an intermediate directory is being reused for image creation. Overwrite it, instead of appending to it.
2020-04-02hscript: Handle existing /etc/localtime in targetA. Wilcox1-0/+2
This can occur if you re-use an intermediate directory for images.
2020-04-02image: Actually make backends registerableA. Wilcox4-17/+26
2020-04-02image: Significantly refactor how backends are registeredA. Wilcox4-44/+71
2020-04-01Tests: Update APK tests for --keys-dirA. Wilcox1-3/+3
2020-04-01image: Initial work on backend supportA. Wilcox7-10/+171
2020-04-01hscript: Rename Image flag to ImageOnlyA. Wilcox5-6/+6
Otherwise, this conflicts with the Horizon::Image namespace.
2020-03-26Requirements: Add Runner.Execute.pkginstall.KeysA. Wilcox1-0/+4
2020-03-26Script: Use --keys-dir during base installationA. Wilcox1-8/+15
If the system APK does not trust the keys specified in the HorizonScript, execution of the script would fail. This commit fixes that omission.
2020-03-24hscript: Implement 'Image' script optionA. Wilcox5-40/+49
This option is for generating images using Horizon. It skips most disk-related operations, except for preparing /etc/fstab. It also skips setting the running system's hostname.
2020-03-24hscript: Execute +arch+ key before APK pkgdb initA. Wilcox1-5/+5
Otherwise, the incorrect architecture's repositories are read during the `apk update` operation.
2020-03-24hscript: Don't overwrite fstab with each mountA. Wilcox1-1/+2
2020-03-24Add the beginnings of the Image Creation utilityA. Wilcox5-0/+209
2020-03-24tests: Update Simulator test's parted MBR label type nameA. Wilcox1-1/+1
2020-03-24hscript: De-constify returned Horizon::Script* objectsA. Wilcox2-8/+6
2020-03-23CLI Tools: Update messages, and make them more consistentA. Wilcox3-20/+27
2020-03-22hscript: Ensure partition 1 won't abut first disk sectorsA. Wilcox1-0/+3
2020-03-19hscript: Support creation of MBR disklabelsA. Wilcox1-1/+1
2020-03-18hscript: Support creation of /etc/network/interfacesA. Wilcox5-49/+169
2020-03-17hscript: Add new netconfigtype key and associated testsA. Wilcox8-0/+150
Not wired up to netaddress et al, but does parse properly.
2020-03-15hscript: Mount /dev, /proc, /sys under /targetA. Wilcox1-0/+25
2020-03-15script: More efficiently call apkA. Wilcox1-2/+5
2020-03-15tests: Remove undo file from extfs testingA. Wilcox1-3/+3
2020-03-15meta: Handle underscores in architecture namesA. Wilcox1-1/+1
Otherwise, x86_64 and aarch64_be fail instantly: installfile:6: error: arch: expected CPU architecture name: 'x86_64' is not a valid CPU architecture name
2020-03-15script: Handle pre-existing network condition betterA. Wilcox1-3/+3
Previously, if /etc/resolv.conf existed, execution would fail with: internal: error: cannot use DNS configuration during installation: File exists If /etc/conf.d/net.$IFACE existed, execution would log: internal: error: could not use networking on eth0: File exists Fix both of these issues.
2020-03-15disk: Remove ability to undo e2fsA. Wilcox1-2/+0
This can use multiple GBs of RAM in /tmp, and/or fail with mkfs.ext4: No space left on device while trying to create journal /tmp/undo-sda2: while force-closing undo file
2020-03-11tests: Update simulator spec for proper language scriptA. Wilcox1-3/+3
2020-03-11hscript: Make target directory configurableA. Wilcox8-107/+165
This is the first step towards creating images using Horizon.
2020-03-01Qt UI: Add What's This to the rest of the UIA. Wilcox3-0/+17
2020-02-26hscript: Refactor Keys to be owned by a Script*A. Wilcox14-336/+382
This means that a Key can introspect its Script.
2020-02-26hscript: Add introspection support for Script classA. Wilcox2-0/+98
2020-02-26devel: Add 'netconfigtype' key specificationA. Wilcox2-2/+63
2020-02-23assets: Add "Party" Openbox theme for live mediaA. Wilcox7-0/+201
Party with Adélie red title bar like our KDE theme, or ketchup And active title bar text in white, like tooth You could say, this is a party with ketchup and tooth
2020-02-23Qt UI: Add missing What's This and help filesA. Wilcox15-20/+119