- commands/group/: 17 files, all subcommands migrated - helpers.sh: real implementations, no invented functions - set_main: uses peers::set_main_group - rename: json::set + mv - peer add/remove: group::add_peer, group::remove_peer - block/unblock: block::add_group, block::remove_group - purge-stale: inline stale detection via group::peers - audit: no invented helper functions - logs: command::load_subcmd logs show for direct function access - logs/helpers.sh: extracted shared functions (follow, show_fw, show_wg, show_merged) - group rule unassign: stub (not yet implemented) - notes: group watch pending, monitor module refactor pending
19 lines
661 B
Bash
19 lines
661 B
Bash
#!/usr/bin/env bash
|
|
# commands/group/rule.sh
|
|
|
|
function cmd::group::rule::on_load() {
|
|
flag::define --name value "Group name" required label:name
|
|
flag::define --rule value "Rule name" required label:rule
|
|
flag::define --action value "Action" required choices:assign,unassign label:action
|
|
}
|
|
|
|
function cmd::group::rule::run() {
|
|
flag::parse "$@" || return 1
|
|
local name; name=$(flag::value --name)
|
|
local rule; rule=$(flag::value --rule)
|
|
local action; action=$(flag::value --action)
|
|
case "$action" in
|
|
assign) cmd::group::_rule_assign_impl "$name" "$rule" ;;
|
|
unassign) cmd::group::_rule_unassign_impl "$name" "$rule" ;;
|
|
esac
|
|
}
|