summaryrefslogtreecommitdiff
path: root/src/network/networkctl.c
diff options
context:
space:
mode:
authorDaniel Buch <boogiewasthere@gmail.com>2014-08-13 22:02:27 +0200
committerTom Gundersen <teg@jklm.no>2014-08-13 22:31:03 +0200
commit5323ead145304785121b72dcbc1c244303de7575 (patch)
tree5e45357849b2c988806e1b1b40ef436a7c6e0572 /src/network/networkctl.c
parentc572db3ccf6678426c8c1c714b594973db84eebe (diff)
networkctl: color status dump without link name
Lets mimic colored operational state dump as if link name is appiled
Diffstat (limited to 'src/network/networkctl.c')
-rw-r--r--src/network/networkctl.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/network/networkctl.c b/src/network/networkctl.c
index 731ad27d5..9c4c1b7e7 100644
--- a/src/network/networkctl.c
+++ b/src/network/networkctl.c
@@ -427,11 +427,19 @@ static int link_status(char **args, unsigned n) {
_cleanup_free_ char *operational_state = NULL;
_cleanup_strv_free_ char **dns = NULL, **ntp = NULL;
_cleanup_free_ struct local_address *addresses = NULL;
+ const char *on_color_oper = "", *off_color_oper = "";
int i, c;
sd_network_get_operational_state(&operational_state);
- if (operational_state)
- printf(" State: %s\n", operational_state);
+ if (streq_ptr(operational_state, "routable")) {
+ on_color_oper = ansi_highlight_green();
+ off_color_oper = ansi_highlight_off();
+ } else if (streq_ptr(operational_state, "degraded")) {
+ on_color_oper = ansi_highlight_yellow();
+ off_color_oper = ansi_highlight_off();
+ }
+
+ printf(" State: %s%s%s\n", on_color_oper, strna(operational_state), off_color_oper);
c = local_addresses(rtnl, 0, &addresses);
for (i = 0; i < c; i++) {