This file has been truncated, but you can view the full file.
This file contains hidden or 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
| + docker pull packpack/packpack:ubuntu-xenial | |
| Trying to pull repository docker.io/packpack/packpack ... | |
| sha256:cbb1f8def6f1f30232de964e27c3fc21e9657c2912db9307a567f85f8ac3d1bb: Pulling from docker.io/packpack/packpack | |
| 8aec416115fd: Pulling fs layer | |
| 695f074e24e3: Pulling fs layer | |
| 946d6c48c2a7: Pulling fs layer | |
| bc7277e579f0: Pulling fs layer | |
| 2508cbcde94b: Pulling fs layer | |
| d35af056657e: Pulling fs layer | |
| ed5f9fdd4bcd: Pulling fs layer |
This file contains hidden or 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
| # systemd mount unit for ZoneMinder event storage | |
| [Unit] | |
| Description=systemd mount unit for ZoneMinder event storage | |
| Before=zoneminder | |
| [Mount] | |
| What=/dev/disk/by-uuid/4241978c-bc58-483e-84c7-8ee95a0dafec | |
| Where=/drive01 | |
| Type=ext4 |
This file contains hidden or 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
| # systemd bind mount unit for ZoneMinder event storage | |
| [Unit] | |
| Description=systemd bind mount unit for ZoneMinder event storage | |
| After=drive01.mount | |
| Requires=drive01.mount | |
| [Mount] | |
| What=/drive01/zoneminder/events | |
| Where=/var/lib/zoneminder/events |
This file contains hidden or 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
| --- a/CMakeLists.txt 2017-05-09 09:54:48.000000000 -0500 | |
| +++ b/CMakeLists.txt 2017-06-13 17:45:26.224997743 -0500 | |
| @@ -150,30 +150,18 @@ | |
| "Build ZoneMinder for a specific distribution. Currently, valid names are: fc24, fc25, el6, el7, OS13, FreeBSD") | |
| # Reassign some variables if a target distro has been specified | |
| -if((ZM_TARGET_DISTRO STREQUAL "fc24") OR (ZM_TARGET_DISTRO STREQUAL "fc25")) | |
| - set(ZM_RUNDIR "/var/run/zoneminder") | |
| - set(ZM_SOCKDIR "/var/lib/zoneminder/sock") | |
| - set(ZM_TMPDIR "/var/lib/zoneminder/temp") |
This file contains hidden or 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
| $ rpmlint -v zoneminder | |
| zoneminder.x86_64: I: checking | |
| zoneminder.x86_64: E: explicit-lib-dependency libjpeg-turbo | |
| zoneminder.x86_64: I: checking-url http://www.zoneminder.com/ (timeout 10 seconds) | |
| zoneminder.x86_64: E: non-readable /etc/zm/zm.conf 640 | |
| zoneminder.x86_64: W: hidden-file-or-dir /usr/share/zoneminder/www/api/.editorconfig | |
| zoneminder.x86_64: E: htaccess-file /usr/share/zoneminder/www/api/.htaccess | |
| zoneminder.x86_64: E: htaccess-file /usr/share/zoneminder/www/api/app/.htaccess | |
| zoneminder.x86_64: E: wrong-script-interpreter /usr/share/zoneminder/www/api/app/Console/cake /usr/bin/env bash | |
| zoneminder.x86_64: E: non-executable-script /usr/share/zoneminder/www/api/app/Console/cake 644 /usr/bin/env bash |
This file contains hidden or 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
| %global zmuid_final apache | |
| %global zmgid_final apache | |
| # Crud is configured as a git submodule | |
| %global crud_version 3.0.10 | |
| %if "%{zmuid_final}" == "nginx" | |
| %global with_nginx 1 | |
| %global wwwconfdir %{_sysconfdir}/nginx/default.d | |
| %else |
This file contains hidden or 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
| $ rpmlint -v zoneminder | |
| zoneminder.x86_64: I: checking | |
| zoneminder.x86_64: E: explicit-lib-dependency libjpeg-turbo | |
| zoneminder.x86_64: I: checking-url http://www.zoneminder.com/ (timeout 10 seconds) | |
| zoneminder.x86_64: E: non-readable /etc/zm/zm.conf 640 | |
| zoneminder.x86_64: W: hidden-file-or-dir /usr/share/zoneminder/www/api/app/Plugin/Crud/.semver | |
| zoneminder.x86_64: W: dangling-relative-symlink /usr/share/zoneminder/www/api/lib/Cake/Config/cacert.pem ../../../../../../../../etc/pki/tls/certs/ca-bundle.crt | |
| zoneminder.x86_64: W: dangling-relative-symlink /usr/share/zoneminder/www/cambozola.jar ../../java/cambozola.jar | |
| zoneminder.x86_64: E: dir-or-file-in-var-run /var/run/zoneminder | |
| zoneminder.x86_64: W: no-manual-page-for-binary zma |
This file contains hidden or 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
| FROM ubuntu:xenial | |
| MAINTAINER Markos Vakondios <[email protected]> Riley Schuit <[email protected]> | |
| # Resynchronize the package index files | |
| RUN apt-get update \ | |
| && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | |
| apache2 \ | |
| build-essential \ | |
| cmake \ | |
| dh-autoreconf \ |
This file contains hidden or 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
| --- a/src/zm_mpeg.cpp | |
| +++ b/src/zm_mpeg.cpp | |
| @@ -29,6 +29,7 @@ | |
| { | |
| #include <libavutil/mathematics.h> | |
| #include <libavcodec/avcodec.h> | |
| +#define AVFMT_RAWPICTURE 0x0020 | |
| } | |
| bool VideoStream::initialised = false; |
This file contains hidden or 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
| From ec777147024fde72e4411cc6b1e1e49f4a1d1804 Mon Sep 17 00:00:00 2001 | |
| From: Boris Kolpackov <[email protected]> | |
| Date: Fri, 23 Dec 2016 10:18:01 +0200 | |
| Subject: [PATCH] Fix bug in GCC 6 input_location translation | |
| --- | |
| odb/cxx-lexer.cxx | 8 ++++++++ | |
| 1 file changed, 8 insertions(+) | |
| diff --git a/odb/cxx-lexer.cxx b/odb/cxx-lexer.cxx |