diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-07-25 04:58:02 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-07-25 04:58:02 +0200 |
commit | 729e3769c32242bbba26ea96900be005d52ce438 (patch) | |
tree | a8a6234044790254e3834e1e67971df93613b918 /src/spawn-agent.h | |
parent | 4b7a6af440ee1a957fd8fe1c6ca3b7f310fdf77c (diff) |
systemctl: hook up new install logic
This adds a number of new options to systemctl, for presets, reenabling,
masking/unmask, and runtime operations.
Diffstat (limited to 'src/spawn-agent.h')
-rw-r--r-- | src/spawn-agent.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/spawn-agent.h b/src/spawn-agent.h new file mode 100644 index 0000000000..fd0a9109b8 --- /dev/null +++ b/src/spawn-agent.h @@ -0,0 +1,28 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +#ifndef foospawnagenthfoo +#define foospawnagenthfoo + +/*** + This file is part of systemd. + + Copyright 2011 Lennart Poettering + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +void agent_open(void); +void agent_close(void); + +#endif |