1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-08 21:17:47 +03:00

nspawn: remove nspawn.h, it's empty now

This commit is contained in:
Lennart Poettering 2015-09-07 18:47:34 +02:00
parent ee64508006
commit 2b5c04d59c
12 changed files with 1 additions and 33 deletions

View File

@ -2778,7 +2778,6 @@ systemd_cgtop_LDADD = \
# ------------------------------------------------------------------------------
systemd_nspawn_SOURCES = \
src/nspawn/nspawn.c \
src/nspawn/nspawn.h \
src/nspawn/nspawn-settings.c \
src/nspawn/nspawn-settings.h \
src/nspawn/nspawn-mount.c \

View File

@ -27,7 +27,6 @@
#include "fileio.h"
#include "cgroup-util.h"
#include "nspawn.h"
#include "nspawn-cgroup.h"
int chown_cgroup(pid_t pid, uid_t uid_shift) {

View File

@ -27,7 +27,6 @@
#include "local-addresses.h"
#include "netlink-util.h"
#include "nspawn.h"
#include "nspawn-expose-ports.h"
int expose_port_parse(ExposePort **l, const char *s) {

View File

@ -1,7 +1,6 @@
%{
#include <stddef.h>
#include "conf-parser.h"
#include "nspawn.h"
#include "nspawn-settings.h"
#include "nspawn-expose-ports.h"
%}

View File

@ -30,7 +30,6 @@
#include "set.h"
#include "cgroup-util.h"
#include "nspawn.h"
#include "nspawn-mount.h"
CustomMount* custom_mount_add(CustomMount **l, unsigned *n, CustomMountType t) {

View File

@ -32,7 +32,6 @@
#include "netlink-util.h"
#include "udev-util.h"
#include "nspawn.h"
#include "nspawn-network.h"
#define HOST_HASH_KEY SD_ID128_MAKE(1a,37,6f,c7,46,ec,45,0b,ad,a3,d5,31,06,60,5d,b1)

View File

@ -26,7 +26,6 @@
#include "bus-util.h"
#include "bus-error.h"
#include "nspawn.h"
#include "nspawn-register.h"
int register_machine(

View File

@ -24,7 +24,6 @@
#include "strv.h"
#include "cap-list.h"
#include "nspawn.h"
#include "nspawn-settings.h"
int settings_load(FILE *f, const char *path, Settings **ret) {

View File

@ -24,7 +24,7 @@
#include <stdio.h>
#include "macro.h"
#include "nspawn.h"
#include "nspawn-mount.h"
#include "nspawn-expose-ports.h"

View File

@ -28,7 +28,6 @@
#include "mkdir.h"
#include "process-util.h"
#include "nspawn.h"
#include "nspawn-setuid.h"
static int spawn_getent(const char *database, const char *key, pid_t *rpid) {

View File

@ -96,7 +96,6 @@
#include "seccomp-util.h"
#endif
#include "nspawn.h"
#include "nspawn-settings.h"
#include "nspawn-mount.h"
#include "nspawn-network.h"

View File

@ -1,22 +0,0 @@
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#pragma once
/***
This file is part of systemd.
Copyright 2015 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/>.
***/