Changing the color and text of the status message seen when starting and stopping a service in RHEL 6.4?Web navigation with dark color schemesHow to change font colors in terminal?How to run ipython notebook as a serviceStop function in init.d file doesn't workchanging prompt color in bash in konsoleWhat are the alternatives for starting and stopping an openvpn configuration on Debian Jessie?Restarting a service on Red Hat and where are the services listedColor Variables on figlet!Can't start the SSH service in CentOS V6.9init.d script for starting a service in Ubuntu 16.04:

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

New order #4: World

Shell script can be run only with sh command

Why Is Death Allowed In the Matrix?

If Manufacturer spice model and Datasheet give different values which should I use?

Why are only specific transaction types accepted into the mempool?

Can I make popcorn with any corn?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Why is this code 6.5x slower with optimizations enabled?

How to report a triplet of septets in NMR tabulation?

What makes Graph invariants so useful/important?

A function which translates a sentence to title-case

Is it possible to make sharp wind that can cut stuff from afar?

What typically incentivizes a professor to change jobs to a lower ranking university?

How can I fix this gap between bookcases I made?

Prevent a directory in /tmp from being deleted

How do I create uniquely male characters?

Are tax years 2016 & 2017 back taxes deductible for tax year 2018?

How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?

Chess with symmetric move-square

Possibly bubble sort algorithm

Email Account under attack (really) - anything I can do?

What Brexit solution does the DUP want?

Could a US political party gain complete control over the government by removing checks & balances?



Changing the color and text of the status message seen when starting and stopping a service in RHEL 6.4?


Web navigation with dark color schemesHow to change font colors in terminal?How to run ipython notebook as a serviceStop function in init.d file doesn't workchanging prompt color in bash in konsoleWhat are the alternatives for starting and stopping an openvpn configuration on Debian Jessie?Restarting a service on Red Hat and where are the services listedColor Variables on figlet!Can't start the SSH service in CentOS V6.9init.d script for starting a service in Ubuntu 16.04:






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















How to change the color and text of the message while you start or stop a service?



**enter image description here**










share|improve this question
























  • it may vary depending on OS and/or initialization system (sys V init vs systemd ). Consider narrowing your query by specifying your OS and version

    – Tagwint
    Mar 27 at 13:53

















1















How to change the color and text of the message while you start or stop a service?



**enter image description here**










share|improve this question
























  • it may vary depending on OS and/or initialization system (sys V init vs systemd ). Consider narrowing your query by specifying your OS and version

    – Tagwint
    Mar 27 at 13:53













1












1








1








How to change the color and text of the message while you start or stop a service?



**enter image description here**










share|improve this question
















How to change the color and text of the message while you start or stop a service?



**enter image description here**







rhel colors services






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 16:09









Jeff Schaller

44.7k1163145




44.7k1163145










asked Mar 27 at 13:23









Saif ShaikhSaif Shaikh

112




112












  • it may vary depending on OS and/or initialization system (sys V init vs systemd ). Consider narrowing your query by specifying your OS and version

    – Tagwint
    Mar 27 at 13:53

















  • it may vary depending on OS and/or initialization system (sys V init vs systemd ). Consider narrowing your query by specifying your OS and version

    – Tagwint
    Mar 27 at 13:53
















it may vary depending on OS and/or initialization system (sys V init vs systemd ). Consider narrowing your query by specifying your OS and version

– Tagwint
Mar 27 at 13:53





it may vary depending on OS and/or initialization system (sys V init vs systemd ). Consider narrowing your query by specifying your OS and version

– Tagwint
Mar 27 at 13:53










2 Answers
2






active

oldest

votes


















0














For CentOS 6.10 the following file contains the color configuration for SETCOLOR_SUCCESS, SETCOLOR_FAILURE, ...



/etc/sysconfig/init


Example:



