gitextract_pnlxl5op/ ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README ├── README.md ├── chaperone/ │ ├── __init__.py │ ├── cproc/ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── commands.py │ │ ├── process_manager.py │ │ ├── pt/ │ │ │ ├── __init__.py │ │ │ ├── cron.py │ │ │ ├── forking.py │ │ │ ├── inetd.py │ │ │ ├── notify.py │ │ │ ├── oneshot.py │ │ │ └── simple.py │ │ ├── subproc.py │ │ ├── version.py │ │ └── watcher.py │ ├── cutil/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── env.py │ │ ├── errors.py │ │ ├── events.py │ │ ├── format.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── notify.py │ │ ├── patches.py │ │ ├── proc.py │ │ ├── servers.py │ │ ├── syslog.py │ │ ├── syslog_handlers.py │ │ └── syslog_info.py │ └── exec/ │ ├── __init__.py │ ├── chaperone.py │ ├── envcp.py │ ├── sdnotify.py │ ├── sdnotify_exec.py │ └── telchap.py ├── doc/ │ ├── .gitignore │ ├── Makefile │ ├── docserver/ │ │ ├── README │ │ ├── build/ │ │ │ ├── Dockerfile │ │ │ └── install.sh │ │ ├── build.sh │ │ ├── chaperone.d/ │ │ │ ├── 010-start.conf │ │ │ └── 120-apache2.conf │ │ ├── etc/ │ │ │ ├── apache2.conf │ │ │ └── init.sh │ │ └── run.sh │ └── source/ │ ├── _static/ │ │ └── custom.css │ ├── _templates/ │ │ └── layout.html │ ├── conf.py │ ├── guide/ │ │ ├── chap-docker-simple.rst │ │ ├── chap-docker-smaller.rst │ │ ├── chap-docker.rst │ │ ├── chap-intro.rst │ │ ├── chap-other.rst │ │ └── chap-using.rst │ ├── includes/ │ │ ├── defs.rst │ │ └── incomplete.rst │ ├── index.rst │ ├── ref/ │ │ ├── command-line.rst │ │ ├── config-format.rst │ │ ├── config-global.rst │ │ ├── config-logging.rst │ │ ├── config-service.rst │ │ ├── config.rst │ │ ├── env.rst │ │ ├── index.rst │ │ ├── utilities.rst │ │ └── utility-envcp.rst │ └── status.rst ├── samples/ │ ├── README │ ├── chaperone-devbase/ │ │ ├── Dockerfile │ │ ├── apps/ │ │ │ ├── bin/ │ │ │ │ └── README │ │ │ ├── chaperone.d/ │ │ │ │ └── 010-start.conf │ │ │ ├── etc/ │ │ │ │ ├── README │ │ │ │ └── init.sh │ │ │ └── init.d/ │ │ │ └── README │ │ ├── build-image.sh │ │ └── install.sh │ ├── chaperone-lamp/ │ │ ├── Dockerfile │ │ ├── apps/ │ │ │ ├── chaperone.d/ │ │ │ │ ├── 105-mysqld.conf │ │ │ │ └── 120-apache2.conf │ │ │ ├── etc/ │ │ │ │ ├── apache2.conf │ │ │ │ └── mysql/ │ │ │ │ ├── my.cnf │ │ │ │ └── start_mysql.sh │ │ │ ├── init.d/ │ │ │ │ ├── mysql.sh │ │ │ │ └── phpmyadmin.sh │ │ │ └── www/ │ │ │ ├── default/ │ │ │ │ └── index.php │ │ │ └── sites.d/ │ │ │ └── default.conf │ │ ├── build-image.sh │ │ └── install.sh │ ├── docsample/ │ │ ├── Dockerfile │ │ ├── README │ │ └── chaperone.conf │ └── setup-bin/ │ ├── build │ ├── ct_setproxy │ └── dot.bashrc ├── sandbox/ │ ├── .gitignore │ ├── .shinit │ ├── README │ ├── bare_startup.sh │ ├── bareimage/ │ │ ├── Dockerfile │ │ └── install-bareimage.sh │ ├── bash.bashrc │ ├── bin/ │ │ ├── chaperone │ │ ├── cps │ │ ├── fakeentry │ │ └── repeat │ ├── centos.d/ │ │ ├── apache.conf │ │ ├── app.conf │ │ ├── cron.conf │ │ └── sys1.conf │ ├── distserv/ │ │ ├── chaperone.d/ │ │ │ ├── 005-config.conf │ │ │ ├── 010-start.conf │ │ │ └── 120-apache2.conf │ │ ├── etc/ │ │ │ └── apache2.conf │ │ └── run.sh │ ├── etc/ │ │ ├── apache2.conf │ │ └── makezombie.conf │ ├── test.d/ │ │ ├── apache.conf │ │ ├── cron.conf │ │ └── sys1.conf │ ├── testbare │ ├── testcent │ ├── testdock │ ├── testimage │ ├── testvar │ └── user.d/ │ └── sys1.conf ├── setup.py └── tests/ ├── .gitignore ├── README.md ├── bin/ │ ├── chaperone │ ├── daemon │ ├── daemonutil.py │ ├── envcp │ ├── expect-lite-command-run │ ├── expect-lite-image-run │ ├── expect-test-command │ ├── expect-test-image │ ├── get-serial │ ├── is-running │ ├── kill-from-pidfile │ ├── logecho │ ├── proctool │ ├── read_from_port │ ├── sdnotify │ ├── sdnotify-exec │ ├── talkback │ ├── telchap │ └── test-driver ├── el-tests/ │ ├── basic-1/ │ │ ├── chaperone.conf │ │ ├── test-001.elt │ │ └── test-002.elt │ ├── cron-1/ │ │ ├── chaperone.conf │ │ ├── simulate-rotate.sh │ │ ├── test-001.elt │ │ ├── test-004.elt │ │ ├── test-005.elt │ │ ├── test-006.elt │ │ ├── test-007.elt │ │ └── test-008.elt │ ├── exitkills-1/ │ │ ├── chaperone.conf │ │ └── test-001.elt │ ├── fork-1/ │ │ ├── chaperone.conf │ │ ├── test-001.elt │ │ ├── test-001b.elt │ │ ├── test-003.elt │ │ └── test-004.elt │ ├── inetd-1/ │ │ ├── chaperone.conf │ │ ├── test-001.elt │ │ └── test-002.elt │ ├── notify-1/ │ │ ├── chaperone.conf │ │ ├── test-001.elt │ │ ├── test-001b.elt │ │ ├── test-001c.elt │ │ ├── test-001d.elt │ │ └── test-001e.elt │ ├── simple-1/ │ │ ├── chaperone.conf │ │ ├── test-001.elt │ │ ├── test-002.elt │ │ ├── test-003.elt │ │ └── test-004.elt │ └── simple-2/ │ ├── chaperone.conf │ ├── test-001.elt │ ├── test-002.elt │ ├── test-003.elt │ └── test-004.elt ├── env_expand.py ├── env_parse.py ├── events.py ├── prefix.py ├── run-all-tests.sh ├── run-el.sh ├── run-shell.sh ├── service_order.py └── syslog_spec.py