exec-notify/README.md
2021-07-22 13:01:18 +02:00

2.5 KiB
Raw Blame History

execNotify

  • Send email notification if command fails with execNotify.
  • Send unconditional notifications with notify.

Installation

Create a venv and install the module from TestPyPI:

python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps de-p1st-execNotify

The above command uses the parameter --no-deps:

Since TestPyPI doesnt have the same packages as the live PyPI, its possible that attempting to install dependencies may fail or install something unexpected. While this package doesnt have any dependencies, its a good practice to avoid installing dependencies when using TestPyPI.

Configuration

Create configuration file /etc/execNotify/cfg.ini.

For the required fields, see ./etc/execNotify/cfg.ini.example

Usage

Usage of execNotify

Add execNotify in front of your command to execute.

You can pipe into execNotify but not from execNotify as the output gets modified.

Example:

execNotify ls /non/existent/file will mail you the exit code, stdout and stderr of ls /non/existent/file

Usage of notify

Send stdout via mail:

echo "Hello world!" | notify

Send stdout and stderr via mail:

echo "Hello world!" 2>&1 | notify

Send stdout and specify an optional email subject:

echo "Hello world!" | notify "someSubject"

Send message without using a pipe:

notify "someSubject" "Hello World! What's up?"

Development

When started with environment variable DE_P1ST_EXEC_NOTIFY set, then the configuration file is read from ./etc/execNotify/cfg.ini.

Uploading to TestPyPI

More detailed instructions can be found at https://packaging.python.org/tutorials/packaging-projects/

  1. Set up a venv
  2. Develop and test locally
  3. Increase/Adjust [metadata][version] in setup.cfg
  4. Install the build and twine modules to your venv.
  5. Next generate a distribution archive:
python3 -m build
  1. Upload the distribution packages with twine. For the username, use __token__. For the password, use a test.pypi.org API token:
python3 -m twine upload --repository testpypi dist/*
  1. Congratulations! You can view the uploaded module under: