aboutsummaryrefslogtreecommitdiff
path: root/selinux/load_policy.c
blob: c5b0e7a1b26f631dd52670e3d71e7307ef5dfcaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * load_policy
 * Author: Yuichi Nakamura <ynakam@hitachisoft.jp>
 */
#include "libbb.h"

int load_policy_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int load_policy_main(int argc, char **argv ATTRIBUTE_UNUSED)
{
	int rc;

	if (argc != 1) {
		bb_show_usage();
	}

	rc = selinux_mkload_policy(1);
	if (rc < 0) {
		bb_perror_msg_and_die("can't load policy");
	}

	return 0;
}