[
https://issues.apache.org/jira/browse/KARAF-132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12975808#action_12975808
]
Tracy Snell commented on KARAF-132:
-----------------------------------
Just needs to change that line to get the username right?
{code}
session.put("USER", System.getProperty("user.name"));
{code}
> The user name for the main console session is always "karaf"
> ------------------------------------------------------------
>
> Key: KARAF-132
> URL: https://issues.apache.org/jira/browse/KARAF-132
> Project: Karaf
> Issue Type: Bug
> Reporter: Guillaume Nodet
>
> See org.apache.karaf.shell.console.jline.ConsoleFactory#start
> {code}
> CommandSession session = console.getSession();
> session.put("USER", "karaf");
> session.put("APPLICATION", System.getProperty("karaf.name",
> "root"));
> session.put("LINES",
> Integer.toString(terminal.getTerminalHeight()));
> session.put("COLUMNS",
> Integer.toString(terminal.getTerminalWidth()));
> session.put(".jline.terminal", terminal);
> new Thread(console, "Karaf Shell Console Thread").start();
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.