summaryrefslogtreecommitdiff
path: root/src/op_mode/image_installer.py
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-03-20 18:41:24 +0200
committerViacheslav Hletenko <v.gletenko@vyos.io>2026-03-24 17:02:56 +0000
commitbb2aee1e58c1cd30087b935798060e6bf3c698c8 (patch)
tree99f692623ad596519ff26da443f62415cc3bcf59 /src/op_mode/image_installer.py
parenta9a75eb7dce077bceee1ae13dc943b05d8759925 (diff)
downloadvyos-1x-bb2aee1e58c1cd30087b935798060e6bf3c698c8.tar.gz
vyos-1x-bb2aee1e58c1cd30087b935798060e6bf3c698c8.zip
T8410: Fix typos and mistakes for operational and configuration commands
Fix typos and mistakes in the commands and comments No functional changes
Diffstat (limited to 'src/op_mode/image_installer.py')
-rwxr-xr-xsrc/op_mode/image_installer.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py
index 41a9a89f9..cb3aa7b6c 100755
--- a/src/op_mode/image_installer.py
+++ b/src/op_mode/image_installer.py
@@ -520,7 +520,7 @@ def get_cli_kernel_options(config_file: str) -> list:
k_memory_opts = kernel_options.get('memory', {})
# XXX: This code path and if statements must be kept in sync with the Kernel
- # option handling in system_options.py:generate(). This occurance is used
+ # option handling in system_options.py:generate(). This occurrence is used
# for having the appropriate options passed to GRUB after an image upgrade!
if 'disable-mitigations' in kernel_options:
cmdline_options.append('mitigations=off')
@@ -951,7 +951,7 @@ def install_image() -> None:
Path(f'{DIR_DST_ROOT}/boot/efi').mkdir(parents=True)
disk.partition_mount(install_target.partition['efi'], f'{DIR_DST_ROOT}/boot/efi')
- # a config dir. It is the deepest one, so the comand will
+ # a config dir. It is the deepest one, so the command will
# create all the rest in a single step
print('Creating a configuration file')
target_config_dir: str = f'{DIR_DST_ROOT}/boot/{image_name}/rw{DIR_CONFIG}/'
@@ -1031,7 +1031,7 @@ def install_image() -> None:
except Exception as err:
print(f'Unable to install VyOS: {err}')
- # unmount filesystems and clenup
+ # unmount filesystems and cleanup
try:
if install_target is not None:
if is_raid_install(install_target):
@@ -1177,7 +1177,7 @@ def add_image(image_path: str, vrf: str = None, username: str = '',
cmdline_options = []
- # a config dir. It is the deepest one, so the comand will
+ # a config dir. It is the deepest one, so the command will
# create all the rest in a single step
target_config_dir: str = f'{root_dir}/boot/{image_name}/rw{DIR_CONFIG}/'
# copy config
@@ -1193,7 +1193,7 @@ def add_image(image_path: str, vrf: str = None, username: str = '',
write_file('/opt/vyatta/etc/config/first_boot', dumps(tmp))
sync()
- # Copy encrypteed volumes
+ # Copy encrypted volumes
current_name = image.get_running_image()
current_config_path = f'{root_dir}/luks/{current_name}'
target_config_path = f'{root_dir}/luks/{image_name}'