mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
10 lines
215 B
Python
Executable File
10 lines
215 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import os
|
|
|
|
# Fix some permissions
|
|
os.system("mkdir -p /data/gpg")
|
|
os.system("chown -R www-data:www-data /data")
|
|
|
|
# Run apache
|
|
os.execv("/usr/local/bin/apache2-foreground", ["apache2-foreground"]) |