summaryrefslogtreecommitdiffstats
path: root/do
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-03-24 16:34:39 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-03-24 16:34:39 +0000
commit66065be0e68fdb1e20cef3f142e90efb1a1f5952 (patch)
tree01f7d6d6f5685f9feb4789cbd393841a25774c70 /do
parent4a98cbb6eecb52025e23ff85e05d87a46ec2bdf3 (diff)
downloadzabbix-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-xdo12
1 files changed, 11 insertions, 1 deletions
diff --git a/do b/do
index 9e236bd1..9feeb184 100755
--- a/do
+++ b/do
@@ -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"