# Procedure bootcmd returns the defaut application that reads and
# employes the configuration generated in router.quagga.cfggen.
# In this case (procedure router.quagga.bootcmd) specific application
-# is quaggaboot.sh (in ROOTDIR/LIBDIR folder)
+# is quaggaboot.sh
# INPUTS
# * node_id - id of the node (type of the node is router and
# routing model is quagga)
#****
proc $MODULE.bootcmd { node } {
- global ROOTDIR LIBDIR
- if { $ROOTDIR == "." && $LIBDIR == "" } {
- ;# on remote GUI / PC:
- return "/usr/local/bin/quaggaboot.sh"
- } else {
- return "$ROOTDIR/$LIBDIR/quaggaboot.sh"
- }
+ return "/usr/local/bin/quaggaboot.sh"
}
#****f* quagga.tcl/router.quagga.shellcmd