mirror of https://github.com/k3s-io/k3s
(minor) Add pgrep debugging to etcd error
parent
134e585195
commit
cdf068495a
|
@ -27,7 +27,8 @@ kube::etcd::start() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if pgrep etcd >/dev/null 2>&1; then
|
if pgrep etcd >/dev/null 2>&1; then
|
||||||
kube::log::usage "etcd appears to already be running on this machine. Please kill and restart the test."
|
kube::log::usage "etcd appears to already be running on this machine (`pgrep -l etcd`) (or its a zombie and you need to kill its parent)."
|
||||||
|
kube::log::usage "retry after you resolve this etcd error."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue