diff options
Diffstat (limited to 'scripts/vyatta-show-protocols')
-rwxr-xr-x | scripts/vyatta-show-protocols | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/vyatta-show-protocols b/scripts/vyatta-show-protocols index 4f3e0a92..0d349b45 100755 --- a/scripts/vyatta-show-protocols +++ b/scripts/vyatta-show-protocols @@ -25,10 +25,12 @@ use warnings; # Map from command line to config->XXX() function my %actions = ( - 'configured' => 'exists', + 'configured' => 'existsOrig', + 'exists' => 'exists', 'added' => 'isAdded', 'changed' => 'isChanged', 'deleted' => 'isDeleted', + 'modified' => 'isChangedOrDeleted', ); my %daemons = ( |