Skip to content

Commit

Permalink
12.6.0 final - deb round 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Portnoy committed Dec 6, 2016
1 parent 9c9aab4 commit be28cf4
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 2 deletions.
17 changes: 17 additions & 0 deletions deb/kaltura-base/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
kaltura-base (12.6.0-2) lynx; urgency=low

* SUP-9130 - Cannot download media via KMS
* SUP-9437 - WN - 414 Request-URI Too Large errors on player version 2.48.1
* PLAT-6415 - Timeout when generating 'Business-Process Cases' table in admin console
* PLAT-5783 - Template Entry Overrides Irrelevant Field if New Entry Type is External Media
* PLAT-6419 - Recscheduling - Publish - VOD Entry is not published
* PLAT-6428 - Recscheduling - Recurrence - Weekly series missing two last events (specific case)

-- Jess Portnoy <jess.portnoy@kaltura.org> Tue, 06 Dec 2016 13:04:52 +0000

kaltura-base (12.6.0-1) lynx; urgency=low

* Switching to 12.6.0

-- Jess Portnoy <jess.portnoy@kaltura.org> Thu, 24 Nov 2016 21:42:20 +0000

kaltura-base (12.5.0-2) lynx; urgency=low

* PLAT-6348 - Add ReplacedEntryId Xsl variable
Expand Down
2 changes: 2 additions & 0 deletions deb/kaltura-base/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ binary-indep: install
find $(tree) -name "*.sh" -type f -exec chmod +x {} \;
sed -i 's@^IsmIndex@;IsmIndex@g' $(tree)/configurations/plugins.template.ini
sed -i "s#^;kmc_version = @KMC_VERSION@#kmc_version = $(KMC_VERSION)#g" $(tree)/configurations/local.template.ini
sed -i 's@^otp_required_partners\[\]@;otp_required_partners\[\]@g' $(tree)/configurations/local.template.ini
sed -i "s@^partner_otp_internal_ips@;partner_otp_internal_ips@g" $(tree)/configurations/local.template.ini
sed -i "s#^;html5_version = @HTML5LIB_VERSION@#html5_version = $(HTML5LIB_VERSION)#g" $(tree)/configurations/local.template.ini
sed -i "s#^;studio_version = @STUDIO_VERSION@#studio_version = $(HTML5_STUDIO_VERSION)#g" $(tree)/configurations/local.template.ini
sed -i "s#^;kdp3_wrapper_version = @KDP3_WRAPPER_VERSION@#kdp3_wrapper_version = $(KDP3WRAPPER_VERSION)#g" $(tree)/configurations/local.template.ini
Expand Down
6 changes: 6 additions & 0 deletions deb/kaltura-batch/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
kaltura-batch (12.6.0-1) lynx; urgency=low

* Switching to 12.6.0

-- Jess Portnoy <jess.portnoy@kaltura.org> Thu, 24 Nov 2016 21:42:21 +0000

kaltura-batch (12.5.0-1) lynx; urgency=low

* Switching to 12.5.0
Expand Down
6 changes: 6 additions & 0 deletions deb/kaltura-front/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
kaltura-front (12.6.0-1) lynx; urgency=low

* Switching to 12.6.0

-- Jess Portnoy <jess.portnoy@kaltura.org> Thu, 24 Nov 2016 21:42:21 +0000

kaltura-front (12.5.0-1) lynx; urgency=low

* Switching to 12.5.0
Expand Down
7 changes: 7 additions & 0 deletions deb/kaltura-kmc/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
kaltura-kmc (5.41.1-1) lynx; urgency=low

* PLAT-6257 - Add Average Accumulative Storage to Publisher Bandwidth and Storage Report
* PLAT-6211 - create "re-generate token" button in KMC

-- Jess Portnoy <jess.portnoy@kaltura.org> Tue, 06 Dec 2016 13:08:51 +0000

kaltura-kmc (5.40.3-5) lynx; urgency=low

* Version bounce to align with kaltura-html5lib v2.50.
Expand Down
6 changes: 6 additions & 0 deletions deb/kaltura-nginx/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
kaltura-nginx (1.10.2-2) lynx; urgency=low

* New Nginx vod module - 1.11. See https://github.com/kaltura/nginx-vod-module/releases/tag/1.11

-- Jess Portnoy <jess.portnoy@kaltura.org> Tue, 06 Dec 2016 13:15:43 +0000

kaltura-nginx (1.10.2-1) lynx; urgency=low

* New Nginx version - 1.10.2
Expand Down
2 changes: 1 addition & 1 deletion deb/kaltura-nginx/debian/nginx.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ http {
# RTMP configuration
rtmp {
server {
listen 1935; # Listen on standard RTMP port
listen @RTMP_PORT@; # Listen on standard RTMP port
chunk_size 4000;

# This application is to accept incoming stream
Expand Down
8 changes: 7 additions & 1 deletion deb/kaltura-nginx/debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ if [ "$1" = "configure" ]; then
db_get 'kaltura-nginx/nginx_port'
VOD_PACKAGER_PORT=$RET

db_input critical 'kaltura-nginx/rtmp_port' || true
db_go || true
db_get 'kaltura-nginx/rtmp_port'
RTMP_PORT=$RET


db_get 'kaltura-nginx/kaltura_service_url'
db_input critical 'kaltura-nginx/kaltura_service_url' || true
db_go || true
Expand Down Expand Up @@ -44,7 +50,7 @@ if [ "$1" = "configure" ]; then
else
touch /opt/kaltura/nginx/conf/ssl.conf
fi
sed -e "s#@VOD_PACKAGER_HOST@#$VOD_PACKAGER_HOST#g" -e "s#@VOD_PACKAGER_PORT@#$VOD_PACKAGER_PORT#g" -e "s#@LOG_DIR@#/opt/kaltura/log/nginx#" -e "s#@WWW_HOST@#$WWW_HOST#g" /opt/kaltura/nginx/conf/nginx.conf.template > /opt/kaltura/nginx/conf/nginx.conf
sed -e "s#@VOD_PACKAGER_HOST@#$VOD_PACKAGER_HOST#g" -e "s#@VOD_PACKAGER_PORT@#$VOD_PACKAGER_PORT#g" -e "s#@RTMP_PORT@#$RTMP_PORT#g" -e "s#@LOG_DIR@#/opt/kaltura/log/nginx#" -e "s#@WWW_HOST@#$WWW_HOST#g" /opt/kaltura/nginx/conf/nginx.conf.template > /opt/kaltura/nginx/conf/nginx.conf
sed -e 's#@STATIC_FILES_PATH@#/opt/kaltura/nginx/static#g' /opt/kaltura/nginx/conf/kaltura.conf.template > /opt/kaltura/nginx/conf/kaltura.conf
update-rc.d kaltura-nginx defaults || true

Expand Down
5 changes: 5 additions & 0 deletions deb/kaltura-nginx/debian/templates
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Type: string
Default: 88
Description: Vhost port to listen on:

Template: kaltura-nginx/rtmp_port
Type: string
Default: 1935
Description: RTMP port to listen on:

Template: kaltura-nginx/nginx_ssl_port
Type: string
Default: 8443
Expand Down

0 comments on commit be28cf4

Please sign in to comment.