|
From: <ssm...@us...> - 2007-10-05 17:48:26
|
Revision: 2643
http://selinux.svn.sourceforge.net/selinux/?rev=2643&view=rev
Author: ssmalley
Date: 2007-10-05 10:48:23 -0700 (Fri, 05 Oct 2007)
Log Message:
-----------
Author: Daniel J Walsh
Email: dw...@re...
Subject: genhomedircon script
Date: Fri, 05 Oct 2007 13:16:24 -0400
Certain tools were calling genhomedircon and in certain cases
genhomedircon is handy for rebuilding the home directory mapping.
Since semodule -Bn will rebuild, added genhomedircon script that just
executes that command.
Modified Paths:
--------------
trunk/policycoreutils/scripts/Makefile
Added Paths:
-----------
trunk/policycoreutils/scripts/genhomedircon
Modified: trunk/policycoreutils/scripts/Makefile
===================================================================
--- trunk/policycoreutils/scripts/Makefile 2007-10-05 14:10:56 UTC (rev 2642)
+++ trunk/policycoreutils/scripts/Makefile 2007-10-05 17:48:23 UTC (rev 2643)
@@ -5,12 +5,13 @@
MANDIR ?= $(PREFIX)/share/man
LOCALEDIR ?= /usr/share/locale
-all: fixfiles
+all: fixfiles genhomedircon
install: all
-mkdir -p $(BINDIR)
install -m 755 chcat $(BINDIR)
install -m 755 fixfiles $(DESTDIR)/sbin
+ install -m 755 genhomedircon $(SBINDIR)
-mkdir -p $(MANDIR)/man8
install -m 644 fixfiles.8 $(MANDIR)/man8/
install -m 644 chcat.8 $(MANDIR)/man8/
Added: trunk/policycoreutils/scripts/genhomedircon
===================================================================
--- trunk/policycoreutils/scripts/genhomedircon (rev 0)
+++ trunk/policycoreutils/scripts/genhomedircon 2007-10-05 17:48:23 UTC (rev 2643)
@@ -0,0 +1,2 @@
+#!/bin/sh
+/usr/sbin/semodule -Bn
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|