Update of /cvsroot/netadm/gwc/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13557/scripts
Modified Files:
install.sh
Log Message:
ADD:
ADD: internal routine below in confproc.c, confproc.h
add_fc_svc
add_fc_net
add_fc_fw
add_fc_pol : definitly not
list_fc_svc
list_fc_net
list_fc_fw
list_fc_pol: not complete yet.
del_fc_svc
del_fc_net
del_fc_fw
del_fc_pol: definitly not
ADD: internal routine for utils to access shared memory in confutil.c confutil.h conftab.c
sys_ucmd_e
ucmdtab
sys_ucmd_msg ( sys_ucmd_e cmd, void *arg, int len ) : exported library.
MOD: rename object name in shared memory (sysshm.h)
ADD: Warning message during installation
this warning message will be existed until gtk GUI will be completed for gwc-v0.1-pre3.
GTK+ daemon will be improved by hyseok hwang <o2...@ho...>
gwc-v0.1-pre3 will be released until march. 15. 1006.
Index: install.sh
===================================================================
RCS file: /cvsroot/netadm/gwc/scripts/install.sh,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** install.sh 28 Feb 2006 00:52:07 -0000 1.12
--- install.sh 28 Feb 2006 23:41:50 -0000 1.13
***************
*** 68,71 ****
--- 68,91 ----
}
+ warning() {
+ local msg=$(xmsg "
+ %s
+
+ cvs-version %s
+
+ WARNING! WARNING!
+
+ This version is CVS temporary version
+
+ You Can't use full functionalities of gwc
+
+ Flow control will not operatate until releasing gwc-v0.1-pre3.
+
+ 2006. 03. 01. jeho Park <lin...@ga...>
+ " ${PROD} ${VERSION})
+
+
+ $DIALOG --msgbox "$msg" 20 75 || acex 0
+ }
intro() {
***************
*** 511,514 ****
--- 531,536 ----
fi
+ warning
+ warning
intro
trap abort_install 1 2 6 12 15
|