From a1fa843c4e2b4af82a19139f0e8a47ee35760c51 Mon Sep 17 00:00:00 2001
From: obarun <eric@obarun.org>
Date: Mon, 8 Mar 2021 10:10:30 +1100
Subject: [PATCH] simplify the frontend example

---
 doc/frontend.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/frontend.md b/doc/frontend.md
index 1f389895..0a8b77cd 100644
--- a/doc/frontend.md
+++ b/doc/frontend.md
@@ -34,12 +34,12 @@ You can find a prototype with all valid section and all valid `key=value` pair a
     @description = "ntpd daemon"
     @version = 0.1.0
     @user = ( root )
-    @options = ( log env )
 
     [start]
-    @build = auto
-    @execute = ( foreground { mkdir -p  -m 0755 ${RUNDIR} }
-    execl-cmdline -s { ntpd ${CMD_ARGS} } )
+    @execute = (
+        foreground { mkdir -p  -m 0755 ${RUNDIR} }
+        execl-cmdline -s { ntpd ${CMD_ARGS} }
+    )
 
     [environment]
     dir_run=!/run/openntpd
-- 
GitLab