Changeset 388
- Timestamp:
- 07/04/2009 17:22:09 (3 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
Makefile.am (modified) (2 diffs, 1 prop)
-
configure.ac (modified) (1 prop)
-
confman.8.in (modified) (1 diff)
-
confman.in (modified) (2 diffs)
-
confmanlib.sh.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
- Property svn:keywords changed from Id to Id Revision
r378 r388 1 1 BASH = @BASH_SHELL@ 2 3 VERSION += ($$Rev$$) 2 4 3 5 bashcompdir = $(sysconfdir)/bash_completion.d … … 53 55 -e 's,[@]SUDO[@],$(SUDO),g' \ 54 56 -e 's,[@]SVN[@],$(SVN),g' \ 55 -e 's,[@]GREADLINK[@],$(GREADLINK),g' 57 -e 's,[@]GREADLINK[@],$(GREADLINK),g' \ 58 -e 's,[@]VERSION[@],$(VERSION),g' 56 59 57 60 confman: confman.in Makefile -
trunk/configure.ac
- Property svn:keywords changed from Id to Id Revision
-
trunk/confman.8.in
r332 r388 34 34 .Nm 35 35 .Op Fl h | Cm help 36 .Op Fl v | Cm version 36 37 .Nm 37 38 .Ar command Oo Ar command_opts Oc Op Ar command_args -
trunk/confman.in
r387 r388 975 975 } 976 976 977 function print_version { 978 echo "confman-${VERSION}" 979 } 980 977 981 # Debug mode? 978 while getopts "hd -" opt ; do982 while getopts "hdv-" opt ; do 979 983 case $opt in 980 984 d) DEBUG="true" ; shift ;; 981 985 h) shift ; print_help "$@" ; exit 0 ;; 986 v) print_version ; exit 0 ;; 982 987 *) print_usage 1 ;; 983 988 esac … … 991 996 case $subcommand in 992 997 help ) print_help "$@" ; trap EXIT; exit 0 ;; 998 version ) print_version; trap EXIT; exit 0;; 993 999 setup|se* ) setup "$@" ;; 994 1000 status ) status "$@" ;; -
trunk/confmanlib.sh.in
r387 r388 32 32 WCOPY_DIRTY="false" 33 33 34 VERSION= "1.9.a"34 VERSION='@VERSION@' 35 35 REPO_VERSION="2" 36 36
Note: See TracChangeset
for help on using the changeset viewer.
