Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
davepacheco committed May 1, 2023
1 parent eeba998 commit 7b023b5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/buildomat/jobs/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ _exit_trap() {
banner "${z/oxz_/}"
pfexec svcs -xv -z "$z"
pfexec ptree -z "$z"
pfexec svcs -z "$z" -p
pfexec zlogin "$z" uptime
pfexec zlogin "$z" ipadm
pfexec zlogin "$z" netstat -rncva
pfexec zlogin "$z" netstat -anu
Expand All @@ -71,6 +73,17 @@ _exit_trap() {
}
trap _exit_trap EXIT

# Before we get too far, report the current status of zones and ZFS pools.
zoneadm list -cv
for z in $(zoneadm list -n); do
banner "${z/oxz_/}"
pfexec svcs -zp "$z"
pfexec zlogin "$z" uptime
done
zpool status
zpool status -P
zpool status -PL

#
# XXX work around 14537 (UFS should not allow directories to be unlinked) which
# is probably not yet fixed in xde branch? Once the xde branch merges from
Expand Down

0 comments on commit 7b023b5

Please sign in to comment.