(uid int)
| 2067 | } |
| 2068 | |
| 2069 | func formatBootstrapUID(uid int) string { |
| 2070 | if uid <= 0 { |
| 2071 | return "" |
| 2072 | } |
| 2073 | return strconv.Itoa(uid) |
| 2074 | } |
| 2075 | |
| 2076 | func (p *Plugin) buildBootstrapPlaybook(cfg cfgpkg.AnsibleBootstrapConfig) (string, error) { |
| 2077 | username := strings.TrimSpace(cfg.Username) |
no outgoing calls
no test coverage detected