2010-01-23 07:52:57 +07:00
|
|
|
/*-*- Mode: C; c-basic-offset: 8 -*-*/
|
|
|
|
|
2010-02-03 19:03:47 +07:00
|
|
|
/***
|
|
|
|
This file is part of systemd.
|
|
|
|
|
|
|
|
Copyright 2010 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/>.
|
|
|
|
***/
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
#include "unit.h"
|
2010-01-23 07:52:57 +07:00
|
|
|
#include "snapshot.h"
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
static void snapshot_done(Unit *u) {
|
|
|
|
Snapshot *s = SNAPSHOT(u);
|
2010-01-23 07:52:57 +07:00
|
|
|
|
|
|
|
assert(s);
|
|
|
|
|
|
|
|
/* Nothing here for now */
|
|
|
|
}
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
static UnitActiveState snapshot_active_state(Unit *u) {
|
|
|
|
return SNAPSHOT(u)->state == SNAPSHOT_DEAD ? UNIT_INACTIVE : UNIT_ACTIVE;
|
2010-01-26 10:18:44 +07:00
|
|
|
}
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
const UnitVTable snapshot_vtable = {
|
2010-01-23 07:52:57 +07:00
|
|
|
.suffix = ".snapshot",
|
|
|
|
|
2010-01-26 10:18:44 +07:00
|
|
|
.done = snapshot_done,
|
2010-01-23 07:52:57 +07:00
|
|
|
|
2010-01-26 10:18:44 +07:00
|
|
|
.active_state = snapshot_active_state
|
2010-01-23 07:52:57 +07:00
|
|
|
};
|