diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-11-15 16:20:28 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-11-24 17:44:57 +0100 |
commit | 88531199d2f46f8758dd1ef3262e567cc849c0b8 (patch) | |
tree | 610ecc205121ddd7421755e07be878901830ed73 /conf/generate-unit-conf/provided.inc | |
parent | 597a0e00c4fcb1af745804be6249f08203084f62 (diff) |
Generate afm-unit.conf using m4
The use of m4 to generate the afm-unit.conf and
afm-unit-debug.conf files has benefits:
- the sync between debug versus not debug is mechanical
- it allows easier maintainance by improving readability
and writability (ex: macros TARGET or UNIT_NAME_BASE)
Change-Id: Ic0427bedf4f8a5b174318562336603077f174fa5
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'conf/generate-unit-conf/provided.inc')
-rw-r--r-- | conf/generate-unit-conf/provided.inc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/conf/generate-unit-conf/provided.inc b/conf/generate-unit-conf/provided.inc new file mode 100644 index 0000000..d42ba77 --- /dev/null +++ b/conf/generate-unit-conf/provided.inc @@ -0,0 +1,32 @@ +;--------------------------------------------------------------------------------- +;---- P R O V I D E D A P I S ---- +;--------------------------------------------------------------------------------- + +{{#provided-api}} +{{#value=ws|auto}} + +%begin systemd-unit + +# auto generated by wgtpkg-unit for {{:id}} version {{:version}} target {{:#target}} of {{:idaver}} + +%systemd-unit system +%systemd-unit socket afm-api-ws-{{name}}@ + +[Socket] +SmackLabel=* +ListenStream=%t/apis/ws/{{name}} +FileDescriptorName={{name}} + +Service=UNIT_NAME_SERVICE + +%nl +[Install] +WantedBy=sockets.target +%systemd-unit wanted-by sockets.target + +%end systemd-unit + +{{/value=ws|auto}} +{{/provided-api}} + + |