You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ssh command used in secret sauce to clean MTD.ps1 (line 17) contains six commands to run. Two of the commands are reversed, which causes it to not actually work.
1 backs up mtd5.
2 makes a temporary directory for mounting the mtdblock.
3 mounts mtdblock5 to the temp dir.
4 syncs and unmounts the mtdblock.
5 removes the files from the mount point.
6 writes nvram and reboots the router.
4 & 5 should be swapped. You need to remove the files from the temporary mounted filesystem, then sync the changes back and unmount it. The copy of the script shown to the user is correct, but the actual ssh command doesn't match it.
The ssh command used in secret sauce to clean MTD.ps1 (line 17) contains six commands to run. Two of the commands are reversed, which causes it to not actually work.
1 backs up mtd5.
2 makes a temporary directory for mounting the mtdblock.
3 mounts mtdblock5 to the temp dir.
4 syncs and unmounts the mtdblock.
5 removes the files from the mount point.
6 writes nvram and reboots the router.
4 & 5 should be swapped. You need to remove the files from the temporary mounted filesystem, then sync the changes back and unmount it. The copy of the script shown to the user is correct, but the actual ssh command doesn't match it.
Here is how line 17 should look instead.
The text was updated successfully, but these errors were encountered: