Files
AetherForge/agent/deploy/cred_spread_stub.go

12 lines
255 B
Go

//go:build !windows
package deploy
func applySpreadCredSession(_ string, _ SpreadCredSession) (cleanup func(), ok bool) {
return nil, false
}
func winRMCredPSBlock(target string, _ SpreadCredSession, innerScript string) string {
return innerScript
}