1 # ===================================================================== 2 # 000-csa: first rc.d/ configuration file. 3 # Copyright (c) 2006,2008 Carlo Strozzi 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; version 2 dated June, 1991. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 # 18 # ===================================================================== 19 20 # ===================================================================== 21 # Kick-start. 22 # ===================================================================== 23 24 # Do not set this variable, unless it is absolutely necessary to save 25 # processes. It will make program startup slower. 26 # CSA_MAXPROC = 10 27 28 # Bootstrap the application. Load local library, or default to the 29 # standard one if not available. 30 31 if (~ $CSA_ROOT/lib/csaMainlib.rc^* */csaMainlib.rc) { 32 . $CSA_ROOT/lib/csaMainlib.rc 33 } else . $CSA_INSTALL/lib/csaMainlib.rc 34 35 if (!~ $status 0) { 36 echo CSA Error: unable to load csaMainlib.rc >[1=2] 37 exit 1 38 } 39 40 CSA_STATUS = 0 # recommended to clear $status. 41 42 # ===================================================================== 43 # End of 000-csa 44 # =====================================================================