diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2016-01-18 23:40:20 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2016-01-18 23:40:20 -0600 |
commit | 55a28f5d2524615560698453a5a6afd50460030c (patch) | |
tree | 4017651bb7b10b124058a6d422551e86cfbd449e /src/includes | |
parent | 6c0942137572608d02eb4b34bad55c9bf418a6ba (diff) |
Revert "rc: make get_systype similar to the old rc_sys function"
This reverts commit f79a7a7be18d68bf264efc60d82838d03048da6b.
Diffstat (limited to 'src/includes')
-rw-r--r-- | src/includes/rc-misc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/includes/rc-misc.h b/src/includes/rc-misc.h index de73c5c1..f2449cd7 100644 --- a/src/includes/rc-misc.h +++ b/src/includes/rc-misc.h @@ -43,7 +43,6 @@ char *rc_conf_value(const char *var); bool rc_conf_yesno(const char *var); -char *get_systype(void); void env_filter(void); void env_config(void); int signal_setup(int sig, void (*handler)(int)); @@ -61,6 +60,10 @@ int is_writable(const char *); #define service_stop(service) exec_service(service, "stop"); int parse_mode(mode_t *, char *); +const char *detect_prefix(void); +const char *get_systype(void); +const char *detect_container(void); +const char *detect_vm(void); /* Handy function so we can wrap einfo around our deptree */ RC_DEPTREE *_rc_deptree_load (int, int *); |