mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-06 16:39:45 +00:00
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
(cherry picked from commit 85b3775071)
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
15 lines
205 B
Go
15 lines
205 B
Go
//go:build linux
|
|
|
|
package templates
|
|
|
|
import (
|
|
"text/template"
|
|
)
|
|
|
|
// Linux config templates do not need fixups
|
|
var templateFuncs = template.FuncMap{
|
|
"deschemify": func(s string) string {
|
|
return s
|
|
},
|
|
}
|