summaryrefslogtreecommitdiff
path: root/src/udev/label.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/udev/label.c')
-rw-r--r--src/udev/label.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/udev/label.c b/src/udev/label.c
index 5698020672..dca2a21228 100644
--- a/src/udev/label.c
+++ b/src/udev/label.c
@@ -233,3 +233,15 @@ skipped:
#endif
return mkdir(path, mode) < 0 ? -errno : 0;
}
+
+int label_apply(const char *path, const char *label) {
+ int r = 0;
+
+#ifdef HAVE_SELINUX
+ if (!use_selinux())
+ return 0;
+
+ r = setfilecon(path, (char *)label);
+#endif
+ return r;
+}