summaryrefslogtreecommitdiff
path: root/src/service.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-08-17 19:37:36 +0200
committerLennart Poettering <lennart@poettering.net>2010-08-17 19:37:36 +0200
commit02ee865a462caa2aeeee673e90287a4c34b013fd (patch)
tree665009d130cd1f247cfd5a58959ba6262fe310f4 /src/service.h
parent4694836523eb42eea731dc56413742135b6c10ba (diff)
service: rename ValidNoProcess= to RemainAfterExit=
Diffstat (limited to 'src/service.h')
-rw-r--r--src/service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service.h b/src/service.h
index 3a033929fb..0fdcb62d54 100644
--- a/src/service.h
+++ b/src/service.h
@@ -33,7 +33,7 @@ typedef enum ServiceState {
SERVICE_START,
SERVICE_START_POST,
SERVICE_RUNNING,
- SERVICE_EXITED, /* Nothing is running anymore, but ValidNoProcess is true, ehnce this is OK */
+ SERVICE_EXITED, /* Nothing is running anymore, but RemainAfterExit is true, ehnce this is OK */
SERVICE_RELOAD,
SERVICE_STOP, /* No STOP_PRE state, instead just register multiple STOP executables */
SERVICE_STOP_SIGTERM,
@@ -109,7 +109,7 @@ struct Service {
bool permissions_start_only;
bool root_directory_start_only;
- bool valid_no_process;
+ bool remain_after_exit;
/* If we shut down, remember why */
bool failure:1;