BackupPC - Add logout button

BackupPC don’t have a logout button… … …

Create a logout button

Add the following lines in order to create anothers buttons to the $Conf{CgiNavBarLinks} area of your /etc/BackupPC/config.pl :

[...]

$Conf{CgiNavBarLinks} = [
{
'link' => '?action=view&type=docs',
'lname' => 'Documentation',
'name' => undef
},
{
'link' => 'https://github.com/backuppc/backuppc/wiki',
'lname' => undef,
'name' => 'Wiki'
},
{
'link' => 'https://backuppc.github.io/backuppc',
'lname' => undef,
'name' => 'Homepage'
},
{
'link' => 'https://[email protected]/backuppc',
'lname' => undef,
'name' => '> LOGOUT < (https)'
},
{
'link' => 'http://[email protected]/backuppc',
'lname' => undef,
'name' => '> LOGOUT < (http)'
}

];

[...]

Then restart your web server.

Documentation

https://sourceforge.net/p/backuppc/mailman/backuppc-users/thread/[email protected]
https://wiki.kogite.fr/index.php/BackupPC_sur_Debian_Squeeze#TIP_:_Logout_.2F_changement_d.27utilisateur

> Partager <