Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] BZR Change 19 to test sorcery by Andrew Stitt <afrayedknot@thefrayedknot>

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: scm AT mail.sourcemage.org
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] BZR Change 19 to test sorcery by Andrew Stitt <afrayedknot@thefrayedknot>
  • Date: Fri, 12 May 2006 12:20:03 -0500

------------------------------------------------------------
revno: 19
committer: Andrew Stitt <afrayedknot@thefrayedknot>
branch nick: test
timestamp: Fri 2006-05-12 10:14:20 -0700
message:
fix bug 11413, untar permissions

=== modified file 'ChangeLog'
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,9 @@
+2006-05-12 Andrew Stitt <astitt AT sourcemage.org>
+ * libunpack: change parameters passed to tar, bug 11413, pull
+ * libunpack: pull change from David Brown: added
+ --no-same-permissions to tar to fix permissions problems when
+ untaring files with og+w
+
2006-05-01 Andrew Stitt <astitt AT sourcemage.org>
* libdepends: fix search for default provider


=== modified file 'var/lib/sorcery/modules/libunpack'
--- var/lib/sorcery/modules/libunpack
+++ var/lib/sorcery/modules/libunpack
@@ -225,8 +225,8 @@

case "$2" in
bzip2|gzip|compress*|tar)
- tar --owner=root --group=root -xf /dev/stdin \
- 2> /dev/null || cat > /dev/null ;;
+ tar --no-same-owner --no-same-permissions -xf \
+ /dev/stdin 2> /dev/null || cat > /dev/null ;;
Zip) cat /dev/stdin >/dev/null #get rid of unused output
unzip -q "$1" ;;
RPM) cpio -idm < /dev/stdin ;;




  • [SM-Commit] BZR Change 19 to test sorcery by Andrew Stitt <afrayedknot@thefrayedknot>, scm, 05/12/2006

Archive powered by MHonArc 2.6.24.

Top of Page