Custom Query (431 matches)
Results (121 - 123 of 431)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1363 | fixed | RHEL5 rpm package | Dave Love <d.love@…> | Florian.LaRoche@… |
Description |
The following change was neccessary to compile 8.0.0c for RHEL5, as the default compiler will not understand -Wno-all. best regards, Florian La Roche --- sge-8.0.0c/source/aimk +++ sge-8.0.0c/source/aimk @@ -2522,9 +2522,6 @@ if ( "$MAKEJEMALLOCLIB" == 1 ) then
|
|||
#1362 | fixed | inst_template.conf | Florian.LaRoche@… | |
Description |
Hello, it would be convenient to have an inst_template.conf file with good defaults installed. As this would put in very Linx/Red? Hat-centric entries, maybe this should just be added to the default source rpm as a separate patch, then the SGE defaults could stay more neutral. best regards, Florian La Roche diff --git a/source/dist/util/install_modules/inst_template.conf b/source/dist/util/install_modules/inst_template.conf index 5bee087..b6d933f 100644 --- a/source/dist/util/install_modules/inst_template.conf +++ b/source/dist/util/install_modules/inst_template.conf @@ -6,19 +6,19 @@
-SGE_ROOT="Please enter path" +SGE_ROOT="/opt/sge"
-SGE_QMASTER_PORT=6444 +SGE_QMASTER_PORT="6444"
-SGE_EXECD_PORT=6445 +SGE_EXECD_PORT="6445"
@@ -26,7 +26,7 @@ SGE_ENABLE_SMF="false"
-SGE_CLUSTER_NAME="Please enter cluster name" +SGE_CLUSTER_NAME="p6444"
@@ -73,11 +73,11 @@ CELL_NAME="default"
-ADMIN_USER="" +ADMIN_USER="root"
-QMASTER_SPOOL_DIR="Please, enter spooldir" +QMASTER_SPOOL_DIR="/opt/sge/default/spool/qmaster"
@@ -85,7 +85,7 @@ QMASTER_SPOOL_DIR="Please, enter spooldir"
-EXECD_SPOOL_DIR="Please, enter spooldir" +EXECD_SPOOL_DIR="/opt/sge/default/spool"
@@ -93,7 +93,7 @@ EXECD_SPOOL_DIR="Please, enter spooldir"
-GID_RANGE="Please, enter GID range" +GID_RANGE="20000-20100"
@@ -124,27 +124,27 @@ PAR_EXECD_INST_COUNT="20"
-ADMIN_HOST_LIST="host1 host2 host3 host4" +ADMIN_HOST_LIST=""
-SUBMIT_HOST_LIST="host1 host2 host3 host4" +SUBMIT_HOST_LIST=""
-EXEC_HOST_LIST="host1 host2 host3 host4" +EXEC_HOST_LIST=""
-EXECD_SPOOL_DIR_LOCAL="Please, enter spooldir" +EXECD_SPOOL_DIR_LOCAL=""
@@ -167,11 +167,11 @@ COPY_COMMAND="scp"
-ADMIN_MAIL="none" +ADMIN_MAIL="root"
-ADD_TO_RC="false" +ADD_TO_RC="true"
@@ -181,7 +181,7 @@ SET_FILE_PERMS="true"
-# Enter a one of the three distributed scheduler tuning configuration sets +# Enter one of the three distributed scheduler tuning configuration sets
@@ -191,16 +191,16 @@ SCHEDD_CONF="1"
-# Remove this execution hosts in automatic mode +# Remove these execution hosts in automatic mode
-EXEC_HOST_LIST_RM="host1 host2 host3 host4" +EXEC_HOST_LIST_RM=""
-REMOVE_RC="false" +REMOVE_RC="true"
|
|||
#1361 | fixed | mini change to correctly line up the default config file | Dave Love <d.love@…> | Florian.LaRoche@… |
Description |
Hello SGE developers, here a change to make sure the default written config file is aligned properly from the number of spaces in it. So pure cosmetic... best regards, Florian La Roche --- a/source/dist/util/install_modules/inst_qmaster.sh +++ b/source/dist/util/install_modules/inst_qmaster.sh @@ -716,9 +716,9 @@ PrintBootstrap?()
+ $ECHO "admin_user $ADMINUSER"
+ $ECHO "admin_user none"
|