fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

sigremap.8.txt (1061B)


      1 @man sigremap 8 "MAY 2023" "%VERSION%" "fiss man page"
      2 @header sigremap(8) %VERSION%
      3 
      4 @title name Name
      5 
      6 *sigremap* - a minimal init system for Linux containers
      7 
      8 
      9 @title synopsis Synopsis
     10 
     11 *sigremap* [option] [old-signal=new-signal...] command [arguments ...]
     12 
     13 
     14 @title description Description
     15 
     16 *sigremap* is a simple process supervisor that forwards signals to children. It is designed to run as PID1 in minimal container environments.
     17 
     18 
     19 Optional arguments:
     20 
     21 @list
     22 *-c, --single*
     23 Run in single-child mode. In this mode, signals are only proxied to the direct child and not any of its descendants.
     24 
     25 *-v, --verbose*
     26 Print debugging information to stderr.
     27 
     28 *-V, --version*
     29 Print the current version and exit.
     30 
     31 *old-signal=new-signal*
     32 Rewrite received signal s to new signal r before proxying. To ignore (not proxy) a signal, rewrite it to 0. This option can be specified multiple times.
     33 @endlist
     34 
     35 @title authors Authors
     36 
     37 *sigremap* is based on [dumb-init by Yelp](https://github.com/Yelp/dumb-init).
     38 
     39 Rewritten by Friedel Schon <[email protected]>