Changeset 317
- Timestamp:
- 05/02/2009 20:06:17 (3 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
Makefile.am (modified) (1 diff)
-
confexport.in (modified) (1 diff)
-
confman.conf.in (modified) (2 diffs)
-
confman.conf.sample.in (modified) (1 diff)
-
confman.in (modified) (2 diffs)
-
confmancommon.sh.in (modified) (1 diff)
-
confmanlib.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r310 r317 11 11 sysconfdefaults_DATA = confman.conf 12 12 bashcomp_DATA = confman_completion 13 man_MANS = confman.8 confman.conf.5 14 dist_man_MANS = confaudit.8 confexport.8 confman.8 confman.conf.5 confsync.8 13 man_MANS = confman.8 confman.conf.5 14 dist_man_MANS = confadmin.8 \ 15 confaudit.8 \ 16 confexport.8 \ 17 confman.8 \ 18 confman.conf.5 \ 19 confsync.8 15 20 16 21 CLEANFILES = $(sbin_SCRIPTS) \ -
trunk/confexport.in
r302 r317 50 50 umask 077 51 51 52 REPO_URI="file://$REPO_PATH"53 52 temp_conf_export=$(conf_tmp_file) 54 53 -
trunk/confman.conf.in
r306 r317 5 5 # 6 6 # If you would like to override any portion of this file, please do so 7 # in etc/confman.conf or ~/.confmanrc.7 # in @sysconfdir@/confman.conf or ~/.confmanrc. 8 8 9 9 # $Id$ 10 11 # The system-wide configuration file 12 GCONF="@sysconfdir@/confman.conf" 10 13 11 14 # The location of our shell library … … 38 41 # The path to our current host's recipe file 39 42 RECIPE_FILE="${REPO_DB}/recipe" 43 44 # The template for log messages 45 LOG_TEMPLATE="/dev/null" 40 46 41 47 # The warning message for all files -
trunk/confman.conf.sample.in
r306 r317 12 12 REPO_PATH="@prefix@/repo/conf/conf" 13 13 14 # This file will be concatenated with the confman status output and opened 15 # in a user's editor before commits. 16 #LOG_TEMPLATE="/dev/null" 17 14 18 # The list of singularities on this host 15 19 SINGULARITIES="/etc/rc.conf" -
trunk/confman.in
r314 r317 120 120 # Moved up per Ian's request. 121 121 $SUDO ${SUDO:+-v} 122 echo "Change this file to your log message." > $msg 123 echo "BugId: " >> $msg 124 echo "$ignoreline" >> $msg 122 cat $LOG_TEMPLATE > $msg 123 printf "\n${ignoreline}\n" >> $msg 125 124 conf_get_recipe | tr ' ' '\n' | xargs -I % svn status \ 126 125 ${WORK_PATH}/% >> $status … … 172 171 local files 173 172 # Moved up per Ian's request. 174 echo "Change this file to your log message." > $msg 175 echo "BugId: " >> $msg 176 echo "$ignoreline" >> $msg 173 cat $LOG_TEMPLATE > $msg 174 printf "\n${ignoreline}\n" >> $msg 177 175 for file in "$@"; do 178 176 if [ -L "$file" ]; then -
trunk/confmancommon.sh.in
r302 r317 31 31 # Some global definitions. Defaults that can be overriden by options. 32 32 DEFAULTS="@sysconfdefaultsdir@/confman.conf" 33 GCONF="@sysconfdir@/confman.conf"34 33 UCONF="${HOME}/.confmanrc" 35 34 MYNAME=`basename $0` -
trunk/confmanlib.sh
r302 r317 28 28 29 29 REPO_URI="${REPO_PROTOCOL}${REPO_HOSTNAME}${REPO_PATH}" 30 REPO_TRUNK="${REPO_PROTOCOL}${REPO_HOSTNAME}${REPO_PATH}/trunk" 30 31 REPO_ACTION="${REPO_DB}/last_action" 31 32 REPO_SYNC_STATE="${REPO_DB}/state" … … 51 52 chmod 700 ${WORK_PATH} 52 53 53 svn checkout ${REPO_ URI} ${WORK_PATH}54 svn checkout ${REPO_TRUNK} ${WORK_PATH} 54 55 else 55 56 svn update ${WORK_PATH}
Note: See TracChangeset
for help on using the changeset viewer.
