set variable
This commit is contained in:
parent
f6628e7dde
commit
4234d1d6b5
1 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,9 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
set -x
|
set -x
|
||||||
[ -z "${P11M+x}" ] && P11M="$(dnf repoquery --installed -l p11-kit | grep \/p11-kit-proxy.so\$ | head -1)"
|
which dnf >/dev/null 2>&1 [ -z "${P11M+x}" ] && P11M="$(dnf repoquery --installed -l p11-kit | grep \/p11-kit-proxy.so\$ | head -1)"
|
||||||
|
which dpkg >/dev/null 2>&1 && [ -z "${P11M+x}" ] && P11M="$(dpkg -L p11-kit-modules|grep \/p11-kit-proxy.so\$ | head -1)"
|
||||||
|
|
||||||
|
|
||||||
echo SSH_AGENT_PID before: $SSH_AGENT_PID
|
echo SSH_AGENT_PID before: $SSH_AGENT_PID
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue