Changeset 42


Ignore:
Timestamp:
03/29/2006 14:58:22 (6 years ago)
Author:
ccowart
Message:

Updating some config options

Location:
confman
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • confman/confman

    r39 r42  
    447447        local file=`abspath $2` 
    448448        local response usefile suffix 
    449         local mode=$DEFAULT_MODE 
     449        local mode=$DEFAULT_MODE_FILE 
    450450        local owner=$DEFAULT_OWNER 
    451451        local group=$DEFAULT_GROUP 
     
    538538        local dir=$1 
    539539        local response module realpath 
    540         local mode=$DEFAULT_MODE 
     540        local mode=$DEFAULT_MODE_DIRECTORY 
    541541        local owner=$DEFAULT_OWNER 
    542542        local group=$DEFAULT_GROUP 
  • confman/confman.conf

    r41 r42  
    1616REPO_PATH="/usr/local/rescomp/repo/conf/conf" 
    1717 
    18 # The directory from the root of the repository to rescomp core: 
    19 REPO_CORE="core" 
    20  
    21 # The directory from the root of the repository to host-specific data: 
    22 REPO_LOCAL="`hostname -s`" 
    23  
    2418# The directory from the root of the repository to our checkpoints: 
    2519REPO_CHECKPTS="checkpoints" 
     
    2923 
    3024# The path to our current host's recipe file 
    31 # RECIPE_PATH="/usr/local/rescomp/etc/recipe" 
    3225RECIPE_PATH="/usr/local/rescomp/etc/recipe" 
    3326 
     
    4033 
    4134# Default file properties 
    42 DEFAULT_MODE="0444" 
     35DEFAULT_MODE_DIRECTORY="0444" 
     36DEFAULT_MODE_FILE="0555" 
    4337DEFAULT_OWNER="root" 
    4438DEFAULT_GROUP="wheel" 
  • confman/confmanlib.sh

    r41 r42  
    139139  local chkpath="${WORK_PATH}/${REPO_CHECKPTS}/${module}/${checkpoint}" 
    140140  svn rm ${chkpath} 
    141   local msg="Removed the checkpoint ${checkpoint} from ${REPO_LOCAL} --`whoami`" 
     141  local msg="Removed the checkpoint ${checkpoint} from ${module} --`whoami`" 
    142142  svn commit ${WORK_PATH}/${REPO_CHECKPTS} -m "$msg" 
    143143} 
Note: See TracChangeset for help on using the changeset viewer.