Doesn't look like there is anything to fix for this one now
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
All Stories
Jan 22 2025
Jan 21 2025
Are we closing this? Or we have some glowing example of the wrong processing?
Line 86 in python/vyos/utils/process.py breaks the git commit-archive functionality since it passes a list to the rc_cmd function which eventually gets passed to popen. The new line added for this wrapper converts the list to a string similar to "['git', 'clone', 'git@<github url>', '/tmp/git-commit-archive-ypvbmg7z/repository', '--depth=1']". Since there is no wrapper, the command becomes a space followed by that string rather than the intended git clone git@<github url> /tmp/git-commit-archive-ypvbmg7z/repository --depth=1. I expect it would be better if get_wrapper returned a similar list, then if the passed in command is a string, join the wrapper and prepend to the string, otherwise if the command is a list prepend the elements of the wrapper to the list.
Could be this issue https://github.com/FRRouting/frr/issues/16095
Jan 20 2025
Jan 19 2025
Jan 18 2025
I had a look at T5965 and several discussions on the forum.
It seems as though under certain circumstances there will be no answer from DHCP even though I can see the DISCOVER being sent out the wwan0 interface, but the connection works if I setup the parameters that can be betrieved from ModemManager.
Jan 17 2025
Probably after the update to the FRR 10.2.x https://vyos.dev/T6747