quotacheck.c revision dce818b390a857a11f7dd634684500675cf79833
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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 <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include "util.h"
#include "virt.h"
static bool arg_skip = false;
static bool arg_force = false;
static int parse_proc_cmdline(void) {
int r;
size_t l;
if (detect_container(NULL) > 0)
return 0;
return 0;
}
if (strneq(w, "quotacheck.mode=auto", l))
else if (strneq(w, "quotacheck.mode=force", l))
arg_force = true;
else if (strneq(w, "quotacheck.mode=skip", l))
arg_skip = true;
else if (startswith(w, "quotacheck.mode"))
log_warning("Invalid quotacheck.mode= parameter. Ignoring.");
else if (strneq(w, "forcequotacheck", l))
arg_force = true;
#endif
}
return 0;
}
static void test_files(void) {
/* This exists only on Fedora, Mandriva or Mageia */
arg_force = true;
#endif
}
static const char * const cmdline[] = {
"/sbin/quotacheck",
"-anug",
};
int r = EXIT_FAILURE;
if (argc > 1) {
log_error("This program takes no arguments.");
return EXIT_FAILURE;
}
log_open();
umask(0022);
test_files();
if (!arg_force) {
if (arg_skip)
return 0;
return 0;
}
log_error("fork(): %m");
goto finish;
} else if (pid == 0) {
/* Child */
}
return r;
}