diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-12 23:04:06 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-08-12 23:04:06 +0200 |
commit | 8efb8ba1efa9d51ec376bac0bfcb48cf200447a9 (patch) | |
tree | c2cc9abcddee7bf5bdf829329d2c05f8a18e8b23 /src/systemd | |
parent | 21bc98f16110d0fa2d7d93409252da73f58878ed (diff) | |
parent | b5e0a1796cc7887245ae79c759f709e1705f5e93 (diff) | |
download | vyos-1x-8efb8ba1efa9d51ec376bac0bfcb48cf200447a9.tar.gz vyos-1x-8efb8ba1efa9d51ec376bac0bfcb48cf200447a9.zip |
Merge branch 'system-display' of https://github.com/fmertz/vyos-1x into t2564-lcd
* 'system-display' of https://github.com/fmertz/vyos-1x:
system display: T2564: Added test model
system display: T2564: Dictionary code update
system display: T2564: Conf files to /run
system display: T2564: Changed "duration" to "time"
system display: T2564: py code cleanup
system display: T2564: Replace "config (enabled|disabled)" with "display disabled"
system display: T2564: Lowercase model names
system display: T2564 Extend VyOS to support appliance LCDs
Diffstat (limited to 'src/systemd')
-rw-r--r-- | src/systemd/LCDd@.service | 10 | ||||
-rw-r--r-- | src/systemd/lcdproc@.service | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/systemd/LCDd@.service b/src/systemd/LCDd@.service new file mode 100644 index 000000000..a4604cf21 --- /dev/null +++ b/src/systemd/LCDd@.service @@ -0,0 +1,10 @@ +[Unit] +Description=LCD display daemon on %I +Documentation=man:LCDd(8) http://www.lcdproc.org/ + +[Service] +User=root +ExecStart=/usr/sbin/LCDd -s 1 -f -c /run/LCDd/LCDd.%I.conf + +[Install] +WantedBy=multi-user.target
\ No newline at end of file diff --git a/src/systemd/lcdproc@.service b/src/systemd/lcdproc@.service new file mode 100644 index 000000000..9a1723dba --- /dev/null +++ b/src/systemd/lcdproc@.service @@ -0,0 +1,10 @@ +[Unit] +Description=LCDproc system status information viewer on %I +Documentation=man:lcdproc(8) http://www.lcdproc.org/ + +[Service] +User=root +ExecStart=/usr/bin/lcdproc -f -c /run/lcdproc/lcdproc.%I.conf + +[Install] +WantedBy=multi-user.target
\ No newline at end of file |