Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

broad stdout permissions #19

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
context:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

outputs:
commit_hash: ${{ steps.context.outputs.commit_hash }}
Expand All @@ -28,7 +28,7 @@ jobs:
release_name: ${{ env.RELEASE_NAME }}

build:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

needs: context

Expand Down
4 changes: 3 additions & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ done
CONFIG_FILE_DIRECTORY=/config
CONFIG_TEMPLATE_EXTENSION=tpl
CONFIG_FILE_EXTENSION=cf
# don't substitute missing ENV vars, they are for postfix to substitute.
echo "processing templates in ${CONFIG_FILE_DIRECTORY}:"
for CFG_TEMPLATE_IN in $(echo ${CONFIG_FILE_DIRECTORY}/*.${CONFIG_TEMPLATE_EXTENSION})
do
Expand Down Expand Up @@ -132,6 +131,9 @@ do
fi
done

echo "set stdout permission"
chmod ugo+rw /dev/stdout

echo "Verify postfix configuration"
/usr/sbin/postfix check

Expand Down
Loading