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:

Can Medicine checks be used, with decent rolls, to completely mitigate the risk of death from ongoing damage?

Why is "Reports" in sentence down without "The"

I probably found a bug with the sudo apt install function

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

Banach space and Hilbert space topology

N.B. ligature in Latex

How can bays and straits be determined in a procedurally generated map?

Can I interfere when another PC is about to be attacked?

What are these boxed doors outside store fronts in New York?

Simulate Bitwise Cyclic Tag

Why Is Death Allowed In the Matrix?

Are white and non-white police officers equally likely to kill black suspects?

Why is the design of haulage companies so “special”?

LED on same Pin as Toggle Switch, not illuminating

least quadratic residue under GRH: an EXPLICIT bound

Can a German sentence have two subjects?

DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Is there really no realistic way for a skeleton monster to move around without magic?

Example of a relative pronoun

Extreme, but not acceptable situation and I can't start the work tomorrow morning

Can you lasso down a wizard who is using the Levitate spell?

Can I make popcorn with any corn?

Concept of linear mappings are confusing me



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

                      Frič See also Navigation menuinternal link

                      Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant

                      fontconfig warning: “/etc/fonts/fonts.conf”, line 100: unknown “element blank” The 2019 Stack Overflow Developer Survey Results Are In“tar: unrecognized option --warning” during 'apt-get install'How to fix Fontconfig errorHow do I figure out which font file is chosen for a system generic font alias?Why are some apt-get-installed fonts being ignored by fc-list, xfontsel, etc?Reload settings in /etc/fonts/conf.dTaking 30 seconds longer to boot after upgrade from jessie to stretchHow to match multiple font names with a single <match> element?Adding a custom font to fontconfigRemoving fonts from fontconfig <match> resultsBroken fonts after upgrading Firefox ESR to latest Firefox