mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-12-02 11:42:41 +01:00
22 lines
415 B
PHP
22 lines
415 B
PHP
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
require_once dirname(__FILE__).'/../../__init_script__.php';
|
||
|
|
||
|
// This script just creates a process which is difficult to terminate. It is
|
||
|
// used for daemon resilience tests.
|
||
|
|
||
|
declare(ticks = 1);
|
||
|
pcntl_signal(SIGTERM, 'ignore');
|
||
|
pcntl_signal(SIGINT, 'ignore');
|
||
|
|
||
|
function ignore($signo) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
echo pht('Resisting death; sleeping forever...')."\n";
|
||
|
|
||
|
while (true) {
|
||
|
sleep(60);
|
||
|
}
|