OSSP CVS Repository

ossp - Check-in [2958]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 2958
Date: 2002-Dec-16 14:50:20 (local)
2002-Dec-16 13:50:20 (UTC)
User:rse
Branch:
Comment: Changed 'shtool fixperm' to no longer set group writeability.
Tickets:
Inspections:
Files:
ossp-pkg/shtool/ChangeLog      1.177 -> 1.178     3 inserted, 0 deleted
ossp-pkg/shtool/THANKS      1.26 -> 1.27     1 inserted, 0 deleted
ossp-pkg/shtool/sh.fixperm      1.14 -> 1.15     9 inserted, 9 deleted

ossp-pkg/shtool/ChangeLog 1.177 -> 1.178

--- ChangeLog    2002/12/09 10:42:13     1.177
+++ ChangeLog    2002/12/16 13:50:20     1.178
@@ -14,6 +14,9 @@
    *) Fixed description of "shtool install -C" operation in manual page.
       [Stefan Seefeld <stefan@fresco.org>]
 
+   *) Changed "shtool fixperm" to no longer set group writeability.
+      [Ralf S. Engelschall, Michael van Elst <mlelstv@serpens.de>]
+
  Changes between 1.6.1 and 1.6.2 (12-Jul-2002 to 02-Nov-2002):
 
    *) Map "shtool install -d <dir> [...]" internally to "shtool mkdir


ossp-pkg/shtool/THANKS 1.26 -> 1.27

--- THANKS       2002/12/09 10:42:13     1.26
+++ THANKS       2002/12/16 13:50:20     1.27
@@ -15,6 +15,7 @@
   o Denis Barbier            <barbier@imacs.polytechnique.fr>
   o Marcus Boerger           <marcus.boerger@t-online.de>
   o Alan Eldridge            <alane@geeksrus.net>
+  o Michael van Elst         <mlelstv@serpens.de>
   o Scott R. Every           <scott@emji.net>
   o Daniel Richard G.        <straker@MIT.EDU>
   o Dean Gaudet              <dgaudet@arctic.org>


ossp-pkg/shtool/sh.fixperm 1.14 -> 1.15

--- sh.fixperm   2001/12/31 15:06:04     1.14
+++ sh.fixperm   2002/12/16 13:50:20     1.15
@@ -44,31 +44,31 @@
         if [ -f $file ]; then
             if [ $minusx $file ]; then
                 if [ ".$opt_v" = .yes ]; then
-                    echo "-rwxrwxr-x $file" 2>&1
+                    echo "-rwxr-xr-x $file" 2>&1
                 fi
                 if [ ".$opt_t" = .yes ]; then
-                    echo "chmod 775 $file" 2>&1
+                    echo "chmod 755 $file" 2>&1
                 fi
-                chmod 775 $file
+                chmod 755 $file
             else
                 if [ ".$opt_v" = .yes ]; then
-                    echo "-rw-rw-r-- $file" 2>&1
+                    echo "-rw-r--r-- $file" 2>&1
                 fi
                 if [ ".$opt_t" = .yes ]; then
-                    echo "chmod 664 $file" 2>&1
+                    echo "chmod 644 $file" 2>&1
                 fi
-                chmod 664 $file
+                chmod 644 $file
             fi
             continue
         fi
         if [ -d $file ]; then
             if [ ".$opt_v" = .yes ]; then
-                echo "drwxrwxr-x $file" 2>&1
+                echo "drwxr-xr-x $file" 2>&1
             fi
             if [ ".$opt_t" = .yes ]; then
-                echo "chmod 775 $file" 2>&1
+                echo "chmod 755 $file" 2>&1
             fi
-            chmod 775 $file
+            chmod 755 $file
             continue
         fi
         if [ ".$opt_v" = .yes ]; then

CVSTrac 2.0.1