[PC-BSD Commits] r20731 - in pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd: conf scripts
svn at pcbsd.org
svn at pcbsd.org
Thu Dec 20 11:38:49 PST 2012
Author: kris
Date: 2012-12-20 19:38:49 +0000 (Thu, 20 Dec 2012)
New Revision: 20731
Modified:
pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/conf/dist-excludes
pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/scripts/extract-overlay.sh
Log:
Add some additional excludes and debug message
Modified: pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/conf/dist-excludes
===================================================================
--- pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/conf/dist-excludes 2012-12-20 19:35:19 UTC (rev 20730)
+++ pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/conf/dist-excludes 2012-12-20 19:38:49 UTC (rev 20731)
@@ -4,6 +4,12 @@
./etc/auth.conf
./etc/blacklist
./etc/crontab
+./etc/group
+./etc/passwd
+./etc/master.passwd
+./etc/pwd.db
+./etc/resolv.conf
+./etc/spwd.db
./etc/csh.cshrc
./etc/devd.conf
./etc/devfs.conf
Modified: pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/scripts/extract-overlay.sh
===================================================================
--- pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/scripts/extract-overlay.sh 2012-12-20 19:35:19 UTC (rev 20730)
+++ pcbsd/current/overlays/desktop-overlay/usr/local/share/pcbsd/scripts/extract-overlay.sh 2012-12-20 19:38:49 UTC (rev 20731)
@@ -3,6 +3,10 @@
distFile="/usr/local/share/pcbsd/distfiles/overlay.txz"
excludeFile="/usr/local/share/pcbsd/conf/dist-excludes"
+echo "Using excludes..."
+cat $excludeFile
+
echo "Extracting overlay data..."
-tar xvmf ${distFile} -X ${excludeFile} -C / #2>/dev/null
+cd /
+tar xvmf ${distFile} -X ${excludeFile} #2>/dev/null
exit $?
More information about the Commits
mailing list