- Timestamp:
- 05/06/2009 13:15:58 (3 years ago)
- Location:
- branches/confman-1.9
- Files:
-
- 3 deleted
- 9 edited
- 3 copied
-
. (modified) (1 prop)
-
Makefile.am (modified) (3 diffs)
-
abspath (deleted)
-
abspath.in (copied) (copied from trunk/abspath.in)
-
confadmin.in (modified) (3 diffs)
-
confaudit.in (modified) (1 diff)
-
confexport.in (modified) (1 diff)
-
conflock (deleted)
-
conflock.in (copied) (copied from trunk/conflock.in)
-
confman.in (modified) (3 diffs)
-
confman_completion.in (modified) (1 diff)
-
confmancommon.sh.in (modified) (1 diff)
-
confmanlib.sh (deleted)
-
confmanlib.sh.in (copied) (copied from trunk/confmanlib.sh.in)
-
confsync.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/confman-1.9
-
branches/confman-1.9/Makefile.am
r324 r326 47 47 -e 's,[@]sbindir[@],$(sbindir),g' \ 48 48 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \ 49 -e 's,[@]sysconfdefaultsdir[@],$(sysconfdefaultsdir),g' 49 -e 's,[@]sysconfdefaultsdir[@],$(sysconfdefaultsdir),g' \ 50 -e 's,[@]BASH[@],$(BASH),g' \ 51 -e 's,[@]SUDO[@],$(SUDO),g' \ 52 -e 's,[@]SVN[@],$(SVN),g' 50 53 51 54 confman: confman.in Makefile … … 61 64 chmod +x confexport 62 65 66 conflock: conflock.in Makefile 67 $(do_subst) < conflock.in > conflock 68 chmod +x conflock 69 63 70 confsync: confsync.in Makefile 64 71 $(do_subst) < confsync.in > confsync … … 68 75 $(do_subst) < confaudit.in > confaudit 69 76 chmod +x confaudit 77 78 abspath: abspath.in Makefile 79 $(do_subst) < abspath.in > abspath 80 chmod +x abspath 81 82 confmanlib.sh: confmanlib.sh.in Makefile 83 $(do_subst) < confmanlib.sh.in > confmanlib.sh 70 84 71 85 confmancommon.sh: confmancommon.sh.in Makefile -
branches/confman-1.9/confadmin.in
r324 r326 1 #! /usr/bin/env bash1 #!@BASH@ 2 2 # 3 3 # Copyright (c) 2008, Christopher Cowart and contributors … … 52 52 local dir dirs 53 53 local msg="Initial confman directory setup." 54 if svnls "${REPO_URI}/trunk/checkpoints" >/dev/null 2>&1 ; then54 if @SVN@ ls "${REPO_URI}/trunk/checkpoints" >/dev/null 2>&1 ; then 55 55 echo "It looks like this repository has already been setup." >&2 56 56 exit 1 … … 59 59 dirs="${dirs} ${REPO_URI}/${dir}" 60 60 done 61 svnmkdir -m "$msg" ${dirs}61 @SVN@ mkdir -m "$msg" ${dirs} 62 62 } 63 63 -
branches/confman-1.9/confaudit.in
r324 r326 1 #! /usr/bin/env bash1 #!@BASH@ 2 2 # 3 3 # Copyright (c) 2008, Christopher Cowart and contributors -
branches/confman-1.9/confexport.in
r324 r326 1 #! /usr/bin/env bash1 #!@BASH@ 2 2 # 3 3 # Copyright (c) 2008, Christopher Cowart and contributors -
branches/confman-1.9/confman.in
r324 r326 1 #! /usr/bin/env bash1 #!@BASH@ 2 2 # 3 3 # Copyright (c) 2008, Christopher Cowart and contributors … … 131 131 cat $LOG_TEMPLATE > $msg 132 132 printf "\n${ignoreline}\n" >> $msg 133 conf_get_recipe | tr ' ' '\n' | xargs -I % svnstatus \133 conf_get_recipe | tr ' ' '\n' | xargs -I % @SVN@ status \ 134 134 ${WORK_PATH}/% >> $status 135 135 cat $status >> $msg … … 199 199 files="$files $file" 200 200 done 201 svnstatus $files >> $status201 @SVN@ status $files >> $status 202 202 cat $status >> $msg 203 203 cp $msg $orig_msg -
branches/confman-1.9/confman_completion.in
r302 r326 1 #! /bin/bash1 #!@BASH@ 2 2 # 3 3 # Copyright (c) 2008, Christopher Cowart and contributors -
branches/confman-1.9/confmancommon.sh.in
r324 r326 35 35 TMPFILES="" 36 36 if [ `id -u` != "0" ]; then 37 SUDO= sudo37 SUDO="@SUDO@" 38 38 fi 39 39 -
branches/confman-1.9/confsync.in
r324 r326 1 #! /usr/bin/env bash1 #!@BASH@ 2 2 # 3 3 # Copyright (c) 2008, Christopher Cowart and contributors
Note: See TracChangeset
for help on using the changeset viewer.
