Index: ossp-pkg/shtool/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/shtool/ChangeLog,v rcsdiff -q -kk '-r1.177' '-r1.178' -u '/v/ossp/cvs/ossp-pkg/shtool/ChangeLog,v' 2>/dev/null --- 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 ] + *) Changed "shtool fixperm" to no longer set group writeability. + [Ralf S. Engelschall, Michael van Elst ] + Changes between 1.6.1 and 1.6.2 (12-Jul-2002 to 02-Nov-2002): *) Map "shtool install -d [...]" internally to "shtool mkdir Index: ossp-pkg/shtool/THANKS RCS File: /v/ossp/cvs/ossp-pkg/shtool/THANKS,v rcsdiff -q -kk '-r1.26' '-r1.27' -u '/v/ossp/cvs/ossp-pkg/shtool/THANKS,v' 2>/dev/null --- 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 o Marcus Boerger o Alan Eldridge + o Michael van Elst o Scott R. Every o Daniel Richard G. o Dean Gaudet Index: ossp-pkg/shtool/sh.fixperm RCS File: /v/ossp/cvs/ossp-pkg/shtool/sh.fixperm,v rcsdiff -q -kk '-r1.14' '-r1.15' -u '/v/ossp/cvs/ossp-pkg/shtool/sh.fixperm,v' 2>/dev/null --- 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