We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95119aa commit c50f864Copy full SHA for c50f864
build-scripts/postfix-install.sh
@@ -36,4 +36,11 @@ else
36
do_ubuntu
37
fi
38
39
+# Some services (eg. cron) will complain if this file does not exists, even if it's empty
40
+# The file is usually generated by update-locales, which is ran automatically when you do
41
+# `apt-get install locales`. So instead of adding another package, which at the moment we
42
+# do not need, we just create a simple "empty" file instead and hope to keep cron happy.
43
+mkdir -p /etc/default/
44
+echo "# File generated by postfix-install.sh" > /etc/default/locale
45
+
46
cp -r /etc/postfix /etc/postfix.template
0 commit comments