Skip to content

Commit f3a14b2

Browse files
authored
Merge pull request #639 from MrSerth/master
* Upgrade to Ubuntu 24.04 Noble * Update syslog-ng.conf to version 4.3 * Add default smart-multi-line.fsm config for syslog-ng The config file is taken from the syslog-ng upstream repository. It got added for the syslog-ng 4.2.0 release and remained unchanged since then (as of April 2024). https://github.com/syslog-ng/syslog-ng/blob/syslog-ng-4.2.0/lib/multi-line/smart-multi-line.fsm * Use latest workflow run for release badge
2 parents 8b34e94 + a2409df commit f3a14b2

9 files changed

+102
-19
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION ?= focal-1.0.0-pre
1+
VERSION ?= noble-1.0.0
22
ifdef BASE_IMAGE
33
BUILD_ARG = --build-arg BASE_IMAGE=$(BASE_IMAGE)
44
ifndef NAME

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# A minimal Ubuntu base image modified for Docker-friendliness
22

3-
[![Release](https://github.com/phusion/baseimage-docker/actions/workflows/main.yml/badge.svg?branch=focal-1.1.0)](https://github.com/phusion/baseimage-docker/actions/workflows/main.yml)
3+
[![Release](https://github.com/phusion/baseimage-docker/actions/workflows/main.yml/badge.svg)](https://github.com/phusion/baseimage-docker/actions/workflows/main.yml)
44

55
_Baseimage-docker only consumes 8.3 MB RAM and is much more powerful than Busybox or Alpine. See why below._
66

@@ -86,7 +86,7 @@ You can configure the stock `ubuntu` image yourself from your Dockerfile, so why
8686

8787
| Component | Why is it included? / Remarks |
8888
| ---------------- | ------------------- |
89-
| Ubuntu 22.04 LTS | The base system. |
89+
| Ubuntu 24.04 LTS | The base system. |
9090
| A **correct** init process | _Main article: [Docker and the PID 1 zombie reaping problem](http://blog.phusion.nl/2015/01/20/docker-and-the-pid-1-zombie-reaping-problem/)._ <br><br>According to the Unix process model, [the init process](https://en.wikipedia.org/wiki/Init) -- PID 1 -- inherits all [orphaned child processes](https://en.wikipedia.org/wiki/Orphan_process) and must [reap them](https://en.wikipedia.org/wiki/Wait_(system_call)). Most Docker containers do not have an init process that does this correctly. As a result, their containers become filled with [zombie processes](https://en.wikipedia.org/wiki/Zombie_process) over time. <br><br>Furthermore, `docker stop` sends SIGTERM to the init process, which stops all services. Unfortunately most init systems don't do this correctly within Docker since they're built for hardware shutdowns instead. This causes processes to be hard killed with SIGKILL, which doesn't give them a chance to correctly deinitialize things. This can cause file corruption. <br><br>Baseimage-docker comes with an init process `/sbin/my_init` that performs both of these tasks correctly. |
9191
| Fixes APT incompatibilities with Docker | See https://github.com/dotcloud/docker/issues/1024. |
9292
| syslog-ng | A syslog daemon is necessary so that many services - including the kernel itself - can correctly log to /var/log/syslog. If no syslog daemon is running, a lot of important messages are silently swallowed. <br><br>Only listens locally. All syslog messages are forwarded to "docker logs".<br><br>Why syslog-ng?<br>I've had bad experience with rsyslog. I regularly run into bugs with rsyslog, and once in a while it takes my log host down by entering a 100% CPU loop in which it can't do anything. Syslog-ng seems to be much more stable. |

README_ZH_cn_.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Baseimage-docker让这一切完美。在"内容"部分描述了所有这些修
8282

8383
| 模块 | 为什么包含这些?以及备注 |
8484
| ---------------- | ------------------- |
85-
| Ubuntu 22.04 LTS | 基础系统。 |
85+
| Ubuntu 24.04 LTS | 基础系统。 |
8686
| 一个**正确**的初始化进程 | *主要文章:[Docker和PID 1 僵尸进程回收问题](http://blog.phusion.nl/2015/01/20/docker-and-the-pid-1-zombie-reaping-problem/)*<br/><br/>根据Unix进程模型,[初始化进程](https://en.wikipedia.org/wiki/Init) -- PID 1 -- 继承了所有[孤立的子进程](https://en.wikipedia.org/wiki/Orphan_process),并且必须[进行回收](https://en.wikipedia.org/wiki/Wait_(system_call))。大多数Docker容器没有一个初始化进程可以正确的完成此操作,随着时间的推移会导致他们的容器出现了大量的[僵尸进程](https://en.wikipedia.org/wiki/Zombie_process)。<br/><br/>而且,`docker stop`发送SIGTERM信号给初始化进程,照理说此信号应该可以停止所有服务。不幸的是由于它们对硬件进行了关闭操作,导致Docker内的大多数初始化系统没有正确执行。这会导致进程强行被SIGKILL信号关闭,从而丧失了一个正确取消初始化设置的机会。这会导致文件损坏。<br/><br/>Baseimage-docker配有一个名为`/sbin/my_init`的初始化进程来同时正确的完成这些任务。 |
8787
| 修复了APT与Docker不兼容的问题 | 详情参见:https://github.com/dotcloud/docker/issues/1024|
8888
| syslog-ng | 对于很多服务-包括kernel自身,都需要一个syslog后台进程,以便可以正确的将log输出到/var/log/syslog中。如果没有运行syslog后台进程,很多重要的信息就会默默的丢失了。<br/><br/>只对本地进行监听。所有syslog信息会被转发给“docker logs”。 |

README_zh_tw.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Baseimage-docker讓這一切完美。在"內容"部分描述了所有這些修
8282

8383
| 模塊 | 爲什麼包含這些?以及備註 |
8484
| ---------------- | ------------------- |
85-
| Ubuntu 22.04 LTS | 基礎系統。 |
85+
| Ubuntu 24.04 LTS | 基礎系統。 |
8686
| 一個**正確**的初始化行程 | *主要文章:[Docker和PID 1 殭屍行程回收問題](http://blog.phusion.nl/2015/01/20/docker-and-the-pid-1-zombie-reaping-problem/)*<br/><br/>根據Unix行程模型,[初始化行程](https://en.wikipedia.org/wiki/Init) -- PID 1 -- 繼承了所有[孤立的子行程](https://en.wikipedia.org/wiki/Orphan_process),並且必須[進行回收](https://en.wikipedia.org/wiki/Wait_(system_call))。大多數Docker容器沒有一個初始化行程可以正確的完成此操作,隨着時間的推移會導致他們的容器出現了大量的[殭屍行程](https://en.wikipedia.org/wiki/Zombie_process)。<br/><br/>而且,`docker stop`發送SIGTERM信號給初始化行程,照理說此信號應該可以停止所有服務。不幸的是由於它們對硬體進行了關閉操作,導致Docker內的大多數初始化系統沒有正確執行。這會導致行程強行被SIGKILL信號關閉,從而喪失了一個正確取消初始化設置的機會。這會導致文件損壞。<br/><br/>Baseimage-docker配有一個名爲`/sbin/my_init`的初始化行程來同時正確的完成這些任務。 |
8787
| 修復了APT與Docker不兼容的問題 | 詳情參見:https://github.com/dotcloud/docker/issues/1024|
8888
| syslog-ng | 對於很多服務-包括kernel自身,都需要一個syslog後臺行程,以便可以正確的將log輸出到/var/log/syslog中。如果沒有運行syslog後臺行程,很多重要的信息就會默默的丟失了。<br/><br/>只對本地進行監聽。所有syslog信息會被轉發給“docker logs”。 |

Vagrantfile

+10-11
Original file line numberDiff line numberDiff line change
@@ -9,37 +9,37 @@ Vagrant.configure("2") do |config|
99
# The most common configuration options are documented and commented below.
1010
# For a complete reference, please see the online documentation at
1111
# https://docs.vagrantup.com.
12-
12+
1313
# Every Vagrant development environment requires a box. You can search for
1414
# boxes at https://atlas.hashicorp.com/search.
15-
config.vm.box = "ubuntu/focal64"
15+
config.vm.box = "ubuntu/noble64"
1616
config.disksize.size = '50GB'
17-
17+
1818
# Disable automatic box update checking. If you disable this, then
1919
# boxes will only be checked for updates when the user runs
2020
# `vagrant box outdated`. This is not recommended.
2121
# config.vm.box_check_update = false
22-
22+
2323
# Create a forwarded port mapping which allows access to a specific port
2424
# within the machine from a port on the host machine. In the example below,
2525
# accessing "localhost:8080" will access port 80 on the guest machine.
2626
# config.vm.network "forwarded_port", guest: 80, host: 8080
27-
27+
2828
# Create a private network, which allows host-only access to the machine
2929
# using a specific IP.
3030
# config.vm.network "private_network", ip: "192.168.33.10"
31-
31+
3232
# Create a public network, which generally matched to bridged network.
3333
# Bridged networks make the machine appear as another physical device on
3434
# your network.
3535
# config.vm.network "public_network"
36-
36+
3737
# Share an additional folder to the guest VM. The first argument is
3838
# the path on the host to the actual folder. The second argument is
3939
# the path on the guest to mount the folder. And the optional third
4040
# argument is a set of non-required options.
4141
# config.vm.synced_folder "../data", "/vagrant_data"
42-
42+
4343
# Provider-specific configuration so you can fine-tune various
4444
# backing providers for Vagrant. These expose provider-specific options.
4545
# Example for VirtualBox:
@@ -54,14 +54,14 @@ Vagrant.configure("2") do |config|
5454
#
5555
# View the documentation for the provider you are using for more
5656
# information on available options.
57-
57+
5858
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
5959
# such as FTP and Heroku are also available. See the documentation at
6060
# https://docs.vagrantup.com/v2/push/atlas.html for more information.
6161
# config.push.define "atlas" do |push|
6262
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
6363
# end
64-
64+
6565
# Enable provisioning with a shell script. Additional provisioners such as
6666
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
6767
# documentation for more information about their specific syntax and use.
@@ -72,4 +72,3 @@ Vagrant.configure("2") do |config|
7272
config.vm.provision :shell,
7373
path: "vagrant-libs/bootstrap.sh"
7474
end
75-

image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=ubuntu:22.04
1+
ARG BASE_IMAGE=ubuntu:24.04
22
FROM $BASE_IMAGE
33

44
ARG QEMU_ARCH
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
#
2+
# Copyright 2023 Balazs Scheidler
3+
# Copyright 2016 Google Inc. All rights reserved.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
# The regular expressions were extracted from
18+
# https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions
19+
# and converted into a TSV format by Balazs Scheidler.
20+
#
21+
# List of tab separated fields
22+
#
23+
# comma-separated-states /regexp/ new_state
24+
#
25+
26+
# java
27+
start_state,java_start_exception /(?:Exception|Error|Throwable|V8 errors stack trace)[:\r\n]/ java_after_exception
28+
java_after_exception /^[\t ]*nested exception is:[\t ]*/ java_start_exception
29+
java_after_exception /^[\r\n]*$/ java_after_exception
30+
java_after_exception,java /^[\t ]+(?:eval )?at / java
31+
java_after_exception,java /^[\t ]+--- End of inner exception stack trace ---$/ java
32+
java_after_exception,java /^--- End of stack trace from previous location where exception was thrown ---$/ java
33+
java_after_exception,java /^[\t ]*(?:Caused by|Suppressed):/ java_after_exception
34+
java_after_exception,java /^[\t ]*... \d+ (?:more|common frames omitted)/ java
35+
36+
# python
37+
start_state /^Traceback \(most recent call last\):$/ python
38+
python /^[\t ]*File / python_code
39+
python_code /[^\t ]/ python
40+
python /^(?:[^\s.():]+\.)*[^\s.():]+:/ start_state
41+
42+
# PHP
43+
start_state /(?:PHP\ (?:Notice|Parse\ error|Fatal\ error|Warning):)|(?:exception\ '[^']+'\ with\ message\ ')/ php_stack_begin
44+
php_stack_begin /^Stack trace:/ php_stack_frames
45+
php_stack_frames /^#\d/ php_stack_frames
46+
php_stack_frames /^\s+thrown in / start_state
47+
48+
# Go
49+
start_state /\bpanic: / go_after_panic
50+
start_state /http: panic serving/ go_goroutine
51+
go_after_panic,go_after_signal,go_frame_1 /^$/ go_goroutine
52+
go_after_panic /^\[signal / go_after_signal
53+
go_goroutine /^goroutine \d+ \[[^\]]+\]:$/ go_frame_1
54+
go_frame_1 /^(?:[^\s.:]+\.)*[^\s.():]+\(|^created by / go_frame_2
55+
go_frame_2 /^\s/ go_frame_1
56+
57+
# Ruby
58+
start_state /Error \(.*\):$/ ruby_before_rails_trace
59+
ruby_before_rails_trace /^ $/ ruby
60+
ruby_before_rails_trace /^[\t ]+.*?\.rb:\d+:in `/ ruby
61+
ruby /^[\t ]+.*?\.rb:\d+:in `/ ruby
62+
63+
# Dart
64+
start_state /^Unhandled exception:$/ dart_exc
65+
dart_exc /^(Instance of)|(Exception)|(Bad state)|(IntegerDivisionByZeroException)|(Invalid argument)|(RangeError)|(Assertion failed)|(Cannot instantiate)|(Reading static variable)|(UnimplementedError)|(Unsupported operation)|(Concurrent modification)|(Out of Memory)|(Stack Overflow)/ dart_stack
66+
dart_exc /^'.+?':.+?$/ dart_type_err_1
67+
dart_type_err_1 /^#\d+\s+.+?\(.+?\)$/ dart_stack
68+
dart_type_err_1 /^.+?$/ dart_type_err_2
69+
dart_type_err_2 /^.*?\^.*?$/ dart_type_err_3
70+
dart_type_err_3 /^$/ dart_type_err_4
71+
dart_type_err_4 /^$/ dart_stack
72+
dart_exc /^FormatException/ dart_format_err_1
73+
dart_format_err_1 /^#\d+\s+.+?\(.+?\)$/ dart_stack
74+
dart_format_err_1 /^./ dart_format_err_2
75+
dart_format_err_2 /^.*?\^/ dart_format_err_3
76+
dart_format_err_3 /^$/ dart_stack
77+
dart_exc /^NoSuchMethodError:/ dart_method_err_1
78+
dart_method_err_1 /^Receiver:/ dart_method_err_2
79+
dart_method_err_2 /^Tried calling:/ dart_method_err_3
80+
dart_method_err_3 /^Found:/ dart_stack
81+
dart_method_err_3 /^#\d+\s+.+?\(.+?\)$/ dart_stack
82+
dart_stack /^#\d+\s+.+?\(.+?\)$/ dart_stack
83+
dart_stack /^<asynchronous suspension>$/ dart_stack

image/services/syslog-ng/syslog-ng.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@version: 3.35
1+
@version: 4.3
22
@include "scl.conf"
33

44
# Syslog-ng configuration file, compatible with default Debian syslogd
@@ -7,7 +7,7 @@
77
# First, set some global options.
88
options { chain_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no);
99
dns_cache(no); owner("root"); group("adm"); perm(0640);
10-
stats_freq(0); bad_hostname("^gconfd$");
10+
stats(freq(0)); bad_hostname("^gconfd$");
1111
};
1212

1313
########################

image/services/syslog-ng/syslog-ng.sh

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ SYSLOG_NG_BUILD_PATH=/bd_build/services/syslog-ng
99
$minimal_apt_get_install syslog-ng-core
1010
cp $SYSLOG_NG_BUILD_PATH/syslog-ng.init /etc/my_init.d/10_syslog-ng.init
1111
cp $SYSLOG_NG_BUILD_PATH/syslog-ng.shutdown /etc/my_init.post_shutdown.d/10_syslog-ng.shutdown
12+
cp $SYSLOG_NG_BUILD_PATH/smart-multi-line.fsm /usr/share/syslog-ng/smart-multi-line.fsm
1213
mkdir -p /var/lib/syslog-ng
1314
cp $SYSLOG_NG_BUILD_PATH/syslog_ng_default /etc/default/syslog-ng
1415
touch /var/log/syslog

0 commit comments

Comments
 (0)