Skip to content

Commit

Permalink
cpu: add more information about mounts.
Browse files Browse the repository at this point in the history
Signed-off-by: the man <rminnich@google.com>
  • Loading branch information
rminnichcodeu committed Sep 27, 2024
1 parent 317ec36 commit 14b6417
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmds/cpu/cpu.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ func newCPU(host string, args ...string) (retErr error) {
log.Printf("nfs: %v", err)
// wg.Done()
}()
verbose("nfsmount %q fstab %q join %q", nfsmount, fstab, client.JoinFSTab(nfsmount, fstab))
fstab = client.JoinFSTab(nfsmount, fstab)
c.Env = append(c.Env, "CPU_FSTAB="+fstab, "LC_GLENDA_CPU_FSTAB="+fstab)
jfstab := client.JoinFSTab(nfsmount, fstab)
c.Env = append(c.Env, "CPU_FSTAB="+jfstab, "LC_GLENDA_CPU_FSTAB="+jfstab)
verbose("nfsmount %q fstab %q join %q env %q", nfsmount, fstab, jfstab, c.Env)
}

go func() {
Expand Down

0 comments on commit 14b6417

Please sign in to comment.