diff options
author | Joe Slater <jslater@windriver.com> | 2016-07-19 16:41:04 -0700 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-08-05 09:06:50 -0400 |
commit | f8dd8cde90c4d6c945177117953e7123e1401236 (patch) | |
tree | 107aac4cafefa108c6f47da865b72e8d7bea6e05 /meta-networking/recipes-daemons | |
parent | 4c854d2bf1d4bcdd41da7b9022f7af4947cbd2c1 (diff) | |
download | meta-openembedded-f8dd8cde90c4d6c945177117953e7123e1401236.tar.gz |
proftpd: start at boot time
Add information to proftpd.service so that it will
be started at boot time.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-daemons')
-rw-r--r-- | meta-networking/recipes-daemons/proftpd/files/proftpd.service | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-networking/recipes-daemons/proftpd/files/proftpd.service b/meta-networking/recipes-daemons/proftpd/files/proftpd.service index ba97f8e1c..3e26d7f38 100644 --- a/meta-networking/recipes-daemons/proftpd/files/proftpd.service +++ b/meta-networking/recipes-daemons/proftpd/files/proftpd.service | |||
@@ -1,7 +1,11 @@ | |||
1 | [Unit] | 1 | [Unit] |
2 | Description=proftpd Daemon | 2 | Description=proftpd Daemon |
3 | After=network.target | ||
3 | 4 | ||
4 | [Service] | 5 | [Service] |
5 | Type=forking | 6 | Type=forking |
6 | ExecStart=-@SBINDIR@/proftpd -c @SYSCONFDIR@/proftpd.conf | 7 | ExecStart=@SBINDIR@/proftpd -c @SYSCONFDIR@/proftpd.conf |
7 | StandardError=syslog | 8 | |
9 | [Install] | ||
10 | WantedBy=default.target | ||
11 | |||