aboutsummaryrefslogtreecommitdiffstats
path: root/clients/flatify.pl
diff options
context:
space:
mode:
authorNicolai Tellefsen <niccofyren@gmail.com>2016-03-26 01:52:00 +0100
committerNicolai Tellefsen <niccofyren@gmail.com>2016-03-26 01:52:00 +0100
commita791ca16c787672ea534dbde39f926d0341aa2e6 (patch)
tree2705d9bb008108fa01d491c438bebbfd574d1a8c /clients/flatify.pl
parent7b39120d069223c5e2cf135f0e89df9a13ded17b (diff)
parent851ac3e378bce07e06030ade4b9c12582fc21a3b (diff)
Merge branch 'master' of ssh://github.com/tech-server/tgmanage
Diffstat (limited to 'clients/flatify.pl')
-rwxr-xr-xclients/flatify.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/clients/flatify.pl b/clients/flatify.pl
deleted file mode 100755
index f2aa18a..0000000
--- a/clients/flatify.pl
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /usr/bin/perl
-
-# Make the given switch into a D-Link placement-wise.
-
-use strict;
-use warnings;
-use lib '../include';
-use nms;
-
-my $dbh = nms::db_connect();
-my $q = $dbh->prepare('SELECT switch,placement FROM switches NATURAL JOIN placements WHERE sysname LIKE ?');
-$q->execute('%'.$ARGV[0].'%');
-
-while (my $ref = $q->fetchrow_hashref) {
- $ref->{'placement'} =~ /\((\d+),(\d+)\),\((\d+),(\d+)\)/ or die;
- my ($x1,$y1,$x2,$y2) = ($1, $2, $3, $4);
- my $placement = sprintf "(%d,%d),(%d,%d)", $x2 - 100, $y2 - 16, $x2, $y2;
- $dbh->do("UPDATE placements SET placement=? WHERE switch=?",
- undef, $placement, $ref->{'switch'});
- last; # Take only one.
-}