]> git.proxmox.com Git - pve-manager.git/blame - bin/pvebanner
mark service vz optional in pve-manager init script
[pve-manager.git] / bin / pvebanner
CommitLineData
aff192e6
DM
1#!/usr/bin/perl
2
3use strict;
4use PVE::INotify;
5use PVE::Cluster;
6
7my $nodename = PVE::INotify::nodename();
8my $localip = PVE::Cluster::remote_node_ip($nodename, 1);
9
10exit (0) if !$localip;
11
12my $xline = '-' x 80;
13
14print <<__EOBANNER;
15
16$xline
17
18Welcome to the Proxmox Virtual Environment. Please use your web browser to
19configure this server - connect to:
20
21 https://${localip}:8006/
22
23$xline
24
25__EOBANNER
26
27exit (0);