aboutsummaryrefslogtreecommitdiff
path: root/uccsconfigure-session-wrapper.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-09-17 08:11:05 +0000
committerTarmac <Unknown>2012-09-17 08:11:05 +0000
commit796338087d3e2cea13d4f60f67f58af984137afb (patch)
tree1a38d8dff55a0d8042fd2d9d742c6ba7a4036963 /uccsconfigure-session-wrapper.c
parent3a9918c02006140736b2e00caa1c965d26de83ca (diff)
parent2a395d9c0920638916b45bbbdebb06f48e6ecd5c (diff)
downloadlightdm-remote-session-remoteconfigure-796338087d3e2cea13d4f60f67f58af984137afb.tar.gz
lightdm-remote-session-remoteconfigure-796338087d3e2cea13d4f60f67f58af984137afb.tar.bz2
lightdm-remote-session-remoteconfigure-796338087d3e2cea13d4f60f67f58af984137afb.zip
Adding an apparmor profile for the session. Fixes: https://bugs.launchpad.net/bugs/1049849. Approved by Albert Astals Cid, jenkins.
Diffstat (limited to 'uccsconfigure-session-wrapper.c')
-rw-r--r--uccsconfigure-session-wrapper.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/uccsconfigure-session-wrapper.c b/uccsconfigure-session-wrapper.c
new file mode 100644
index 0000000..dbe8023
--- /dev/null
+++ b/uccsconfigure-session-wrapper.c
@@ -0,0 +1,32 @@
+/*
+ * Copyright © 2012 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Ted Gould <ted@canonical.com>
+ */
+
+#include <stdlib.h>
+#include <unistd.h>
+
+int
+main (int argc, char * argv[])
+{
+ char * args[2];
+ args[0] = PKGDATADIR "/uccsconfigure-session";
+ args[1] = NULL;
+
+ execvp(args[0], args);
+
+ return 0;
+}