-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian Wagner
committed
Sep 25, 2017
1 parent
a1b9a6d
commit b491ba0
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Description: Fix paths for LSB | ||
Author: Sebastian Wagner <[email protected]> | ||
Last-Update: 2016-07-20 | ||
Last-Update: 2017-09-25 | ||
--- | ||
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ | ||
--- a/intelmq-manager/php/config.php 2017-06-07 13:06:54.215185776 +0200 | ||
+++ b/intelmq-manager/php/config2.php 2017-06-07 13:06:50.351194626 +0200 | ||
@@ -1,15 +1,15 @@ | ||
--- a/intelmq-manager/php/config.php 2017-09-25 14:12:44.282477416 +0200 | ||
+++ b/intelmq-manager/php/config.php 2017-09-25 14:22:07.680864318 +0200 | ||
@@ -1,16 +1,16 @@ | ||
<?php | ||
|
||
$FILES = array( | ||
|
@@ -14,13 +14,15 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ | |
- 'harmonization' => '/opt/intelmq/etc/harmonization.conf', | ||
- 'pipeline' => '/opt/intelmq/etc/pipeline.conf', | ||
- 'runtime' => '/opt/intelmq/etc/runtime.conf', | ||
- 'system' => '/opt/intelmq/etc/system.conf' | ||
- 'system' => '/opt/intelmq/etc/system.conf', | ||
- 'positions' => '/opt/intelmq/etc/manager/positions.conf', | ||
+ 'bots' => '/etc/intelmq/BOTS', | ||
+ 'defaults' => '/etc/intelmq/defaults.conf', | ||
+ 'harmonization' => '/etc/intelmq/harmonization.conf', | ||
+ 'pipeline' => '/etc/intelmq/pipeline.conf', | ||
+ 'runtime' => '/etc/intelmq/runtime.conf', | ||
+ 'system' => '/etc/intelmq/system.conf' | ||
+ 'system' => '/etc/intelmq/system.conf', | ||
+ 'positions' => '/etc/intelmq/manager/positions.conf', | ||
); | ||
|
||
- $CONTROLLER = "sudo -u intelmq /usr/local/bin/intelmqctl --type json %s"; | ||
|