diff options
author | William Carroll <wpcarro@gmail.com> | 2022-11-19T02·08-0800 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-11-19T02·11+0000 |
commit | 932c3b31bbb16b5d52d34fd65c51d2bd59f94762 (patch) | |
tree | d00aa584b9b2d9cd4e3d429208b9744c06a0b222 /users/wpcarro/tools/systemd-shell/setup.py | |
parent | 36f4547fb1c873a57d5f8e9342c2ae90b596d14a (diff) |
feat(wpcarro/tools): Support systemd-shell r/5290
Drop into a new shell environment with the same variables defined in a systemd unit file (for debugging purposes). Change-Id: Iaf513809b524f3f3e845b512450da71694bb7c7f Reviewed-on: https://cl.tvl.fyi/c/depot/+/7308 Autosubmit: wpcarro <wpcarro@gmail.com> Reviewed-by: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/tools/systemd-shell/setup.py')
-rw-r--r-- | users/wpcarro/tools/systemd-shell/setup.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/wpcarro/tools/systemd-shell/setup.py b/users/wpcarro/tools/systemd-shell/setup.py new file mode 100644 index 000000000000..f45e058e672e --- /dev/null +++ b/users/wpcarro/tools/systemd-shell/setup.py @@ -0,0 +1,9 @@ +from setuptools import setup + +setup( + name="systemd-shell", + version="0.0.1", + author="William Carroll", + author_email="wpcarro@gmail.com", + scripts=["systemd-shell"], +) |