Skip to main content

Run other programs in background

Project description

backrun

Run other (whitelisted) programs/scripts in background (and maybe as another userid) and save stdout/stderr in log. You may need this when you want to start other long-running scripts (like sync databases) from web-UI.

Install

# for this user only
pipx install backrun

# for all users
sudo PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install backrun

# old fashioned way
pip3 install backrun

Run background tasks

Prepare config file backrun.toml, and run backrun.

When you need to start some background process, do this:

echo script1 > /var/backrun/task/123

This will create task file to run script1 with id 123.

Almost immediately backrun will start to execute script and write stdout/stderr to /var/backrun/tasklog/123.log.

When script will finish, backrun will delete task file.

Details

Script will be executed with uid of backrun script.

Backrun reads only first like of taskfile, so you can put everything (any text, YAML, JSON) starting with 2nd line and script can read it.

script will get environment of backrun. backrun will set two new environment variables for script: TASKID - if of task (e.g. "123"), TASKFILE - path to task file. If user is set, HOME variable is redefined too.

Example files

config file

Config file name is either passed as first argument to backrun or first existing file in: ./backrun.toml, ~/backrun.toml, /etc/backrun.toml.

taskdir = "/var/backrun/task"
logdir = "/var/backrun/tasklog"
logfile = '/var/backrun/backrun.log'

[scripts]
    [scripts.script1]
    path="/usr/local/bin/script1.sh"

    [scripts.script2]
    path="/usr/local/bin/script1.sh"
    user="myuser"

script file (script1.sh)

#!/bin/bash

log(){
    echo `date "+%Y-%m-%d %H:%M:%S"` $*
}

log started as user `whoami`
sleep 10
>&2 log "error"
log finished

systemd service file

change User and ExecStart

[Unit]
Description=backrun: run whitelisted scripts in background

[Service]
ExecStart=/usr/local/bin/backrun
# User=xenon

[Install]
WantedBy=multi-user.target

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

backrun-0.0.7.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

backrun-0.0.7-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file backrun-0.0.7.tar.gz.

File metadata

  • Download URL: backrun-0.0.7.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.25.2

File hashes

Hashes for backrun-0.0.7.tar.gz
Algorithm Hash digest
SHA256 ebdf47b4f40221b1ca46038a2f30e7d02f5260f079be13107cc891c00afb6570
MD5 fc4327fe1d64c283469b15f8fcbc0558
BLAKE2b-256 25f0767fe53f57fc7302b471db07da8ab517ff180832a722a7c2326624e7e5ff

See more details on using hashes here.

File details

Details for the file backrun-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: backrun-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.25.2

File hashes

Hashes for backrun-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 91fdbb609c49ebb1b97fb4a6bfcbc66fc5b2d52eaa056c420bdaceaa01310913
MD5 70d29002078c7ef5224395d09069208a
BLAKE2b-256 4e12edd75e4832dc165bc47c6ac71e39b0eab17c165c2de1048570a92a1b0284

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page