summaryrefslogtreecommitdiff
path: root/src/system
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-03-27 14:43:47 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2026-03-27 15:00:17 +0000
commit139b0841f8242a5c6ebdafb37380c1fb78342aae (patch)
tree1297da708747bc304b7d0b323146250f4273c8e5 /src/system
parentad6f703b16464a6cb73f9052077a6100aff4db73 (diff)
downloadvyos-1x-139b0841f8242a5c6ebdafb37380c1fb78342aae.tar.gz
vyos-1x-139b0841f8242a5c6ebdafb37380c1fb78342aae.zip
T8410: Fix typos and mistakes for comments and messages
Fix typos and mistakes No functional changes
Diffstat (limited to 'src/system')
-rw-r--r--src/system/grub_update.py2
-rwxr-xr-xsrc/system/keepalived-fifo.py4
-rwxr-xr-xsrc/system/standalone_root_pw_reset2
-rwxr-xr-xsrc/system/vyos-event-handler.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/system/grub_update.py b/src/system/grub_update.py
index a5bf0bdeb..0477cfa99 100644
--- a/src/system/grub_update.py
+++ b/src/system/grub_update.py
@@ -58,7 +58,7 @@ if __name__ == '__main__':
vyos_menuentries = compat.parse_menuentries(grub_cfg_main)
vyos_versions = compat.find_versions(vyos_menuentries)
unparsed_items = compat.filter_unparsed(grub_cfg_main)
- # compatibilty for raid installs
+ # compatibility for raid installs
search_root = compat.get_search_root(unparsed_items)
common_dict = {}
common_dict['search_root'] = search_root
diff --git a/src/system/keepalived-fifo.py b/src/system/keepalived-fifo.py
index 21c261099..c6c3fa9d0 100755
--- a/src/system/keepalived-fifo.py
+++ b/src/system/keepalived-fifo.py
@@ -55,7 +55,7 @@ class KeepalivedFifo:
self._config_load()
self.pipe_path = cmd_args.PIPE
- # create queue for messages and events for syncronization
+ # create queue for messages and events for synchronization
self.message_queue = Queue(maxsize=100)
self.stopme = threading.Event()
self.message_event = threading.Event()
@@ -111,7 +111,7 @@ class KeepalivedFifo:
# wait for a new message event from pipe_wait
self.message_event.wait()
try:
- # clear mesage event flag
+ # clear message event flag
self.message_event.clear()
# get all messages from queue and try to process them
while self.message_queue.empty() is not True:
diff --git a/src/system/standalone_root_pw_reset b/src/system/standalone_root_pw_reset
index c2eea9411..9a7da8e4c 100755
--- a/src/system/standalone_root_pw_reset
+++ b/src/system/standalone_root_pw_reset
@@ -64,7 +64,7 @@ change_password() {
dead() {
echo $*
echo
- echo "This tool can only recover missing admininistrator password."
+ echo "This tool can only recover missing administrator password."
echo "It is not a full system restore"
echo
echo -n "Hit return to reboot system: "
diff --git a/src/system/vyos-event-handler.py b/src/system/vyos-event-handler.py
index 7fc21bae4..bb1a42ee9 100755
--- a/src/system/vyos-event-handler.py
+++ b/src/system/vyos-event-handler.py
@@ -134,7 +134,7 @@ if __name__ == '__main__':
)
exit(1)
- # Prepare for proper exitting
+ # Prepare for proper exiting
signal(SIGTERM, handle_signal)
signal(SIGINT, handle_signal)