[PATCH] Add Gentoo welcome message.
Gustavo Sverzut Barbieri
barbieri at profusion.mobi
Wed Sep 8 07:12:47 PDT 2010
---
src/util.c | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/util.c b/src/util.c
index 0cd1fd3..ec3df94 100644
--- a/src/util.c
+++ b/src/util.c
@@ -2835,6 +2835,17 @@ void status_welcome(void) {
status_printf("Welcome to \x1B[0;32m%s\x1B[0m!\n", r); /* Green for SUSE */
free(r);
+#elif defined(TARGET_GENTOO)
+ char *r;
+
+ if (read_one_line_file("/etc/gentoo-release", &r) < 0)
+ return;
+
+ truncate_nl(r);
+
+ status_printf("Welcome to \x1B[1;34m%s\x1B[0m!\n", r); /* Light Blue for Gentoo */
+
+ free(r);
#else
#warning "You probably should add a welcome text logic here."
#endif
--
1.7.1
More information about the systemd-devel
mailing list