Commit 465c8ad4 authored by Franco Fichtner's avatar Franco Fichtner

console: append domain name for neatness

parent d68e86e8
...@@ -35,11 +35,12 @@ require_once("util.inc"); ...@@ -35,11 +35,12 @@ require_once("util.inc");
$version = strtok(file_get_contents('/usr/local/opnsense/version/opnsense'), '-'); $version = strtok(file_get_contents('/usr/local/opnsense/version/opnsense'), '-');
$hostname = $config['system']['hostname']; $hostname = $config['system']['hostname'];
$domain = $config['system']['domain'];
$product = $g['product_name']; $product = $g['product_name'];
$machine = trim(shell_exec('uname -m')); $machine = trim(shell_exec('uname -m'));
$flavour = strtok(shell_exec('/usr/local/bin/openssl version'), ' '); $flavour = strtok(shell_exec('/usr/local/bin/openssl version'), ' ');
print "\n*** Welcome to {$product} {$version} ({$machine}/${flavour}) on {$hostname} ***\n"; print "\n*** Welcome to {$product} {$version} ({$machine}/${flavour}) on {$hostname}.{$domain} ***\n";
$iflist = get_configured_interface_with_descr(false, true); $iflist = get_configured_interface_with_descr(false, true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment