Previously we bwrap-ed the whole our.rb script. In this commit we switch it so that our.rb is run outside of bwrap, but every user command it executes is done inside bwrap. This allows us to use bwrap's "--die-with-parent" (along with "--unshare-pid") to kill off any forked processes when the parent processes is killed due to a timeout.
19 lines
348 B
Desktop File
19 lines
348 B
Desktop File
[Unit]
|
|
Description=our
|
|
After=our.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/home/kindrobot/wrk/our
|
|
ExecStart=/home/kindrobot/wrk/our/our.rb
|
|
Environment="OUR_NICK=your"
|
|
Environment="OUR_CHANNELS=#bots"
|
|
Environment="OUR_CMDS_DIR=/town/our"
|
|
Restart=always
|
|
RestartSec=5
|
|
StartLimitInterval=60s
|
|
StartLimitBurst=3
|
|
|
|
[Install]
|
|
WantedBy=default.target
|