diff options
Diffstat (limited to 'paludis/repositories/e/ebuild/sydbox.bash')
-rw-r--r-- | paludis/repositories/e/ebuild/sydbox.bash | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/paludis/repositories/e/ebuild/sydbox.bash b/paludis/repositories/e/ebuild/sydbox.bash index 2c2995527..7628e6510 100644 --- a/paludis/repositories/e/ebuild/sydbox.bash +++ b/paludis/repositories/e/ebuild/sydbox.bash @@ -223,6 +223,14 @@ esandbox_1() [[ ${#} < 1 ]] && die "${FUNCNAME} ${cmd} takes at least one extra argument" sydbox_internal_net_1 "filter/network" '-' "${@}" ;; + kill) + [[ ${#} < 1 ]] && die "${FUNCNAME} ${cmd} takes at least one extra argument" + sydbox_internal_path_1 "exec/kill_if_match" "+" "${@}" + ;; + resume) + [[ ${#} < 1 ]] && die "${FUNCNAME} ${cmd} takes at least one extra argument" + sydbox_internal_path_1 "exec/resume_if_match" "+" "${@}" + ;; hack_toolong|nohack_toolong) ebuild_notice "warning" "${FUNCNAME} ${cmd} is not implemented for sydbox-1" false;; @@ -340,6 +348,9 @@ esandbox_0() { [[ ${#} < 1 ]] && die "${FUNCNAME} ${cmd} takes at least one extra argument" sydbox_internal_net "rmfilter_net" "${@}" ;; + kill|resume) + ebuild_notice "warning" "${FUNCNAME} ${cmd} is not implemented for sydbox-0" + ;; *) die "${FUNCNAME} subcommand ${cmd} unrecognised" ;; |