mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-09 08:26:47 +00:00
Add use of template to Install command
The template name wasnt used, so the command gave an error saying that no template was used. Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
This commit is contained in:
parent
38f26b213f
commit
f76432f60a
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
/faasd
|
||||
hosts
|
||||
/resolv.conf
|
||||
.idea/
|
||||
|
@ -66,7 +66,7 @@ func DaemonReload() error {
|
||||
|
||||
func InstallUnit(name string) error {
|
||||
tmplName := "./hack/" + name + ".service"
|
||||
tmpl, err := template.ParseFiles()
|
||||
tmpl, err := template.ParseFiles(tmplName)
|
||||
|
||||
if err != nil {
|
||||
return fmt.Errorf("error loading template %s, error %s", tmplName, err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user