Add files via upload

This commit is contained in:
Tommy
2021-11-02 22:32:22 -04:00
committed by GitHub
parent 15cfee0043
commit 76bfa90fca
11 changed files with 1052 additions and 1 deletions

3
Mailcow/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Notes
1. mailcow-updater can be used instead of auto-updater to take advantage of mailcow's update.sh script
2. You will need to compile and install the my-pdatesh module for SELinux to avoid the 203/EXEC error.

View File

@@ -0,0 +1,14 @@
[Unit]
Description=Mailcow Automatic Updater
After=docker.service
Wants=network-online.target
Requires=docker.service
[Service]
User=root
Group=root
WorkingDirectory=/opt/mailcow-dockerized/
ExecStart=/opt/mailcow-dockerized/update.sh --force
[Install]
WantedBy=multi-user.target

7
Mailcow/my-pdatesh.te Normal file
View File

@@ -0,0 +1,7 @@
module my-pdatesh 1.0;
require {
type init_t;
type var_t;
class file { execute execute_no_trans open read };
}