1
0
mirror of https://github.com/openfaas/faasd.git synced 2025-07-10 15:33:39 +00:00

Compare commits

..

1 Commits
0.2.8 ... 0.2.9

Author SHA1 Message Date
f76432f60a 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>
2019-12-29 11:28:16 +00:00
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored

@ -1,3 +1,4 @@
/faasd /faasd
hosts hosts
/resolv.conf /resolv.conf
.idea/

@ -66,7 +66,7 @@ func DaemonReload() error {
func InstallUnit(name string) error { func InstallUnit(name string) error {
tmplName := "./hack/" + name + ".service" tmplName := "./hack/" + name + ".service"
tmpl, err := template.ParseFiles() tmpl, err := template.ParseFiles(tmplName)
if err != nil { if err != nil {
return fmt.Errorf("error loading template %s, error %s", tmplName, err) return fmt.Errorf("error loading template %s, error %s", tmplName, err)