Skip to content

Commit

Permalink
Remove callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
clong committed Jan 23, 2023
1 parent 5c1cac8 commit 70fb1ec
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 19 deletions.
2 changes: 0 additions & 2 deletions ESXi/ansible/roles/logger/tasks/main.yml
Expand Up @@ -650,7 +650,5 @@
shell: |
# Include Splunk and Zeek in the PATH
echo export PATH="$PATH:/opt/splunk/bin:/opt/zeek/bin" >>~/.bashrc
# Ping DetectionLab server for usage statistics
curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" || echo "Unable to connect to ping.detectionlab.network"
2 changes: 0 additions & 2 deletions Proxmox/Ansible/roles/logger/tasks/main.yml
Expand Up @@ -662,7 +662,5 @@
shell: |
# Include Splunk and Zeek in the PATH
echo export PATH="$PATH:/opt/splunk/bin:/opt/zeek/bin" >>~/.bashrc
# Ping DetectionLab server for usage statistics
curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" || echo "Unable to connect to ping.detectionlab.network"
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -4,7 +4,6 @@

DetectionLab is tested weekly on Saturdays via a scheduled CircleCI workflow to ensure that builds are passing.

[![CircleCI](https://circleci.com/gh/clong/DetectionLab/tree/master.svg?style=shield)](https://circleci.com/gh/clong/DetectionLab/tree/master)
![Lint Code Base](https://github.com/clong/DetectionLab/workflows/Lint%20Code%20Base/badge.svg)
[![license](https://img.shields.io/github/license/clong/DetectionLab.svg?style=flat-square)](https://github.com/clong/DetectionLab/blob/master/license.md)
![Maintenance](https://img.shields.io/maintenance/no/2023.svg?style=flat-square)
Expand Down
6 changes: 0 additions & 6 deletions Vagrant/logger_bootstrap.sh
Expand Up @@ -585,11 +585,6 @@ install_guacamole() {
echo "[$(date +%H:%M:%S)]: Guacamole installation complete!"
}

postinstall_tasks() {
# Ping DetectionLab server for usage statistics
curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" || echo "Unable to connect to ping.detectionlab.network"
}

configure_splunk_inputs() {
echo "[$(date +%H:%M:%S)]: Configuring Splunk Inputs..."
# Suricata
Expand Down Expand Up @@ -629,7 +624,6 @@ main() {
install_zeek
install_guacamole
configure_splunk_inputs
postinstall_tasks
}

splunk_only() {
Expand Down
8 changes: 0 additions & 8 deletions Vagrant/scripts/provision.ps1
Expand Up @@ -20,14 +20,6 @@ If (!(Test-Path $ProfilePath)) {
}
}

# Ping DetectionLab server for usage statistics
Try {
curl -userAgent "DetectionLab-$box" "https://ping.detectionlab.network/$box" -UseBasicParsing | out-null
} Catch {
Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Unable to connect to ping.detectionlab.network"
Write-Host $_.Exception.Message
}

Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Disabling IPv6 on all network adapters..."
Get-NetAdapterBinding -ComponentID ms_tcpip6 | ForEach-Object {Disable-NetAdapterBinding -Name $_.Name -ComponentID ms_tcpip6}
Get-NetAdapterBinding -ComponentID ms_tcpip6
Expand Down

0 comments on commit 70fb1ec

Please sign in to comment.