Skip to content

Commit

Permalink
Merge pull request #125 from sonroyaalmerol/nfs-hard
Browse files Browse the repository at this point in the history
switch back to nfs hard mount
  • Loading branch information
sonroyaalmerol authored Feb 6, 2025
2 parents 52585d3 + cd4204f commit da54d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/backend/mount/mount.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func Mount(storeInstance *store.Store, target *types.Target) (*AgentMount, error
// Mount using NFS
mountArgs := []string{
"-t", "nfs",
"-o", fmt.Sprintf("port=%s,mountport=%s,vers=3,soft,timeo=100,ro,tcp,noacl,nocto,actimeo=3600,rsize=1048576,lookupcache=positive,noatime", agentPort, agentPort),
"-o", fmt.Sprintf("port=%s,mountport=%s,vers=3,ro,tcp,noacl,nocto,actimeo=3600,rsize=1048576,lookupcache=positive,noatime", agentPort, agentPort),
fmt.Sprintf("%s:/", agentHost),
agentMount.Path,
}
Expand Down

0 comments on commit da54d2e

Please sign in to comment.