Skip to content

Commit

Permalink
Merge pull request #189 from grondo/excise-imp-kill
Browse files Browse the repository at this point in the history
remove `flux-imp kill` command
  • Loading branch information
mergify[bot] authored Nov 4, 2024
2 parents d1245cb + c93b143 commit de0fe2d
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 656 deletions.
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

0 comments on commit de0fe2d

Please sign in to comment.