diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-13 20:18:36 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-13 20:18:36 +0200 |
commit | a79c9135fc2ed27b8d2374ab9728124f2357d2f1 (patch) | |
tree | 80ff92229bdc51638c7709a8892bbddc61abb504 /web/api/public | |
parent | afe950d0ef2d6cb192bbe2a1013be5915c47eaaa (diff) |
Move stuff from /opt/nms to /opt/gondul etc
Still lots to do
Diffstat (limited to 'web/api/public')
-rwxr-xr-x | web/api/public/dhcp | 2 | ||||
-rwxr-xr-x | web/api/public/dhcp-summary | 2 | ||||
-rwxr-xr-x | web/api/public/location | 2 | ||||
-rwxr-xr-x | web/api/public/ping | 2 | ||||
-rwxr-xr-x | web/api/public/switch-state | 2 | ||||
-rwxr-xr-x | web/api/public/switches | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/web/api/public/dhcp b/web/api/public/dhcp index d998c59..ea42b8f 100755 --- a/web/api/public/dhcp +++ b/web/api/public/dhcp @@ -1,7 +1,7 @@ #! /usr/bin/perl # vim:ts=8:sw=8 -use lib '/opt/nms/include'; +use lib '/opt/gondul/include'; use nms::web qw (%json finalize_output); use strict; use warnings; diff --git a/web/api/public/dhcp-summary b/web/api/public/dhcp-summary index 73460e7..18a7f69 100755 --- a/web/api/public/dhcp-summary +++ b/web/api/public/dhcp-summary @@ -1,5 +1,5 @@ #! /usr/bin/perl -use lib '/opt/nms/include'; +use lib '/opt/gondul/include'; use strict; use warnings; use nms::web; diff --git a/web/api/public/location b/web/api/public/location index 70b6ffd..2247f73 100755 --- a/web/api/public/location +++ b/web/api/public/location @@ -1,7 +1,7 @@ #! /usr/bin/perl # vim:ts=8:sw=8 -use lib '/opt/nms/include'; +use lib '/opt/gondul/include'; use nms::web; use strict; use warnings; diff --git a/web/api/public/ping b/web/api/public/ping index 27a8933..36e3334 100755 --- a/web/api/public/ping +++ b/web/api/public/ping @@ -1,5 +1,5 @@ #! /usr/bin/perl -use lib '/opt/nms/include'; +use lib '/opt/gondul/include'; use strict; use warnings; use nms::web; diff --git a/web/api/public/switch-state b/web/api/public/switch-state index 5cc7e73..eaa8be3 100755 --- a/web/api/public/switch-state +++ b/web/api/public/switch-state @@ -1,7 +1,7 @@ #! /usr/bin/perl # vim:ts=8:sw=8 -use lib '/opt/nms/include'; +use lib '/opt/gondul/include'; use nms::web qw (%json finalize_output); use strict; use warnings; diff --git a/web/api/public/switches b/web/api/public/switches index 1322ba6..e6a37f8 100755 --- a/web/api/public/switches +++ b/web/api/public/switches @@ -3,7 +3,7 @@ use CGI qw(fatalsToBrowser); use DBI; -use lib '/opt/nms/include'; +use lib '/opt/gondul/include'; use nms; use nms::web; use strict; |