On Mon, 2006-07-10 at 18:09 +0530, Kaushal Shriyan wrote: > Hi > > I have a query here while booting linux we find on the screen someting like > > Starting sendmail .....................................[OK] > > Instead I want > > Starting sendmail .....................................[Success] > > so how do i do it and which file I need to edit > > Thanks and Regards > > Kaushal If it's -very- important to you, Run the following command: $ cd /etc/init.d $ patch -p0 < patch-file =========== function.patch START ============ --- functions.old 2006-07-10 15:47:16.000000000 +0300 +++ functions 2006-07-10 15:47:27.000000000 +0300 @@ -340,7 +340,7 @@ [ "$BOOTUP" = "color" ] && $MOVE_TO_COL echo -n "[" [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS - echo -n $" OK " + echo -n $" Success " [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL echo -n "]" echo -ne "\r" =========== function.patch END ============== Gilboa