Re: Install particular version of package?

2024-03-05 Diskussionsfäden Steffen Grunewald
Hi all, since I seem to be the only one who ever faced this question, I'll also be the only one to answer it... On Fri, 2024-03-01 at 14:05:28 +0100, Steffen Grunewald wrote: > > Is it possible to specify "package=1.2.3+deb12" in a package_config/CLASS > file for the "instsoft" task, or It is

mistake in subroutines line 1285

2024-03-05 Diskussionsfäden pa...@kish.by
Hello in fai/lib/subroutines we have code on lines 1284-1288 case "$FAI_LOGPROTO" in ftp) remotesh=ssh ;; ssh) remotesh=ssh ;; rsh) remotesh=rsh ;; none) return ;; Is line ftp) remotesh=ssh ;; is correct? I have changed it to ftp) remotesh=ftp ;; now all works

Re: mistake in subroutines line 1285

2024-03-05 Diskussionsfäden Thomas Lange
Hi ssh is correct. ftp will not work here. We need to log into the server for changing the boot configuration by calling fai-chboot. This can't be done using ftp. The login has to be done via ssh. regards Thomas