diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-07-14 18:49:09 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-07-14 18:49:09 -0500 |
commit | 9f1ff5427e0f72f2bded287be6e1d4cf442945cb (patch) | |
tree | c41d95dab7229423062c465d3bec530c0fe1a7ea /scripts | |
parent | 037df4c460075b74a8e2c16b2d62a65807b293d9 (diff) | |
download | vyatta-cfg-9f1ff5427e0f72f2bded287be6e1d4cf442945cb.tar.gz vyatta-cfg-9f1ff5427e0f72f2bded287be6e1d4cf442945cb.zip |
Don't allow users to set migration comments
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-save-config.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/vyatta-save-config.pl b/scripts/vyatta-save-config.pl index 51417b6..6dc833c 100755 --- a/scripts/vyatta-save-config.pl +++ b/scripts/vyatta-save-config.pl @@ -107,6 +107,7 @@ my $show_cmd = 'cli-shell-api showConfig --show-active-only --show-ignore-edit'; if ($show_default) { $show_cmd .= ' --show-show-defaults'; } +# add a sed command to remove unwanted configuration comments. $show_cmd .= "| sed -e \'/--- CONFIGURATION COMMENTED OUT DURING MIGRATION BELOW ---/"; $show_cmd .= ",/--- CONFIGURATION COMMENTED OUT DURING MIGRATION ABOVE ---/d\'"; open(my $show_fd, '-|', $show_cmd) or die 'Cannot execute config output'; |