Changeset 1097 in MondoRescue
- Timestamp:
- Feb 3, 2007, 11:30:40 PM (18 years ago)
- Location:
- branches/stable/mindi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/distributions/conf/mindi.conf.dist
r1087 r1097 4 4 # 5 5 # We tried to give sensible defaults in this file. 6 # Changing some values may render mindi instable 7 # or cause failures. Use with care. 6 # It will alwys be loaded by mindi before your own configuration files. 7 # DO NOT CHANGE THAT FILE IN ANYWAY AS ITS MD5 SUM IS USED AS A CHECK !! 8 # Anyway changing some values in your own configuration file may render 9 # mindi instable or cause failures. Use with care. 8 10 9 11 # -
branches/stable/mindi/mindi
r1087 r1097 48 48 49 49 MINDI_CONFIG="$MINDI_CONF/mindi.conf" 50 if [ ! -f $MINDI_CONFIG ] && [ " $1" != "--printvar" ]; then50 if [ ! -f $MINDI_CONFIG ] && [ "_$1" = "_" ]; then 51 51 echo "No $MINDI_CONFIG file found using sensible values from $MINDI_CONFIG_DIST" 52 52 else 53 if [ " $1" != "--printvar" ]; then53 if [ "_$1" = "_" ]; then 54 54 echo "Using $MINDI_CONFIG as additional config file to $MINDI_CONFIG_DIST" 55 55 fi … … 2898 2898 fi 2899 2899 kernelname=`echo $kernelpath | cut -d'-' -f2-` 2900 LogIt "kernelname = $kernelname" 2901 LogIt "kernelpath = $kernelpath" 2900 echo "kernelname = $kernelname" >> $LOGFILE 2901 echo "kernelpath = $kernelpath" >> $LOGFILE 2902 2902 if [ ! -d "/lib/modules/$kernelname" ] && [ "$kernelpath" != "FAILSAFE" ] 2903 2903 then 2904 LogIt "Module path for ${kernelpath} not found..."2905 LogIt "using running kernel\'s modules."2904 echo "Module path for ${kernelpath} not found..." >> $LOGFILE 2905 echo "using running kernel\'s modules." >> $LOGFILE 2906 2906 kernelname=`uname -r` 2907 2907 else 2908 LogIt "Using modules for kernel: ${kernelname}"2908 echo "Using modules for kernel: ${kernelname}" >> $LOGFILE 2909 2909 fi 2910 2910 … … 2976 2976 IMAGE_DEVS="" 2977 2977 NFS_DEV="" 2978 if [ _"$MONDO_SHARE" != _"" ]; then2979 fi2980 2978 2981 2979 #
Note:
See TracChangeset
for help on using the changeset viewer.