d3d9a8
--- criu-1.6.1/crtools.c	2015-08-12 10:30:50.000000000 +0200
d3d9a8
+++ crtools.c	2015-08-28 15:22:08.231877095 +0200
d3d9a8
@@ -42,6 +42,8 @@
d3d9a8
 
d3d9a8
 #include "setproctitle.h"
d3d9a8
 
d3d9a8
+#include<syslog.h>
d3d9a8
+
d3d9a8
 struct cr_options opts;
d3d9a8
 
d3d9a8
 void init_opts(void)
d3d9a8
@@ -524,6 +526,17 @@
d3d9a8
 	if (log_init(opts.output))
d3d9a8
 		return 1;
d3d9a8
 
d3d9a8
+	/*
d3d9a8
+	 * Mark criu as tech preview for RHEL7.2
d3d9a8
+	 */
d3d9a8
+	pr_msg("TECH PREVIEW: criu may not be fully supported.\n");
d3d9a8
+	pr_msg("Please review provided documentation for limitations.\n\n");
d3d9a8
+
d3d9a8
+	openlog("criu", LOG_PID, LOG_USER);
d3d9a8
+	syslog(LOG_NOTICE, "TECH PREVIEW: criu may not be fully supported.");
d3d9a8
+	syslog(LOG_NOTICE, "Please review provided documentation for limitations.");
d3d9a8
+	closelog();
d3d9a8
+
d3d9a8
 	if (!list_empty(&opts.inherit_fds)) {
d3d9a8
 		if (strcmp(argv[optind], "restore")) {
d3d9a8
 			pr_err("--inherit-fd is restore-only option\n");