diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-20 17:23:14 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-20 17:23:14 -0400 |
commit | a7059224ad29d8e6c7542df3a9220e37e908c6c2 (patch) | |
tree | a7161c2324958892641033e3787ceca773dbda06 /src/systemd-machine-id-setup/machine-id-setup.h | |
parent | e85a3cc110b0ffc1cd346a4792b5afa614dd21dd (diff) | |
parent | a779d627190fa46f5858275910e5e46deef11c6d (diff) |
Merge branch 'notsystemd/postmove' into notsystemd/master
Diffstat (limited to 'src/systemd-machine-id-setup/machine-id-setup.h')
-rw-r--r-- | src/systemd-machine-id-setup/machine-id-setup.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/systemd-machine-id-setup/machine-id-setup.h b/src/systemd-machine-id-setup/machine-id-setup.h new file mode 100644 index 0000000000..88830ecc42 --- /dev/null +++ b/src/systemd-machine-id-setup/machine-id-setup.h @@ -0,0 +1,25 @@ +#pragma once + +/*** + 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 Lesser General Public License as published by + the Free Software Foundation; either version 2.1 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +#include <systemd/sd-id128.h> + +int machine_id_commit(const char *root); +int machine_id_setup(const char *root, sd_id128_t requested, sd_id128_t *ret); |