diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-05-29 21:51:50 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-06-07 00:59:38 +0200 |
commit | 817e224bbce3ed157817961ef19c80a250845a05 (patch) | |
tree | f0b3067010f0ce6757a2bd397db46976dc8d8569 /src/core/service.h | |
parent | 95ed3294c632f5606327149f10cef1eb34422862 (diff) |
Remove sysv parser from service.c
Parsing sysv files was moved to the sysv-generator in the previous commit.
This patch removes the sysv parsing from serivce.c.
Note that this patch drops the following now unused sysv-specific info
from service dump:
"SysV Init Script has LSB Header: (yes/no)"
"SysVEnabled: (yes/no)"
"SysVRunLevels: (levels)"
Diffstat (limited to 'src/core/service.h')
-rw-r--r-- | src/core/service.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/service.h b/src/core/service.h index 8c2c819256..b8f0e0c42d 100644 --- a/src/core/service.h +++ b/src/core/service.h @@ -175,13 +175,7 @@ struct Service { bool forbid_restart:1; bool start_timeout_defined:1; #ifdef HAVE_SYSV_COMPAT - bool is_sysv:1; - bool sysv_has_lsb:1; - bool sysv_enabled:1; - int sysv_start_priority_from_rcnd; int sysv_start_priority; - - char *sysv_runlevels; #endif char *bus_name; |