mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
10 lines
231 B
Bash
10 lines
231 B
Bash
#! /usr/bin/php
|
|
<?php
|
|
if (posix_geteuid() == 0) {
|
|
$info = posix_getpwnam("arsse");
|
|
if ($info) {
|
|
posix_setgid($info['gid']);
|
|
posix_setuid($info['uid']);
|
|
}
|
|
}
|
|
require "/usr/share/webapps/arsse/arsse.php";
|