Changeset 326


Ignore:
Timestamp:
05/06/2009 13:15:58 (3 years ago)
Author:
ccowart
Message:

Merged path changes into 1.9 branch.

Location:
branches/confman-1.9
Files:
3 deleted
9 edited
3 copied

Legend:

Unmodified
Added
Removed
  • branches/confman-1.9

  • branches/confman-1.9/Makefile.am

    r324 r326  
    4747                -e 's,[@]sbindir[@],$(sbindir),g' \ 
    4848                -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' 
    5053 
    5154confman: confman.in Makefile 
     
    6164        chmod +x confexport 
    6265 
     66conflock: conflock.in Makefile 
     67        $(do_subst) < conflock.in > conflock 
     68        chmod +x conflock 
     69 
    6370confsync: confsync.in Makefile 
    6471        $(do_subst) < confsync.in > confsync 
     
    6875        $(do_subst) < confaudit.in > confaudit 
    6976        chmod +x confaudit 
     77 
     78abspath: abspath.in Makefile 
     79        $(do_subst) < abspath.in > abspath 
     80        chmod +x abspath 
     81 
     82confmanlib.sh: confmanlib.sh.in Makefile 
     83        $(do_subst) < confmanlib.sh.in > confmanlib.sh 
    7084 
    7185confmancommon.sh: confmancommon.sh.in Makefile 
  • branches/confman-1.9/confadmin.in

    r324 r326  
    1 #! /usr/bin/env bash 
     1#!@BASH@ 
    22# 
    33# Copyright (c) 2008, Christopher Cowart and contributors 
     
    5252    local dir dirs 
    5353    local msg="Initial confman directory setup."  
    54     if svn ls "${REPO_URI}/trunk/checkpoints" >/dev/null 2>&1 ; then 
     54    if @SVN@ ls "${REPO_URI}/trunk/checkpoints" >/dev/null 2>&1 ; then 
    5555        echo "It looks like this repository has already been setup." >&2 
    5656        exit 1 
     
    5959        dirs="${dirs} ${REPO_URI}/${dir}" 
    6060    done 
    61     svn mkdir -m "$msg" ${dirs} 
     61    @SVN@ mkdir -m "$msg" ${dirs} 
    6262} 
    6363 
  • branches/confman-1.9/confaudit.in

    r324 r326  
    1 #! /usr/bin/env bash 
     1#!@BASH@ 
    22# 
    33# Copyright (c) 2008, Christopher Cowart and contributors 
  • branches/confman-1.9/confexport.in

    r324 r326  
    1 #! /usr/bin/env bash 
     1#!@BASH@ 
    22# 
    33# Copyright (c) 2008, Christopher Cowart and contributors 
  • branches/confman-1.9/confman.in

    r324 r326  
    1 #! /usr/bin/env bash 
     1#!@BASH@ 
    22# 
    33# Copyright (c) 2008, Christopher Cowart and contributors 
     
    131131        cat $LOG_TEMPLATE > $msg 
    132132        printf "\n${ignoreline}\n" >> $msg 
    133         conf_get_recipe | tr ' ' '\n' | xargs -I % svn status \ 
     133        conf_get_recipe | tr ' ' '\n' | xargs -I % @SVN@ status \ 
    134134            ${WORK_PATH}/% >> $status 
    135135                cat $status >> $msg 
     
    199199            files="$files $file" 
    200200        done 
    201         svn status $files >> $status 
     201        @SVN@ status $files >> $status 
    202202        cat $status >> $msg 
    203203        cp $msg $orig_msg 
  • branches/confman-1.9/confman_completion.in

    r302 r326  
    1 #!/bin/bash 
     1#!@BASH@ 
    22# 
    33# Copyright (c) 2008, Christopher Cowart and contributors 
  • branches/confman-1.9/confmancommon.sh.in

    r324 r326  
    3535TMPFILES="" 
    3636if [ `id -u` != "0" ]; then 
    37     SUDO=sudo 
     37    SUDO="@SUDO@" 
    3838fi 
    3939 
  • branches/confman-1.9/confsync.in

    r324 r326  
    1 #! /usr/bin/env bash 
     1#!@BASH@ 
    22# 
    33# Copyright (c) 2008, Christopher Cowart and contributors 
Note: See TracChangeset for help on using the changeset viewer.