2006-01-28 02:47:35 +00:00
|
|
|
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/scripts/genhomedircon policycoreutils-1.29.11/scripts/genhomedircon
|
|
|
|
--- nsapolicycoreutils/scripts/genhomedircon 2006-01-20 10:37:37.000000000 -0500
|
|
|
|
+++ policycoreutils-1.29.11/scripts/genhomedircon 2006-01-27 01:22:00.000000000 -0500
|
|
|
|
@@ -87,6 +87,12 @@
|
|
|
|
|
|
|
|
if ret == []:
|
|
|
|
ret.append("/home")
|
2006-01-19 14:45:25 +00:00
|
|
|
+
|
2006-01-28 02:47:35 +00:00
|
|
|
+ # Add /export/home if it exists
|
|
|
|
+ # Some customers use this for automounted homedirs
|
|
|
|
+ if os.path.exists("/export/home"):
|
|
|
|
+ ret.append("/export/home")
|
2006-01-25 16:07:46 +00:00
|
|
|
+
|
2006-01-28 02:47:35 +00:00
|
|
|
return ret
|
2006-01-25 16:07:46 +00:00
|
|
|
|
2006-01-28 02:47:35 +00:00
|
|
|
def getSELinuxType(directory):
|