-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split thruk packages into multiple smaller packages
and separate the reporting plugin, since it has additional dependencies.
- Loading branch information
Showing
16 changed files
with
301 additions
and
46 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/etc/init.d/thruk | ||
/etc/logrotate.d/thruk | ||
/etc/thruk/cgi.cfg | ||
/etc/thruk/htpasswd | ||
/etc/thruk/log4perl.conf | ||
/etc/thruk/menu_local.conf | ||
/etc/thruk/naglint.conf | ||
/etc/thruk/usercontent | ||
/etc/thruk/bp/bp_functions.pm | ||
/usr/share/thruk/plugins/plugins-available/business_process | ||
/etc/thruk/plugins/plugins-available/business_process | ||
/etc/thruk/plugins/plugins-enabled/business_process | ||
/usr/share/thruk/plugins/plugins-available/conf | ||
/etc/thruk/plugins/plugins-available/conf | ||
/etc/thruk/plugins/plugins-enabled/conf | ||
/usr/share/thruk/plugins/plugins-available/dashboard | ||
/etc/thruk/plugins/plugins-available/dashboard | ||
/usr/share/thruk/plugins/plugins-available/minemap | ||
/etc/thruk/plugins/plugins-available/minemap | ||
/etc/thruk/plugins/plugins-enabled/minemap | ||
/usr/share/thruk/plugins/plugins-available/mobile | ||
/etc/thruk/plugins/plugins-available/mobile | ||
/etc/thruk/plugins/plugins-enabled/mobile | ||
/usr/share/thruk/plugins/plugins-available/panorama | ||
/etc/thruk/plugins/plugins-available/panorama | ||
/etc/thruk/plugins/plugins-enabled/panorama | ||
/usr/share/thruk/plugins/plugins-available/shinken_features | ||
/etc/thruk/plugins/plugins-available/shinken_features | ||
/usr/share/thruk/plugins/plugins-available/statusmap | ||
/etc/thruk/plugins/plugins-available/statusmap | ||
/etc/thruk/plugins/plugins-enabled/statusmap | ||
/usr/share/thruk/plugins/plugins-available/wml | ||
/etc/thruk/plugins/plugins-available/wml | ||
/etc/thruk/ssi | ||
/etc/thruk/themes | ||
/etc/thruk/thruk.conf | ||
/etc/thruk/thruk_local.conf | ||
/usr/bin/nagexp | ||
/usr/bin/naglint | ||
/usr/bin/thruk | ||
/usr/share/thruk/Changes | ||
/usr/share/thruk/LICENSE | ||
/usr/share/thruk/dist.ini | ||
/usr/share/thruk/thruk_cookie_auth.include | ||
/usr/share/thruk/fcgid_env.sh | ||
/usr/share/thruk/lib | ||
/usr/share/thruk/menu.conf | ||
/usr/share/thruk/root | ||
/usr/share/thruk/thruk_auth | ||
/usr/share/thruk/script/thruk_fastcgi.pl | ||
/usr/share/thruk/script/thruk.psgi | ||
/usr/share/thruk/templates | ||
/usr/share/thruk/themes | ||
/var/cache/thruk | ||
/var/log/thruk |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
0
debian/prerm → debian/thruk-base.prerm
100644 → 100755
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/usr/share/thruk/plugins/plugins-available/reports2 | ||
/etc/thruk/plugins/plugins-available/reports2 | ||
/usr/share/thruk/script/wkhtmltopdf |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
case "$1" in | ||
configure) | ||
rm -f /etc/thruk/plugins/plugins-enabled/reports2 | ||
ln -s ../plugins-available/reports2 /etc/thruk/plugins/plugins-enabled/reports2 | ||
service thruk condrestart >/dev/null || : | ||
;; | ||
|
||
abort-upgrade|abort-remove|abort-deconfigure) | ||
;; | ||
|
||
*) | ||
echo "postinst called with unknown argument \`$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/sh | ||
# prerm script for thruk | ||
# | ||
# see: dh_installdeb(1) | ||
|
||
set -e | ||
|
||
case "$1" in | ||
remove|deconfigure) | ||
if [ -e /etc/thruk/plugins/plugins-enabled/reports2 ]; then | ||
rm /etc/thruk/plugins/plugins-enabled/reports2 | ||
! test -f /etc/init.d/thruk || service thruk condrestart >/dev/null || : | ||
fi | ||
;; | ||
|
||
upgrade|failed-upgrade) | ||
;; | ||
|
||
*) | ||
echo "prerm called with unknown argument \`$1'" >&2 | ||
exit 0 | ||
;; | ||
esac | ||
|
||
# dh_installdeb will replace this with shell code automatically | ||
# generated by other debhelper scripts. | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
Oops, something went wrong.