=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== supervisor-4.2.1/docs/configuration.rst-16- supervisor-4.2.1/docs/configuration.rst:17:#. :file:`$CWD/supervisord.conf` supervisor-4.2.1/docs/configuration.rst-18- supervisor-4.2.1/docs/configuration.rst:19:#. :file:`$CWD/etc/supervisord.conf` supervisor-4.2.1/docs/configuration.rst-20- ############################################## supervisor-4.2.1/docs/configuration.rst-257- supervisor-4.2.1/docs/configuration.rst:258: *Default*: :file:`$CWD/supervisord.log` supervisor-4.2.1/docs/configuration.rst-259- ############################################## supervisor-4.2.1/docs/configuration.rst-309- supervisor-4.2.1/docs/configuration.rst:310: *Default*: :file:`$CWD/supervisord.pid` supervisor-4.2.1/docs/configuration.rst-311- ############################################## supervisor-4.2.1/docs/configuration.rst-633- relative (e.g. ``programname``). If it is relative, the supervisor-4.2.1/docs/configuration.rst:634: supervisord's environment ``$PATH`` will be searched for the supervisor-4.2.1/docs/configuration.rst-635- executable. Programs can accept arguments, e.g. ``/path/to/program ############################################## supervisor-4.2.1/docs/logging.rst-16-``logfile`` parameter in the ``[supervisord]`` section of the supervisor-4.2.1/docs/logging.rst:17:configuration file, defaulting to :file:`$CWD/supervisord.log`. supervisor-4.2.1/docs/logging.rst-18-Sample activity log traffic is shown in the example below. Some lines ############################################## supervisor-4.2.1/docs/running.rst-42- supervisor-4.2.1/docs/running.rst:43:To start :program:`supervisord`, run :file:`$BINDIR/supervisord`. The supervisor-4.2.1/docs/running.rst-44-resulting process will daemonize itself and detach from the terminal. supervisor-4.2.1/docs/running.rst:45:It keeps an operations log at :file:`$CWD/supervisor.log` by default. supervisor-4.2.1/docs/running.rst-46- ############################################## supervisor-4.2.1/docs/running.rst-175- supervisor-4.2.1/docs/running.rst:176:To start :program:`supervisorctl`, run ``$BINDIR/supervisorctl``. A supervisor-4.2.1/docs/running.rst-177-shell will be presented that will allow you to control the processes ############################################## supervisor-4.2.1/docs/running.rst-386-the ``pidfile`` parameter in the ``[supervisord]`` section of the supervisor-4.2.1/docs/running.rst:387:configuration file (by default it's :file:`$CWD/supervisord.pid`). supervisor-4.2.1/docs/running.rst-388- ############################################## supervisor-4.2.1/docs/subprocess.rst-128-The :program:`pidproxy` program is put into your configuration's supervisor-4.2.1/docs/subprocess.rst:129:``$BINDIR`` when supervisor is installed (it is a "console script"). supervisor-4.2.1/docs/subprocess.rst-130- ############################################## supervisor-4.2.1/supervisor/datatypes.py-184- supervisor-4.2.1/supervisor/datatypes.py:185: def addr(self): # pragma: no cover supervisor-4.2.1/supervisor/datatypes.py-186- raise NotImplementedError ############################################## supervisor-4.2.1/supervisor/datatypes.py-202- supervisor-4.2.1/supervisor/datatypes.py:203: def addr(self): supervisor-4.2.1/supervisor/datatypes.py-204- return self.host, self.port ############################################## supervisor-4.2.1/supervisor/datatypes.py-209- sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) supervisor-4.2.1/supervisor/datatypes.py:210: sock.bind(self.addr()) supervisor-4.2.1/supervisor/datatypes.py-211- except: ############################################## supervisor-4.2.1/supervisor/datatypes.py-230- supervisor-4.2.1/supervisor/datatypes.py:231: def addr(self): supervisor-4.2.1/supervisor/datatypes.py-232- return self.path ############################################## supervisor-4.2.1/supervisor/datatypes.py-238- try: supervisor-4.2.1/supervisor/datatypes.py:239: sock.bind(self.addr()) supervisor-4.2.1/supervisor/datatypes.py-240- self._chown() ############################################## supervisor-4.2.1/supervisor/http.py-488- sock.setblocking(0) supervisor-4.2.1/supervisor/http.py:489: self.set_reuse_addr() supervisor-4.2.1/supervisor/http.py-490- ############################################## supervisor-4.2.1/supervisor/http.py-543- try: supervisor-4.2.1/supervisor/http.py:544: self.server_name = socket.gethostbyaddr (ip)[0] supervisor-4.2.1/supervisor/http.py-545- except socket.error: ############################################## supervisor-4.2.1/supervisor/medusa/asyncore_25.py-269- supervisor-4.2.1/supervisor/medusa/asyncore_25.py:270: def set_reuse_addr(self): supervisor-4.2.1/supervisor/medusa/asyncore_25.py-271- # try to re-use a server port if possible ############################################## supervisor-4.2.1/supervisor/medusa/http_server.py-670- supervisor-4.2.1/supervisor/medusa/http_server.py:671: self.set_reuse_addr() supervisor-4.2.1/supervisor/medusa/http_server.py-672- self.bind ((ip, port)) ############################################## supervisor-4.2.1/supervisor/medusa/http_server.py-681- try: supervisor-4.2.1/supervisor/medusa/http_server.py:682: self.server_name = socket.gethostbyaddr (ip)[0] supervisor-4.2.1/supervisor/medusa/http_server.py-683- except socket.error: ############################################## supervisor-4.2.1/supervisor/tests/base.py-351- supervisor-4.2.1/supervisor/tests/base.py:352: def addr(self): supervisor-4.2.1/supervisor/tests/base.py-353- return 'dummy addr' ############################################## supervisor-4.2.1/supervisor/tests/test_datatypes.py-455- supervisor-4.2.1/supervisor/tests/test_datatypes.py:456: def test_addr(self): supervisor-4.2.1/supervisor/tests/test_datatypes.py-457- conf = self._makeOne('127.0.0.1', 8675) supervisor-4.2.1/supervisor/tests/test_datatypes.py:458: addr = conf.addr() supervisor-4.2.1/supervisor/tests/test_datatypes.py-459- self.assertEqual(addr, ('127.0.0.1', 8675)) ############################################## supervisor-4.2.1/supervisor/tests/test_datatypes.py-462- conf = self._makeOne('localhost', '5001') supervisor-4.2.1/supervisor/tests/test_datatypes.py:463: addr = conf.addr() supervisor-4.2.1/supervisor/tests/test_datatypes.py-464- self.assertEqual(addr, ('localhost', 5001)) ############################################## supervisor-4.2.1/supervisor/tests/test_datatypes.py-470- self.assertTrue(reuse) supervisor-4.2.1/supervisor/tests/test_datatypes.py:471: self.assertEqual(conf.addr(), sock.getsockname()) #verifies that bind was called supervisor-4.2.1/supervisor/tests/test_datatypes.py-472- sock.close() ############################################## supervisor-4.2.1/supervisor/tests/test_datatypes.py-512- supervisor-4.2.1/supervisor/tests/test_datatypes.py:513: def test_get_addr(self): supervisor-4.2.1/supervisor/tests/test_datatypes.py-514- conf = self._makeOne('/tmp/foo.sock') supervisor-4.2.1/supervisor/tests/test_datatypes.py:515: addr = conf.addr() supervisor-4.2.1/supervisor/tests/test_datatypes.py-516- self.assertEqual(addr, '/tmp/foo.sock') ############################################## supervisor-4.2.1/supervisor/tests/test_datatypes.py-536- # verifies that bind was called supervisor-4.2.1/supervisor/tests/test_datatypes.py:537: self.assertEqual(conf.addr(), sock.getsockname()) supervisor-4.2.1/supervisor/tests/test_datatypes.py-538- sock.close() ############################################## supervisor-4.2.1/debian/supervisor.init-67- # Obtain the pid and check it against the binary name supervisor-4.2.1/debian/supervisor.init:68: pid=`cat $PIDFILE` supervisor-4.2.1/debian/supervisor.init-69- running_pid $pid $DAEMON || return 1