This reverts commit eece093fd0.
Otherwise fails with:
| Starting NGCP-Panel Webapp: ngcp_panel_fastcgi:Can't locate Convert/Ascii85.pm in your Perl library. You may need to install it
| from CPAN or another repository. Your library paths are:
| /etc/perl
| /usr/local/lib/perl/5.14.2
| /usr/local/share/perl/5.14.2
| /usr/lib/perl5
| /usr/share/perl5
| /usr/lib/perl/5.14
| /usr/share/perl/5.14
| /usr/local/lib/site_perl
| .
|
| BEGIN failed--compilation aborted at /usr/share/perl5/NGCP/Panel/Controller/Root.pm line 5.
| Compilation failed in require at /usr/share/perl5/Catalyst/Utils.pm line 308.
| Compilation failed in require at /usr/share/perl5/Module/Runtime.pm line 317.
| at /usr/share/perl5/Catalyst/ScriptRunner.pm line 50
| error ... failed!
because Convert::Ascii85 isn't available yet in our repositories,
therefore revert to fix broken trunk.
Acked-by: Andreas Granig <agranig@sipwise.com>
Git-Dch: Ignore
agranig/peering-route
parent
1a5ff7bf45
commit
ea5696da2c
@ -1,21 +0,0 @@
|
||||
#!/usr/bin/env perl
|
||||
use Convert::Ascii85 qw();
|
||||
use IO::Uncompress::UnXz qw(unxz $UnXzError);
|
||||
|
||||
local $/ = undef;
|
||||
my $buf = Convert::Ascii85::decode(<>);
|
||||
my $out;
|
||||
unxz \$buf, \$out or die $UnXzError;
|
||||
print $out;
|
||||
|
||||
__END__
|
||||
|
||||
=encoding UTF-8
|
||||
|
||||
=head1 NAME
|
||||
|
||||
ngcp_panel_decode_crash - decode a crash state from the Web server error log
|
||||
|
||||
=head1 USAGE
|
||||
|
||||
ngcp_panel_decode_crash < crashfile
|
||||
@ -1,37 +0,0 @@
|
||||
<div class="row">
|
||||
|
||||
<div class="span12">
|
||||
|
||||
<div class="error-container">
|
||||
|
||||
<h1>Oops!</h1>
|
||||
|
||||
<h2>[% c.response.status %] Not found</h2>
|
||||
|
||||
<div class="error-details">
|
||||
Sorry, an error has occured, Requested page not found!
|
||||
|
||||
</div> <!-- /error-details -->
|
||||
|
||||
<div class="error-actions">
|
||||
<a href="[% c.uri_for('/back') %]" class="btn btn-large btn-primary">
|
||||
<i class="icon-chevron-left"></i>
|
||||
|
||||
Back to Dashboard
|
||||
</a>
|
||||
|
||||
<a href="mailto:[% c.config.contact.email %]" class="btn btn-large">
|
||||
<i class="icon-envelope"></i>
|
||||
|
||||
Contact Support
|
||||
</a>
|
||||
|
||||
</div> <!-- /error-actions -->
|
||||
|
||||
</div> <!-- /.error-container -->
|
||||
|
||||
|
||||
</div> <!-- /.span12 -->
|
||||
|
||||
</div> <!-- /.row -->
|
||||
|
||||
Loading…
Reference in new issue