]> git.ipfire.org Git - people/ms/pakfire.git/blob - src/cli/lib/clean.c
cli: Add a doc string argument to the parser
[people/ms/pakfire.git] / src / cli / lib / clean.c
1 /*#############################################################################
2 # #
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2023 Pakfire development team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 #############################################################################*/
20
21 #include <pakfire/pakfire.h>
22
23 #include "clean.h"
24 #include "command.h"
25 #include "pakfire.h"
26
27 int cli_clean(void* data, int argc, char* argv[]) {
28 struct pakfire* pakfire = NULL;
29 int r;
30
31 struct cli_config* config = data;
32
33 // Parse the command line
34 r = cli_parse(NULL, NULL, NULL, NULL, NULL, argc, argv, NULL);
35 if (r)
36 goto ERROR;
37
38 // Setup Pakfire
39 r = cli_setup_pakfire(&pakfire, config);
40 if (r)
41 goto ERROR;
42
43 // Clean!
44 r = pakfire_clean(pakfire, 0);
45
46 ERROR:
47 if (pakfire)
48 pakfire_unref(pakfire);
49
50 return r;
51 }