All checks were successful
		
		
	
	Test / Sandbox (race detector) (push) Successful in 4m7s
				
			Test / Hakurei (race detector) (push) Successful in 4m55s
				
			Test / Flake checks (push) Successful in 1m27s
				
			Test / Create distribution (push) Successful in 33s
				
			Test / Sandbox (push) Successful in 2m11s
				
			Test / Hakurei (push) Successful in 3m9s
				
			Test / Hpkg (push) Successful in 4m1s
				
			This is less ambiguous, and more accurately describes the purpose of the package. Signed-off-by: Ophestra <cat@gensokyo.uk>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package outcome
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/gob"
 | 
						|
 | 
						|
	"hakurei.app/container/check"
 | 
						|
	"hakurei.app/container/comp"
 | 
						|
	"hakurei.app/container/fhs"
 | 
						|
	"hakurei.app/hst"
 | 
						|
	"hakurei.app/system"
 | 
						|
	"hakurei.app/system/acl"
 | 
						|
)
 | 
						|
 | 
						|
func init() { gob.Register(spTmpdirOp{}) }
 | 
						|
 | 
						|
// spTmpdirOp sets up TMPDIR inside the container.
 | 
						|
type spTmpdirOp struct{}
 | 
						|
 | 
						|
func (s spTmpdirOp) toSystem(state *outcomeStateSys) error {
 | 
						|
	if state.Container.Flags&hst.FShareTmpdir != 0 {
 | 
						|
		tmpdir, tmpdirInst := s.commonPaths(state.outcomeState)
 | 
						|
		state.sys.Ensure(tmpdir, 0700)
 | 
						|
		state.sys.UpdatePermType(system.User, tmpdir, acl.Execute)
 | 
						|
		state.sys.Ensure(tmpdirInst, 01700)
 | 
						|
		state.sys.UpdatePermType(system.User, tmpdirInst, acl.Read, acl.Write, acl.Execute)
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (s spTmpdirOp) toContainer(state *outcomeStateParams) error {
 | 
						|
	if state.Container.Flags&hst.FShareTmpdir != 0 {
 | 
						|
		_, tmpdirInst := s.commonPaths(state.outcomeState)
 | 
						|
		state.params.Bind(tmpdirInst, fhs.AbsTmp, comp.BindWritable)
 | 
						|
	} else {
 | 
						|
		state.params.Tmpfs(fhs.AbsTmp, 0, 01777)
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (s spTmpdirOp) commonPaths(state *outcomeState) (tmpdir, tmpdirInst *check.Absolute) {
 | 
						|
	tmpdir = state.sc.SharePath.Append("tmpdir")
 | 
						|
	tmpdirInst = tmpdir.Append(state.identity.String())
 | 
						|
	return
 | 
						|
}
 |