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

remove flux-imp kill command #189

Merged
merged 3 commits into from
Nov 4, 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: 0 additions & 4 deletions doc/man8/flux-imp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ COMMANDS
**exec** command configuration can be found in
:man5:`flux-config-security-imp`.

**kill**
The **flux-imp kill** command is invoked by a multi-user instance to
send signals to jobs running as users other than the instance owner.

**run**
The **flux-imp run** command is used by a Flux instance to execute
arbitrary commands with privilege, typically a job prolog or epilog.
Expand Down
1 change: 0 additions & 1 deletion src/imp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ IMP_SOURCES = \
signals.h \
cgroup.c \
cgroup.h \
kill.c \
run.c \
exec/user.h \
exec/user.c \
Expand Down
5 changes: 0 additions & 5 deletions src/imp/impcmd-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ extern int imp_casign_unprivileged (struct imp_state *imp, struct kv *);
extern int imp_casign_privileged (struct imp_state *imp, struct kv *);
extern int imp_exec_unprivileged (struct imp_state *imp, struct kv *);
extern int imp_exec_privileged (struct imp_state *imp, struct kv *);
extern int imp_kill_unprivileged (struct imp_state *imp, struct kv *);
extern int imp_kill_privileged (struct imp_state *imp, struct kv *);
extern int imp_run_unprivileged (struct imp_state *imp, struct kv *);
extern int imp_run_privileged (struct imp_state *imp, struct kv *);

Expand All @@ -41,9 +39,6 @@ struct impcmd impcmd_list[] = {
{ "exec",
imp_exec_unprivileged,
imp_exec_privileged },
{ "kill",
imp_kill_unprivileged,
imp_kill_privileged },
{ "run",
imp_run_unprivileged,
imp_run_privileged },
Expand Down
185 changes: 0 additions & 185 deletions src/imp/kill.c

This file was deleted.

Loading
Loading