| Age | Commit message (Collapse) | Author |
|
Comment- and message-string typos only (no code identifiers changed):
- scripts/install/install-get-partition: parition/partiton/partion -> partition; accomdate -> accommodate
- scripts/install/install-image-existing: yelds -> yields; underlaying -> underlying
- scripts/snmp/if-mib-alias: "not-writeable" -> "not-writable"
- scripts/vyatta-grub-setup: "grup-setup" -> "grub-setup" (GRUB, not "group"); maintance -> maintenance
Clears this repo's typos-check hits ahead of the T8490 ruleset pilot active flip.
🤖 Generated by [robots](https://vyos.io)
|
|
This change fixes installation into two NVME devices. It should be considered as
a temporary solution before migration to the new installer.
|
|
* fixed NVME drive names parser
* replaced partition parser to take into account `p` suffixes
on NVME partitions
|
|
This reverts commit 1155d46711d54c566b3171b94c6e1281ec3dadd0.
This breaks non-UEFI installs
|
|
|
|
T1869: Install and Boot from RAID Doesn't Work
T1126: Reusing a RAID from a BIOS install in an EFI install causes a failure to boot
|
|
|
|
(#159)
* add search for same drive size if more than 2 drives are installed
* add ability to configure RAID-1 by selecting 2 drives
* cleaning up sysconf/filecaps rights
* cleaning up sysconf/filecaps rights xtables-monitor
(cherry picked from commit 3cc31793d57ce05421300ce4e8a1a1352291db85)
|
|
the default was still set to "Yes"
|
|
|
|
|
|
Update initramfs to include raidconfig avoiding md127 being created on reboot.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
And then on reboot it hangs where it should start grub
|
|
|
|
|
|
|
|
to set the correct persistence.
|
|
|
|
As we are no longer setting the ROOT_OFFSET based on disk size,
I have removed the ROOT_OFFSET variable and the set_root_fstype
function.
|
|
The current parted command does not align the root partition as desired
by the `--align optimal` option. This is evident from this parted message:
"Warning: The resulting partition is not properly aligned for best performance."
Instead of setting the ROOT_OFFSET=64S or ROOT_OFFSET=1024S (> 10GB) we should
set it to 0%. This will result in optimal alignment regardless of disk size.
Source: https://unix.stackexchange.com/a/49274
|
|
|
|
Bug 7732
Restore installation section that makes disk label.
|
|
|
|
Need to pass correct offset for start of root partition
|
|
On tiny disks, then it doesn't make sense to waste space by offsetting
root partition. On big disks, it doesn't hurt and it allows for running
on SSD.
|
|
Parted has magic value '0%' which causes it to choose optimum
alignment (2048 on most disks).
|
|
Redo Bug 7038
The previous change did nothing; the alignment option only reports
alignment, it does not change values. Need to manually reserve space
before root partition.
|
|
Bug 7038
Align the created disk partition for both install-system and initial
install-image.
Note: can't fix existing systems where disk is already partitioned.
They will just have to suffer with poor performance.
|
|
(cherry picked from commit 5de8a194db56c51c9e5541cca43423f11534ffb7)
|
|
|
|
The -z test in shell needs to be quoted to avoid issues
with shell expansion.
|
|
|
|
Bug 5443
When running on HyperV, install-system appeared to hang because
although hda existed, it had no information so parted was prompting
for retry. Use the -s flag (never prompt) at all the places
in install-system/install-image where we don't want to have
user interaction.
|
|
|
|
On image-based systems, the Vyatta configuration is mounted on /config and
can be found in the disk filesystem under
/boot/<image-name>/live-rw/config.
|
|
|
|
|
|
|
|
This could fix Bug 5151
There was a typo in script that saved old config
|
|
If previous disk-based install is found, use config info from it. Otherwise
look for image-based installs. If multiple image-based installs are found,
let the user select which one to save the config information from.
|
|
|
|
Bug 5151
Part of previous change caused regression in saving config information.
Also mounts old config read-only to avoid any problems.
|
|
Similar to previous change to install-system
|
|
|