You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
215 B
Python
10 lines
215 B
Python
6 years ago
|
#!/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"])
|