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:
whey we use polarized capacitor?
Are tax years 2016 & 2017 back taxes deductible for tax year 2018?
Can a German sentence have two subjects?
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Do airline pilots ever risk not hearing communication directed to them specifically, from traffic controllers?
How long does it take to type this?
Why are only specific transaction types accepted into the mempool?
What would the Romans have called "sorcery"?
How do you conduct xenoanthropology after first contact?
Why is "Reports" in sentence down without "The"
The use of multiple foreign keys on same column in SQL Server
Why is an old chain unsafe?
"You are your self first supporter", a more proper way to say it
TGV timetables / schedules?
"which" command doesn't work / path of Safari?
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
If Manufacturer spice model and Datasheet give different values which should I use?
Are there any consumables that function as addictive (psychedelic) drugs?
How to report a triplet of septets in NMR tabulation?
What makes Graph invariants so useful/important?
What is the command to reset a PC without deleting any files
GPS Rollover on Android Smartphones
Draw simple lines in Inkscape
How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?
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;
How to change the color and text of the message while you start or stop a service?

rhel colors services
add a comment |
How to change the color and text of the message while you start or stop a service?

rhel colors services
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
add a comment |
How to change the color and text of the message while you start or stop a service?

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

rhel colors services
rhel colors services
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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 :)
add a comment |
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).
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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 :)
add a comment |
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 :)
add a comment |
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 :)
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 :)
answered Mar 27 at 16:02
MarvinMarvin
19116
19116
add a comment |
add a comment |
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).
add a comment |
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).
add a comment |
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).
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).
answered Mar 27 at 16:08
Jeff Schaller♦Jeff Schaller
44.7k1163145
44.7k1163145
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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