Skip to content

Commit

Permalink
fix debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
neil committed Jan 6, 2024
1 parent a7f7ff7 commit 6c7f498
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ onBeforeStartVM() {
showDebugInfo() {
echo "==================Debug Info===================="
pwd && ls -lah && sudo ps aux
bash -c 'pwd && ls -lah ~/.ssh/ && [ -e "~/.ssh/config" ] && cat ~/.ssh/config'
bash -c 'pwd && ls -lah ~/.ssh/'
if [ -e "$HOME/.ssh/config" ]; then
cat "$HOME/.ssh/config"
fi
cat $_conf_filename

echo "===================Debug Info in VM============="
Expand Down

0 comments on commit 6c7f498

Please sign in to comment.