# color => new RH6.0 bootup
# verbose => old-style bootup
# anything else => new style bootup without ANSI colors or positioning
BOOTUP=color
# column to start "[ OK ]" label in
RES_COL=60
# terminal sequence to move to that column. You could change this
# to something like "tput hpa $RES_COL" if your terminal supports it
MOVE_TO_COL="echo -en \033[$RES_COLG"
# terminal sequence to set color to a 'success' color (currently: green)
SETCOLOR_SUCCESS="echo -en \033[0;32m"
# terminal sequence to set color to a 'failure' color (currently: red)
SETCOLOR_FAILURE="echo -en \033[0;31m"
# terminal sequence to set color to a 'warning' color (currently: yellow)
SETCOLOR_WARNING="echo -en \033[0;33m"
# terminal sequence to reset to the default color.
SETCOLOR_NORMAL="echo -en \033[0;39m"


Maybe you can use the information and names to find the correct files on your system :)






share|improve this answer






























    0














    These definitions are in /etc/init.d/functions.



    That script attempts to source in /etc/sysconfig/init, which contains the pertinent color definitions:



    SETCOLOR_SUCCESS="echo -en \033[0;32m"
    SETCOLOR_FAILURE="echo -en \033[0;31m"
    SETCOLOR_WARNING="echo -en \033[0;33m"
    SETCOLOR_NORMAL="echo -en \033[0;39m"


    ... while the original /etc/init.d/functions file defines functions for the various status messages, for example:



    echo_success() 
    [ "$BOOTUP" = "color" ] && $MOVE_TO_COL
    echo -n "["
    [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
    echo -n $" OK "
    [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
    echo -n "]"
    echo -ne "r"
    return 0



    ... so if you wanted to emit something instead of OK, you'd edit that echo statement, and if you wanted to change the colors, you'd edit the corresponding definitions in /etc/sysconfig/init; if you do not have that file, note that the functions script will define the colors itself (in the else clause where it tests for the existence of the init file).






    share|improve this answer























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "106"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508984%2fchanging-the-color-and-text-of-the-status-message-seen-when-starting-and-stoppin%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      For CentOS 6.10 the following file contains the color configuration for SETCOLOR_SUCCESS, SETCOLOR_FAILURE, ...



      /etc/sysconfig/init


      Example:



      # color => new RH6.0 bootup
      # verbose => old-style bootup
      # anything else => new style bootup without ANSI colors or positioning
      BOOTUP=color
      # column to start "[ OK ]" label in
      RES_COL=60
      # terminal sequence to move to that column. You could change this
      # to something like "tput hpa $RES_COL" if your terminal supports it
      MOVE_TO_COL="echo -en \033[$RES_COLG"
      # terminal sequence to set color to a 'success' color (currently: green)
      SETCOLOR_SUCCESS="echo -en \033[0;32m"
      # terminal sequence to set color to a 'failure' color (currently: red)
      SETCOLOR_FAILURE="echo -en \033[0;31m"
      # terminal sequence to set color to a 'warning' color (currently: yellow)
      SETCOLOR_WARNING="echo -en \033[0;33m"
      # terminal sequence to reset to the default color.
      SETCOLOR_NORMAL="echo -en \033[0;39m"


      Maybe you can use the information and names to find the correct files on your system :)






      share|improve this answer



























        0














        For CentOS 6.10 the following file contains the color configuration for SETCOLOR_SUCCESS, SETCOLOR_FAILURE, ...



        /etc/sysconfig/init


        Example:



        # color => new RH6.0 bootup
        # verbose => old-style bootup
        # anything else => new style bootup without ANSI colors or positioning
        BOOTUP=color
        # column to start "[ OK ]" label in
        RES_COL=60
        # terminal sequence to move to that column. You could change this
        # to something like "tput hpa $RES_COL" if your terminal supports it
        MOVE_TO_COL="echo -en \033[$RES_COLG"
        # terminal sequence to set color to a 'success' color (currently: green)
        SETCOLOR_SUCCESS="echo -en \033[0;32m"
        # terminal sequence to set color to a 'failure' color (currently: red)
        SETCOLOR_FAILURE="echo -en \033[0;31m"
        # terminal sequence to set color to a 'warning' color (currently: yellow)
        SETCOLOR_WARNING="echo -en \033[0;33m"
        # terminal sequence to reset to the default color.
        SETCOLOR_NORMAL="echo -en \033[0;39m"


        Maybe you can use the information and names to find the correct files on your system :)






        share|improve this answer

























          0












          0








          0







          For CentOS 6.10 the following file contains the color configuration for SETCOLOR_SUCCESS, SETCOLOR_FAILURE, ...



          /etc/sysconfig/init


          Example:



          # color => new RH6.0 bootup
          # verbose => old-style bootup
          # anything else => new style bootup without ANSI colors or positioning
          BOOTUP=color
          # column to start "[ OK ]" label in
          RES_COL=60
          # terminal sequence to move to that column. You could change this
          # to something like "tput hpa $RES_COL" if your terminal supports it
          MOVE_TO_COL="echo -en \033[$RES_COLG"
          # terminal sequence to set color to a 'success' color (currently: green)
          SETCOLOR_SUCCESS="echo -en \033[0;32m"
          # terminal sequence to set color to a 'failure' color (currently: red)
          SETCOLOR_FAILURE="echo -en \033[0;31m"
          # terminal sequence to set color to a 'warning' color (currently: yellow)
          SETCOLOR_WARNING="echo -en \033[0;33m"
          # terminal sequence to reset to the default color.
          SETCOLOR_NORMAL="echo -en \033[0;39m"


          Maybe you can use the information and names to find the correct files on your system :)






          share|improve this answer













          For CentOS 6.10 the following file contains the color configuration for SETCOLOR_SUCCESS, SETCOLOR_FAILURE, ...



          /etc/sysconfig/init


          Example:



          # color => new RH6.0 bootup
          # verbose => old-style bootup
          # anything else => new style bootup without ANSI colors or positioning
          BOOTUP=color
          # column to start "[ OK ]" label in
          RES_COL=60
          # terminal sequence to move to that column. You could change this
          # to something like "tput hpa $RES_COL" if your terminal supports it
          MOVE_TO_COL="echo -en \033[$RES_COLG"
          # terminal sequence to set color to a 'success' color (currently: green)
          SETCOLOR_SUCCESS="echo -en \033[0;32m"
          # terminal sequence to set color to a 'failure' color (currently: red)
          SETCOLOR_FAILURE="echo -en \033[0;31m"
          # terminal sequence to set color to a 'warning' color (currently: yellow)
          SETCOLOR_WARNING="echo -en \033[0;33m"
          # terminal sequence to reset to the default color.
          SETCOLOR_NORMAL="echo -en \033[0;39m"


          Maybe you can use the information and names to find the correct files on your system :)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 27 at 16:02









          MarvinMarvin

          19116




          19116























              0














              These definitions are in /etc/init.d/functions.



              That script attempts to source in /etc/sysconfig/init, which contains the pertinent color definitions:



              SETCOLOR_SUCCESS="echo -en \033[0;32m"
              SETCOLOR_FAILURE="echo -en \033[0;31m"
              SETCOLOR_WARNING="echo -en \033[0;33m"
              SETCOLOR_NORMAL="echo -en \033[0;39m"


              ... while the original /etc/init.d/functions file defines functions for the various status messages, for example:



              echo_success() 
              [ "$BOOTUP" = "color" ] && $MOVE_TO_COL
              echo -n "["
              [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
              echo -n $" OK "
              [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
              echo -n "]"
              echo -ne "r"
              return 0



              ... so if you wanted to emit something instead of OK, you'd edit that echo statement, and if you wanted to change the colors, you'd edit the corresponding definitions in /etc/sysconfig/init; if you do not have that file, note that the functions script will define the colors itself (in the else clause where it tests for the existence of the init file).






              share|improve this answer



























                0














                These definitions are in /etc/init.d/functions.



                That script attempts to source in /etc/sysconfig/init, which contains the pertinent color definitions:



                SETCOLOR_SUCCESS="echo -en \033[0;32m"
                SETCOLOR_FAILURE="echo -en \033[0;31m"
                SETCOLOR_WARNING="echo -en \033[0;33m"
                SETCOLOR_NORMAL="echo -en \033[0;39m"


                ... while the original /etc/init.d/functions file defines functions for the various status messages, for example:



                echo_success() 
                [ "$BOOTUP" = "color" ] && $MOVE_TO_COL
                echo -n "["
                [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
                echo -n $" OK "
                [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
                echo -n "]"
                echo -ne "r"
                return 0



                ... so if you wanted to emit something instead of OK, you'd edit that echo statement, and if you wanted to change the colors, you'd edit the corresponding definitions in /etc/sysconfig/init; if you do not have that file, note that the functions script will define the colors itself (in the else clause where it tests for the existence of the init file).






                share|improve this answer

























                  0












                  0








                  0







                  These definitions are in /etc/init.d/functions.



                  That script attempts to source in /etc/sysconfig/init, which contains the pertinent color definitions:



                  SETCOLOR_SUCCESS="echo -en \033[0;32m"
                  SETCOLOR_FAILURE="echo -en \033[0;31m"
                  SETCOLOR_WARNING="echo -en \033[0;33m"
                  SETCOLOR_NORMAL="echo -en \033[0;39m"


                  ... while the original /etc/init.d/functions file defines functions for the various status messages, for example:



                  echo_success() 
                  [ "$BOOTUP" = "color" ] && $MOVE_TO_COL
                  echo -n "["
                  [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
                  echo -n $" OK "
                  [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
                  echo -n "]"
                  echo -ne "r"
                  return 0



                  ... so if you wanted to emit something instead of OK, you'd edit that echo statement, and if you wanted to change the colors, you'd edit the corresponding definitions in /etc/sysconfig/init; if you do not have that file, note that the functions script will define the colors itself (in the else clause where it tests for the existence of the init file).






                  share|improve this answer













                  These definitions are in /etc/init.d/functions.



                  That script attempts to source in /etc/sysconfig/init, which contains the pertinent color definitions:



                  SETCOLOR_SUCCESS="echo -en \033[0;32m"
                  SETCOLOR_FAILURE="echo -en \033[0;31m"
                  SETCOLOR_WARNING="echo -en \033[0;33m"
                  SETCOLOR_NORMAL="echo -en \033[0;39m"


                  ... while the original /etc/init.d/functions file defines functions for the various status messages, for example:



                  echo_success() 
                  [ "$BOOTUP" = "color" ] && $MOVE_TO_COL
                  echo -n "["
                  [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
                  echo -n $" OK "
                  [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL
                  echo -n "]"
                  echo -ne "r"
                  return 0



                  ... so if you wanted to emit something instead of OK, you'd edit that echo statement, and if you wanted to change the colors, you'd edit the corresponding definitions in /etc/sysconfig/init; if you do not have that file, note that the functions script will define the colors itself (in the else clause where it tests for the existence of the init file).







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 27 at 16:08









                  Jeff SchallerJeff Schaller

                  44.7k1163145




                  44.7k1163145



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Unix & Linux Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508984%2fchanging-the-color-and-text-of-the-status-message-seen-when-starting-and-stoppin%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      -colors, rhel, services

                      Popular posts from this blog

                      Creating 100m^2 grid automatically using QGIS?Creating grid constrained within polygon in QGIS?Createing polygon layer from point data using QGIS?Creating vector grid using QGIS?Creating grid polygons from coordinates using R or PythonCreating grid from spatio temporal point data?Creating fields in attributes table using other layers using QGISCreate .shp vector grid in QGISQGIS Creating 4km point grid within polygonsCreate a vector grid over a raster layerVector Grid Creates just one grid

                      Nikolai Prilezhaev Bibliography References External links Navigation menuEarly Russian Organic Chemists and Their Legacy092774english translationRussian Biography

                      How to link a C library to an Assembly library on Mac with clangHow do you set, clear, and toggle a single bit?Find (and kill) process locking port 3000 on MacWho is listening on a given TCP port on Mac OS X?How to start PostgreSQL server on Mac OS X?Compile assembler in nasm on mac osHow do I install pip on macOS or OS X?AFNetworking 2.0 “_NSURLSessionTransferSizeUnknown” linking error on Mac OS X 10.8C++ code for testing the Collatz conjecture faster than hand-written assembly - why?How to link a NASM code and GCC in Mac OS X?How to run x86 .asm on macOS Sierra