Discussion:
ssh(1) -v gives debug1: pledge: filesystem full
Marcus MERIGHI
2021-05-19 11:20:34 UTC
Permalink
Hello!

By accident I noticed that

$ ssh -v $host

gives me, among many other lines, this

debug1: pledge: filesystem full

Tried with multiple hosts. None of the filesystems on the hosts (client,
servers) is full. The messages appears when connecting from -current (as
of yesterday) to 6.9, when connecting from 6.9 to 6.9 and when
connecting from -current to -current.

My .ssh/config has:

Host *
ServerAliveInterval 15
ServerAliveCountMax 4
AddKeysToAgent yes

Host a b c d e f
ForwardAgent yes

host g h
ProxyJump i
CheckHostIP no

Is this expected? Something to worry about?

Marcus
Hiltjo Posthuma
2021-05-19 14:59:41 UTC
Permalink
Post by Marcus MERIGHI
Hello!
By accident I noticed that
$ ssh -v $host
gives me, among many other lines, this
debug1: pledge: filesystem full
Tried with multiple hosts. None of the filesystems on the hosts (client,
servers) is full. The messages appears when connecting from -current (as
of yesterday) to 6.9, when connecting from 6.9 to 6.9 and when
connecting from -current to -current.
Host *
ServerAliveInterval 15
ServerAliveCountMax 4
AddKeysToAgent yes
Host a b c d e f
ForwardAgent yes
host g h
ProxyJump i
CheckHostIP no
Is this expected? Something to worry about?
Marcus
Hi,

A grep shows its in the file /usr/src/usr.bin/ssh/clientloop.c client_loop()
function.

Its probably intended to mean "pledge for full filesystem promises". Instead of
having a full filesystem (no more space) :)
--
Kind regards,
Hiltjo
Loading...