mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
df2a0f9144
thanks @kb9gxk
6 lines
254 B
Bash
6 lines
254 B
Bash
#!/bin/bash
|
|
# This script runs before any custom containers start to adjust container common defaults
|
|
|
|
# Set a limit for container logs. 104857600 Bytes = 100 Megabytes
|
|
sed -i 's/max_log_size = -1/max_log_size = 104857600/g' /etc/containers/libpod.conf;
|