summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorJulien Dessaux2023-01-23 17:33:53 +0100
committerJulien Dessaux2023-01-23 23:12:56 +0100
commitb6ee8f76c2883a934bcf412722e0cf83830173c9 (patch)
tree97d33cb1f4ea74e0b277a4ed6890b35bc022816e /files
parentImported from personal ansible repository (diff)
downloadsyncthing-ansible-role-b6ee8f76c2883a934bcf412722e0cf83830173c9.tar.gz
syncthing-ansible-role-b6ee8f76c2883a934bcf412722e0cf83830173c9.tar.bz2
syncthing-ansible-role-b6ee8f76c2883a934bcf412722e0cf83830173c9.zip
Simplify fact gathering by using the cli instead of a webapi request1.1
Diffstat (limited to 'files')
-rw-r--r--files/syncthing.fact23
1 files changed, 0 insertions, 23 deletions
diff --git a/files/syncthing.fact b/files/syncthing.fact
deleted file mode 100644
index 79ea632..0000000
--- a/files/syncthing.fact
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env perl
-###############################################################################
-# \_o< WARNING : This file is being managed by ansible! >o_/ #
-# ~~~~ ~~~~ #
-###############################################################################
-
-use strict;
-use warnings;
-
-use JSON::PP;
-use LWP::UserAgent;
-
-my $id = '0000000-0000000-0000000-0000000-0000000-0000000-0000000-0000000';
-
-my $resp = LWP::UserAgent->new()->head('http://localhost:8384/');
-if ($resp->code == 200) {
- $id = $resp->header('X-Syncthing-Id');
-}
-
-my %output = (
- 'id' => $id,
-);
-print encode_json \%output;