00001
00002
00003
00004
00005
00006
00007 #ifndef __RC_MISC_H__
00008 #define __RC_MISC_H__
00009
00010 #ifndef LIB
00011 # define LIB "lib"
00012 #endif
00013
00014 #define RC_LEVEL_BOOT "boot"
00015 #define RC_LEVEL_DEFAULT "default"
00016
00017 #define RC_LIBDIR "/" LIB "/rc"
00018 #define RC_SVCDIR RC_LIBDIR "/init.d"
00019 #define RC_DEPTREE RC_SVCDIR "/deptree"
00020 #define RC_RUNLEVELDIR "/etc/runlevels"
00021 #define RC_INITDIR "/etc/init.d"
00022 #define RC_CONFDIR "/etc/conf.d"
00023
00024 #define RC_KSOFTLEVEL RC_SVCDIR "/ksoftlevel"
00025 #define RC_STARTING RC_SVCDIR "/softscripts.new"
00026 #define RC_STOPPING RC_SVCDIR "/softscripts.old"
00027
00028 #define RC_SVCDIR_STARTING RC_SVCDIR "/starting"
00029 #define RC_SVCDIR_INACTIVE RC_SVCDIR "/inactive"
00030 #define RC_SVCDIR_STARTED RC_SVCDIR "/started"
00031 #define RC_SVCDIR_COLDPLUGGED RC_SVCDIR "/coldplugged"
00032
00033 #define RC_PLUGINDIR RC_LIBDIR "/plugins"
00034
00035
00036 #define RC_LINEBUFFER 4096
00037
00038
00039 #define RC_NET_FS_LIST_DEFAULT "afs cifs coda davfs fuse gfs ncpfs nfs nfs4 ocfs2 shfs smbfs"
00040
00041 #endif