Changeset 323
- Timestamp:
- 05/03/2009 16:25:09 (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 13 edited
-
Makefile.am (modified) (1 diff, 1 prop)
-
confadmin.8 (modified) (2 diffs, 1 prop)
-
confadmin.in (modified) (3 diffs, 1 prop)
-
confadmindoc.sh (added)
-
confaudit.8 (modified) (1 diff, 1 prop)
-
confexport.8 (modified) (1 diff, 1 prop)
-
configure.ac (modified) (1 prop)
-
confman.8.in (modified) (2 diffs, 1 prop)
-
confman.conf.5.in (modified) (1 diff, 1 prop)
-
confman.conf.in (modified) (1 diff)
-
confman.in (modified) (2 diffs)
-
confmancommon.sh.in (modified) (1 diff)
-
confmandoc.sh (modified) (1 diff)
-
confsync.8 (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
- Property svn:keywords set to Id
r322 r323 7 7 dist_pkglibexec_SCRIPTS = conflock abspath 8 8 pkgdata_SCRIPTS = confmancommon.sh 9 dist_pkgdata_SCRIPTS = confmanlib.sh confmandoc.sh 9 dist_pkgdata_SCRIPTS = confmanlib.sh confmandoc.sh confadmindoc.sh 10 10 sysconf_DATA = confman.conf.sample 11 11 sysconfdefaults_DATA = confman.conf -
trunk/confadmin.8
- Property svn:keywords set to Id
r316 r323 23 23 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 24 .\" 25 .\" $Id : confman 278 2009-01-18 03:33:03Z ccowart$25 .\" $Id$ 26 26 .\" 27 27 .Dd January 17, 2008 … … 33 33 .Sh SYNOPSIS 34 34 .Nm 35 .Op Fl h | -help |Cm help35 .Op Fl h | Cm help 36 36 .Nm 37 37 .Ar command -
trunk/confadmin.in
- Property svn:keywords set to Id
r315 r323 25 25 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 26 # 27 # $Id : confman.in 308 2009-01-27 07:01:40Z ccowart$27 # $Id$ 28 28 # 29 29 … … 32 32 else 33 33 echo "Can't find confmancommon.sh. Exiting." >&2 34 fi 35 36 # Source the documentation library 37 if [ -f $REPO_DOCS_CONFADMIN ] ; then 38 . $REPO_DOCS_CONFADMIN 39 else 40 echo "Couldn't source the confman shell documentation library" >&2 41 exit 1 34 42 fi 35 43 … … 55 63 56 64 # Debug mode? 57 while getopts " d" opt ; do65 while getopts "hd" opt ; do 58 66 case $opt in 59 d) 60 DEBUG="true" 61 shift 62 ;; 63 *) 64 print_help 1 65 ;; 67 d) DEBUG="true" ;; 68 h) shift ; print_help "$@" ; exit 0 ;; 69 *) print_usage 1 ;; 66 70 esac 67 71 done -
trunk/confaudit.8
- Property svn:keywords set to Id
r321 r323 23 23 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 24 .\" 25 .\" $Id : confman 278 2009-01-18 03:33:03Z ccowart$25 .\" $Id$ 26 26 .\" 27 27 .Dd January 17, 2008 -
trunk/confexport.8
- Property svn:keywords set to Id
r321 r323 23 23 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 24 .\" 25 .\" $Id : confman 278 2009-01-18 03:33:03Z ccowart$25 .\" $Id$ 26 26 .\" 27 27 .Dd January 17, 2008 -
trunk/configure.ac
- Property svn:keywords set to Id
-
trunk/confman.8.in
- Property svn:keywords set to Id
r320 r323 23 23 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 24 .\" 25 .\" $Id : confman 278 2009-01-18 03:33:03Z ccowart$25 .\" $Id$ 26 26 .\" 27 27 .Dd January 17, 2008 … … 33 33 .Sh SYNOPSIS 34 34 .Nm 35 .Op Fl h | -help |Cm help35 .Op Fl h | Cm help 36 36 .Nm 37 37 .Ar command Oo Ar command_opts Oc Op Ar command_args -
trunk/confman.conf.5.in
- Property svn:keywords set to Id
r307 r323 23 23 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 24 .\" 25 .\" $Id : confman 278 2009-01-18 03:33:03Z ccowart$25 .\" $Id$ 26 26 .\" 27 27 .Dd January 17, 2008 -
trunk/confman.conf.in
r317 r323 16 16 17 17 # The location of our shell's documentation library 18 REPO_DOCS="@pkgdatadir@/confmandoc.sh" 18 REPO_DOCS_CONFMAN="@pkgdatadir@/confmandoc.sh" 19 REPO_DOCS_CONFADMIN="@pkgdatadir@/confadmindoc.sh" 19 20 20 21 # The system lockfile -
trunk/confman.in
r319 r323 34 34 else 35 35 echo "Can't find confmancommon.sh. Exiting." >&2 36 fi 37 38 # Source the documentation library 39 if [ -f $REPO_DOCS_CONFMAN ] ; then 40 . $REPO_DOCS_CONFMAN 41 else 42 echo "Couldn't source the confman shell documentation library" >&2 43 exit 1 36 44 fi 37 45 … … 937 945 938 946 # Debug mode? 939 while getopts " d" opt ; do947 while getopts "hd-" opt ; do 940 948 case $opt in 941 d) 942 DEBUG="true" 943 shift 944 ;; 945 *) 946 print_help 1 947 ;; 949 d) DEBUG="true" ;; 950 h) shift ; print_help "$@" ; exit 0 ;; 951 *) print_usage 1 ;; 948 952 esac 949 953 done -
trunk/confmancommon.sh.in
r317 r323 140 140 fi 141 141 142 # And the documentation library143 if [ -f $REPO_DOCS ] ; then144 . $REPO_DOCS145 else146 echo "Couldn't source the confman shell documentation library" >&2147 exit 1148 fi149 150 142 # And we'll set a trap: 151 143 trap "conf_cleanExit" SIGINT SIGTERM SIGHUP -
trunk/confmandoc.sh
r313 r323 34 34 35 35 Usage: 36 $MYNAME [ help | -h | --help] [ command ]36 $MYNAME [ help | -h ] [ command ] 37 37 $MYNAME setup 38 38 $MYNAME update -
trunk/confsync.8
- Property svn:keywords set to Id
r321 r323 23 23 .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 24 .\" 25 .\" $Id : confman 278 2009-01-18 03:33:03Z ccowart$25 .\" $Id$ 26 26 .\" 27 27 .Dd January 17, 2008
Note: See TracChangeset
for help on using the changeset viewer.
