Last active
February 10, 2020 05:59
-
-
Save shaardie/19ed2fcc6187d3663014cdbcae579e02 to your computer and use it in GitHub Desktop.
OpenVAS Systemd Service files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=OpenVAS - Greenbone Security Assistant | |
After=network.target | |
[Service] | |
ExecStart=/usr/local/sbin/gsad --foreground | |
[Install] | |
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=OpenVAS Manager - Slave configuration | |
After=network.target | |
[Service] | |
ExecStart=/usr/local/sbin/openvasmd --listen=0.0.0.0 --foreground | |
ExecReload=/bin/kill -HUP $MAINPID | |
[Install] | |
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=OpenVAS Manager | |
After=network.target | |
[Service] | |
ExecStart=/usr/local/sbin/openvasmd --foreground | |
ExecReload=/bin/kill -HUP $MAINPID | |
[Install] | |
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=OpenVAS Scanner | |
After=network.target redis-server.service | |
[Service] | |
ExecStart=/usr/local/sbin/openvassd --foreground | |
ExecReload=/bin/kill -HUP $MAINPID | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok, tks