]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
We DON'T ship bash by default, why is it the default shell?
authorGary Clark II <gclarkii@FreeBSD.org>
Mon, 6 May 1996 06:15:19 +0000 (06:15 +0000)
committerGary Clark II <gclarkii@FreeBSD.org>
Mon, 6 May 1996 06:15:19 +0000 (06:15 +0000)
We also don't ship tcsh or ksh by default.
Correct these two things to make sh the default and increase csh and sh
to be higher priority.

adduser/adduser.perl

index 00556a12d621192c6ef16afe2c0b7d4a38bc0155..f13b69c123076a609c94d881ec4242753e7bf5dc 100644 (file)
@@ -32,7 +32,7 @@
 #
 #   Email: Wolfram Schneider <wosch@cs.tu-berlin.de>
 #
-# $Id: adduser.perl,v 1.9 1995/10/22 11:44:16 jkh Exp $
+# $Id: adduser.perl,v 1.10 1996/02/10 17:15:47 wosch Exp $
 #
 
 # read variables
@@ -56,9 +56,9 @@ sub variables {
     # List of directories where shells located
     @path = ('/bin', '/usr/bin', '/usr/local/bin');
     # common shells, first element has higher priority
-    @shellpref = ('bash', 'tcsh', 'ksh', 'csh', 'sh');
+    @shellpref = ('csh', 'sh', 'bash', 'tcsh', 'ksh');
 
-    $defaultshell = 'bash';    # defaultshell if not empty
+    $defaultshell = 'sh';      # defaultshell if not empty
     $group_uniq = 'USER';
     $defaultgroup = $group_uniq;# login groupname, $group_uniq means username