<?php
/**
* Daemon which spawns SSH to the local machine, used for ensuring.
*/
final class PhutilProcessSSHDaemon extends PhutilTortureTestDaemon {
protected function run() {
$root = phutil_get_library_root('phutil');
$root = dirname($root);
execx('ssh localhost -p 24 "sleep 120"');
}
}