diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-03-24 16:34:39 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-03-24 16:34:39 +0000 |
| commit | 66065be0e68fdb1e20cef3f142e90efb1a1f5952 (patch) | |
| tree | 01f7d6d6f5685f9feb4789cbd393841a25774c70 /do | |
| parent | 4a98cbb6eecb52025e23ff85e05d87a46ec2bdf3 (diff) | |
| download | zabbix-66065be0e68fdb1e20cef3f142e90efb1a1f5952.tar.gz zabbix-66065be0e68fdb1e20cef3f142e90efb1a1f5952.tar.xz zabbix-66065be0e68fdb1e20cef3f142e90efb1a1f5952.zip | |
- added "EnableRemoteCommands" option in to configuration file (Eugene)
- BY DEFAULT REMOTE COMMANDS DISABLED
git-svn-id: svn://svn.zabbix.com/trunk@2710 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'do')
| -rwxr-xr-x | do | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,5 +1,12 @@ #!/bin/sh +# +# Description: +# ZABBIX compilateion script +# Author: +# Eugene Grigorjev +# + premake="no" copy="no" tgz="no" @@ -11,6 +18,7 @@ cleanwarnings="no" docat="yes" help="no" noparam=0; +def="--with-ldap --enable-agent --enable-server --with-mysql --with-net-snmp" for cmd do @@ -27,7 +35,7 @@ do tar ) tgz="yes"; noparam=1;; nocat ) docat="no"; noparam=1;; cat ) docat="yes"; noparam=1;; - def ) config_param="$config_param --with-ldap --enable-agent --enable-server --with-mysql --with-net-snmp";; + def ) config_param="$config_param $def";; --enable-* ) config_param="$config_param $cmd";; --with-* ) config_param="$config_param $cmd";; --prefix=* ) config_param="$config_param $cmd";; @@ -44,6 +52,8 @@ then echo "Usage:" echo " $0 [copy|cpy] [premake|pre] [configure|config|conf] [def] [make] [test] [tar] [cat] [nocat] [--enable-*] [--with-*]" echo + echo " def = $def" + echo echo "Examples:" echo " $0 conf def make test - compyle, test, and sow report" echo " $0 cpy tar nocat - make archive .tar.gz and don't show report" |
