updated inits to handle missing default bash config
authorChris Koeritz <cak0l@virginia.edu>
Thu, 30 Jan 2020 20:36:16 +0000 (15:36 -0500)
committerChris Koeritz <cak0l@virginia.edu>
Thu, 30 Jan 2020 20:36:16 +0000 (15:36 -0500)
infobase/feisty_inits/dot.bashrc-normal-user
infobase/feisty_inits/dot.bashrc-root

index 615970aa422bc56e1a333c0e38a10f6eef792bc7..f64bbcfcf3d5cd178eff7d7468d06f9ab9239e26 100644 (file)
@@ -5,9 +5,11 @@
 
 ##############
 
-# drag in the default version of this file.  this may not be needed if your
-# .bashrc script already has substantial code or already does this.
-source /etc/bash.bashrc
+if [ -f /etc/bash.bashrc ]; then
+  # drag in the default version of this file.  this may not be needed if your
+  # .bashrc script already has substantial code or already does this.
+  source /etc/bash.bashrc
+fi
 
 ##############
 
index e0facb150007d8b81a7e37f0802fc31e5fccf806..b3ff3381074e72f7ee45695602bb5a23e5d572bf 100644 (file)
@@ -5,9 +5,11 @@
 
 ##############
 
-# drag in the default version of this file.  this may not be needed if your
-# .bashrc script already has substantial code or already does this.
-source /etc/bash.bashrc
+if [ -f /etc/bash.bashrc ]; then
+  # drag in the default version of this file.  this may not be needed if your
+  # .bashrc script already has substantial code or already does this.
+  source /etc/bash.bashrc
+fi
 
 ##############