Magellan Linux

Diff of /alx-src/branches/alxconf-060/functions/config_printers.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 219 by niro, Tue Mar 8 20:42:05 2005 UTC revision 241 by niro, Tue Apr 12 20:54:19 2005 UTC
# Line 1  Line 1 
1    # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/functions/config_printers.sh,v 1.6 2005-04-12 20:54:13 niro Exp $
2  # configures printing on the host via mysql db settings  # configures printing on the host via mysql db settings
 # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/functions/config_printers.sh,v 1.2 2005-03-08 20:42:05 niro Exp $  
3    
4  get_printer_settings()  get_printer_settings()
5  {  {
# Line 42  get_printer_settings() Line 42  get_printer_settings()
42   done   done
43    
44   # DEBUG MSG   # DEBUG MSG
45   for (( i=0; i <= count; i++ ))  # for (( i=0; i <= count; i++ ))
46   do  # do
47   echo -n "${ALX_PRINTER_NAME[${i}]} "  # echo -n "${ALX_PRINTER_NAME[${i}]} "
48   echo -n "${ALX_PORT[${i}]} "  # echo -n "${ALX_PORT[${i}]} "
49   echo -n "${ALX_IP[${i}]} "  # echo -n "${ALX_IP[${i}]} "
50   echo "${ALX_SHARE[${i}]}"  # echo "${ALX_SHARE[${i}]}"
51   done  # done
52    
53   # export all settings   # export all settings
54   export ALX_COUNT=${count}   export ALX_COUNT=${count}
# Line 58  get_printer_settings() Line 58  get_printer_settings()
58   export ALX_SHARE   export ALX_SHARE
59  }  }
60    
61  config_printing()  config_printing_old()
62  {  {
63   local port   local port
64    
# Line 74  config_printing() Line 74  config_printing()
74   /etc/init.d/cups start &> /dev/null   /etc/init.d/cups start &> /dev/null
75    
76   # debug   # debug
77   echo "ALX_COUNT: ${ALX_COUNT}"  # echo "ALX_COUNT: ${ALX_COUNT}"
78    
79   for (( i=0; i < ALX_COUNT; i++ ))   for (( i=0; i < ALX_COUNT; i++ ))
80   do   do
81   # get real port settings   # get real port settings
# Line 101  config_printing() Line 102  config_printing()
102   done   done
103  }  }
104    
105  config_printing2()  config_printing()
106  {  {
107   local port   local port
108    
# Line 114  config_printing2() Line 115  config_printing2()
115   :> /etc/cups/printers.conf   :> /etc/cups/printers.conf
116    
117   # debug   # debug
118   echo "ALX_COUNT: ${ALX_COUNT}"  # echo "ALX_COUNT: ${ALX_COUNT}"
119    
120   for (( i=0; i < ALX_COUNT; i++ ))   for (( i=0; i < ALX_COUNT; i++ ))
121   do   do
122   # get real port settings   # get real port settings

Legend:
Removed from v.219  
changed lines
  Added in v.241