Skip to content

Commit 70fb1ec

Browse files
committed
Remove callbacks
1 parent 5c1cac8 commit 70fb1ec

File tree

5 files changed

+0
-19
lines changed

5 files changed

+0
-19
lines changed

ESXi/ansible/roles/logger/tasks/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,5 @@
650650
shell: |
651651
# Include Splunk and Zeek in the PATH
652652
echo export PATH="$PATH:/opt/splunk/bin:/opt/zeek/bin" >>~/.bashrc
653-
# Ping DetectionLab server for usage statistics
654-
curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" || echo "Unable to connect to ping.detectionlab.network"
655653
656654

Proxmox/Ansible/roles/logger/tasks/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,5 @@
662662
shell: |
663663
# Include Splunk and Zeek in the PATH
664664
echo export PATH="$PATH:/opt/splunk/bin:/opt/zeek/bin" >>~/.bashrc
665-
# Ping DetectionLab server for usage statistics
666-
curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" || echo "Unable to connect to ping.detectionlab.network"
667665
668666

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

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

7-
[![CircleCI](https://circleci.com/gh/clong/DetectionLab/tree/master.svg?style=shield)](https://circleci.com/gh/clong/DetectionLab/tree/master)
87
![Lint Code Base](https://github.com/clong/DetectionLab/workflows/Lint%20Code%20Base/badge.svg)
98
[![license](https://img.shields.io/github/license/clong/DetectionLab.svg?style=flat-square)](https://github.com/clong/DetectionLab/blob/master/license.md)
109
![Maintenance](https://img.shields.io/maintenance/no/2023.svg?style=flat-square)

Vagrant/logger_bootstrap.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -585,11 +585,6 @@ install_guacamole() {
585585
echo "[$(date +%H:%M:%S)]: Guacamole installation complete!"
586586
}
587587

588-
postinstall_tasks() {
589-
# Ping DetectionLab server for usage statistics
590-
curl -s -A "DetectionLab-logger" "https:/ping.detectionlab.network/logger" || echo "Unable to connect to ping.detectionlab.network"
591-
}
592-
593588
configure_splunk_inputs() {
594589
echo "[$(date +%H:%M:%S)]: Configuring Splunk Inputs..."
595590
# Suricata
@@ -629,7 +624,6 @@ main() {
629624
install_zeek
630625
install_guacamole
631626
configure_splunk_inputs
632-
postinstall_tasks
633627
}
634628

635629
splunk_only() {

Vagrant/scripts/provision.ps1

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ If (!(Test-Path $ProfilePath)) {
2020
}
2121
}
2222

23-
# Ping DetectionLab server for usage statistics
24-
Try {
25-
curl -userAgent "DetectionLab-$box" "https://ping.detectionlab.network/$box" -UseBasicParsing | out-null
26-
} Catch {
27-
Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Unable to connect to ping.detectionlab.network"
28-
Write-Host $_.Exception.Message
29-
}
30-
3123
Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Disabling IPv6 on all network adapters..."
3224
Get-NetAdapterBinding -ComponentID ms_tcpip6 | ForEach-Object {Disable-NetAdapterBinding -Name $_.Name -ComponentID ms_tcpip6}
3325
Get-NetAdapterBinding -ComponentID ms_tcpip6

0 commit comments

Comments
 (0)