/
githubmirror
/
ostree
Обзор
Документация
Войти
/
githubmirror
/
ostree
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/switchroot/ostree-system-generator.c
57 строк
2 KB
Colin Walters
src/generator: Move all logic into libostree-1.so
23 июл 2023, 17:47
23 июл 2023, 17:47
303e7eb
Код
Авторство
О чём код?
/* * Copyright (C) 2017 Colin Walters <walters@verbum.org> * * SPDX-License-Identifier: LGPL-2.0+ * * This library 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 of the License, or (at your option) any later version. * * This library 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 this library. If not, see <https://www.gnu.org/licenses/>. */ #include "config.h" #include <err.h> #include <fcntl.h> #include <stdlib.h> #include <sys/stat.h> #include <unistd.h> #include <libglnx.h> #include "ostree-cmd-private.h" static const char *arg_dest = "/tmp"; static const char *arg_dest_late = "/tmp"; /* This program is a simple stub that calls the implementation that * lives inside libostree. */ int main (int argc, char *argv[]) { if (argc > 1 && argc != 4) errx (EXIT_FAILURE, "This program takes three or no arguments"); if (argc > 1) arg_dest = argv[1]; if (argc > 3) arg_dest_late = argv[3]; { g_autoptr (GError) local_error = NULL; if (!ostree_cmd__private__ ()->ostree_system_generator (arg_dest, NULL, arg_dest_late, &local_error)) errx (EXIT_FAILURE, "%s", local_error->message); } exit (EXIT_SUCCESS); }