Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the DM gunner optional; disable it on some machines. #2289

Merged
merged 3 commits into from
Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build/dm.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ expect ":KILL"
# Gun down dead demons.
respond "*" ":link taa; pwfile 999999, sysen1; pwfile >\r"
type ":vk\r"
respond "*" ":midas sys; atsign gunner_sysen2; gunner\r"
respond "*" ":midas sysbin;_sysen2; gunner\r"
expect ":KILL"
respond "*" ":link sys; atsign gunner, sysbin; gunner bin\r"
type ":vk\r"

# Line printer unspooler demon.
respond "*" ":midas sys; atsign unspoo_sysen1; unspoo\r"
Expand Down
3 changes: 3 additions & 0 deletions build/mchn/PT/custom.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
respond "*" ":midas /t device;chaos shutdo_sysnet;shutsr\r"
respond "end input with ^C" "ALLOW==177001\r\003"
expect ":KILL"

#Disable the DM gunner.
respond "*" ":delete sys;atsign gunner\r"
3 changes: 3 additions & 0 deletions build/mchn/TT/custom.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ respond "*" ":midas /t device;chaos shutdo_sysnet;shutsr\r"
respond "end input with ^C" "ALLOW==3036\r\003"
expect ":KILL"

#Disable the DM gunner.
respond "*" ":delete sys;atsign gunner\r"

#Gun down users that are idle and not logged in.
respond "*" ":link dragon; hourly gunner, cstacy; gunner bin\r"

Expand Down