From 8dd7bb79e0999218915ddb6c22716493bd281bae Mon Sep 17 00:00:00 2001 From: lgromero Date: Mon, 29 Jul 2024 15:17:35 +0000 Subject: [PATCH] refs #505 fix typo in symlink --- installer/ogboot_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/ogboot_installer.py b/installer/ogboot_installer.py index 3f64e28..9e3353a 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -483,7 +483,7 @@ TFTP_OPTIONS="--secure" symlink_target = f"{INSTALL_OGBOOT_TARGET}/tftpboot" logger.info(f"Creating symbolic link from {TFTPCFGDIR} to {symlink_target}") if not os.path.exists(symlink_target): - os.symlink(TFTPCFGDIR, symlink_targetnstaller/ogboot_installer.py) + os.symlink(TFTPCFGDIR, symlink_target) os.lchown(symlink_target, pwd.getpwnam("tftp").pw_uid, pwd.getpwnam("ogboot").pw_gid) else: logger.warning(f"The symbolic link already exists: {symlink_target}")