lualogging: add hash file
[buildroot-gz.git] / package / dropbear / dropbear.service
blob0e2cf548d3e3ab547baf2ac76bc3b901732d9e9e
1 [Unit]
2 Description=Dropbear SSH daemon
3 After=syslog.target network.target auditd.service
5 [Service]
6 # If /etc/dropbear is not a directory, and
7 #   - the filesystem is RO (i.e. we can not rm the symlink),
8 #     create the directory pointed to by the symlink.
9 #   - the filesystem is RW (i.e. we can rm the symlink),
10 #     replace the symlink with an actual directory
11 ExecStartPre=/bin/sh -c '\
12 if ! [ -d /etc/dropbear ]; then \
13     if rm -f /etc/dropbear; then \
14         mkdir -p /etc/dropbear; \
15     else \
16         mkdir -p $(readlink /etc/dropbear); \
17     fi; \
18 fi'
19 ExecStart=/usr/sbin/dropbear -F -R
20 ExecReload=/bin/kill -HUP $MAINPID
22 [Install]
23 WantedBy=multi-user.target