Obtenha a atualização do Lynis no Debian Testing (buster)

1

Existe alguma maneira de obter atualizações do Lynis se estiver usando Teste Debian (buster)? Eu prefiro evitar a instalação de uma nova versão do Lynis manualmente. Eu gostaria de usar o repositório Debian.

root@host:~# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux testing (buster)
Release:        testing
Codename:       buster

Lynis update info :

root@host:~# lynis update info

      ===============================================================================
        Lynis update available
      ===============================================================================

        Current version is more than 4 months old

        Please update to the latest version.
        New releases include additional features, bug fixes, tests and baselines.

        Download the latest version:
        Packages (DEB/RPM) -  https://packages.cisofy.com
        Website            -  https://cisofy.com/downloads/
        GitHub             -  https://github.com/CISOfy/lynis

      ===============================================================================


 == Lynis ==

  Version            : 2.5.0
  Status             : Outdated
  Installed version  : 250
  Latest version     : 257
  Release date       : 2017-05-03
  Update location    : https://cisofy.com/lynis/


2007-2017, CISOfy - https://cisofy.com/lynis/

Eu corri aptitude update && aptitude full-upgrade , mas atualmente não há mais atualizações.

    
por patryk.beza 25.12.2017 / 13:08

1 resposta

1

O processo de instalação é exibido no site oficial .

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C80E383C3DE9F082E01391A0366C67DE91CA5D5F
apt install apt-transport-https
echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/99disable-translations
echo "deb https://packages.cisofy.com/community/lynis/deb/ stable main" > /etc/apt/sources.list.d/cisofy-lynis.list
apt update
apt remove lynis
apt install lynis

Verifique sua versão:

lynis show version
2.5.7
    
por 25.12.2017 / 16:20