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
--- /usr/share/perl5/PVE/LXC/Setup/Ubuntu.pm.orig 2017-11-01 03:04:00.000000000 +0300 | |
+++ /usr/share/perl5/PVE/LXC/Setup/Ubuntu.pm 2017-11-09 21:30:14.710183003 +0300 | |
@@ -12,6 +12,7 @@ | |
use base qw(PVE::LXC::Setup::Debian); | |
my $known_versions = { | |
+ '18.04' => 1, # bionic LTS | |
'17.10' => 1, # artful | |
'17.04' => 1, # zesty | |
'16.10' => 1, # yakkety |
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
--- /usr/share/perl5/PVE/LXC/Setup/Ubuntu.pm.orig 2017-09-12 14:48:50.000000000 +0300 | |
+++ /usr/share/perl5/PVE/LXC/Setup/Ubuntu.pm 2017-09-17 10:14:06.284276148 +0300 | |
@@ -20,6 +20,7 @@ | |
'15.04' => 1, # vivid | |
'14.04' => 1, # trusty LTS | |
'12.04' => 1, # precise LTS | |
+ '10.04' => 1, # lucid LTS | |
}; | |
sub new { |
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
Index: php-mysql-admin-4.0-4.0.10.20/src/export.php | |
=================================================================== | |
--- php-mysql-admin-4.0-4.0.10.20.orig/src/export.php 2017-05-19 14:09:51.805261707 +0300 | |
+++ php-mysql-admin-4.0-4.0.10.20/src/export.php 2017-05-19 14:10:42.437676490 +0300 | |
@@ -861,7 +861,7 @@ | |
'triggers', $export_type, | |
$do_relation, $do_comments, $do_mime, $do_dates | |
)) { | |
- break 2; | |
+ break; |
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
### | |
# Proxmox or other server kernel params cheap tune and secure. | |
# Try it if you have heavy load on server - network or memory / disk. | |
# No harm assumed but keep your eyes open. | |
# | |
# @updated: 2020-02-06 - more params used, adjust some params values, more comments on params | |
# | |
### NETWORK ### |
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
Index: nginx-1.12.0/src/core/ngx_connection.c | |
=================================================================== | |
--- nginx-1.12.0.orig/src/core/ngx_connection.c 2017-04-15 04:39:30.043542084 +0300 | |
+++ nginx-1.12.0/src/core/ngx_connection.c 2017-04-15 04:39:29.885545744 +0300 | |
@@ -1402,3 +1402,60 @@ | |
return NGX_ERROR; | |
} | |
+ | |
+ |
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
diff --git a/QemuServer.pm b/QemuServer.pm | |
index 970edb5..9e7b281 100644 | |
--- a/QemuServer.pm | |
+++ b/QemuServer.pm | |
@@ -4749,10 +4749,20 @@ sub tar_archive_read_firstfile { | |
die "ERROR: file '$archive' does not exist\n" if ! -f $archive; | |
+ my $cmd = undef; | |
+ |
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
#!/bin/bash | |
### | |
# More advanced on-umount script for OpenVZ container | |
# Based on https://openvz.org/Bind_mounts | |
# | |
# 1. Set quotas off | |
# | |
[ -f /etc/vz/vz.conf ] || exit 1 | |
[ -f $VE_CONFFILE ] || exit 1 |
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
#!/bin/bash | |
### | |
# More advanced on-mount script for OpenVZ container | |
# Based on https://openvz.org/Bind_mounts | |
# | |
# 1. Mount some directory inside container | |
# 2. Set quotas on that directory inside container | |
# | |
[ -f /etc/vz/vz.conf ] || exit 1 |
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/core/ngx_connection.c | |
+++ b/src/core/ngx_connection.c | |
@@ -1167,3 +1167,60 @@ | |
return NGX_ERROR; | |
} | |
+ | |
+ | |
+/* | |
+ * When a socket is idle, determines if the kernel is draining its buffer |
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
### | |
# Nginx vhost file to hide Proxmox pveproxy | |
# For 3.4+, 5.x version. | |
# | |
# Do not forget to create file | |
# /etc/default/pveproxy: | |
# ALLOW_FROM="127.0.0.1" | |
# DENY_FROM="all" | |
# POLICY="allow" | |
# |
NewerOlder