summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-10-28 15:27:47 +0100
committerDaniil Baturin <daniil@baturin.org>2018-10-28 15:27:47 +0100
commit26335f877539ad13042d28e33e8171aa7c6f5b3b (patch)
treef94f21fbe932ddcd2221c9e16dbdf25a8329ff74
parent48b0890a8b97ca6b0013b8e53eca3e5d75968380 (diff)
downloadvyatta-config-mgmt-26335f877539ad13042d28e33e8171aa7c6f5b3b.tar.gz
vyatta-config-mgmt-26335f877539ad13042d28e33e8171aa7c6f5b3b.zip
T570: use the edit level agnostic option for config export on commit archiving.
-rwxr-xr-xscripts/vyatta-commit-push.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-commit-push.pl b/scripts/vyatta-commit-push.pl
index 17332d0..6edfd10 100755
--- a/scripts/vyatta-commit-push.pl
+++ b/scripts/vyatta-commit-push.pl
@@ -56,7 +56,7 @@ if (scalar(@uris) < 1) {
my $last_push_file = cm_get_last_push_file();
my $tmp_push_file = "/tmp/config.boot.$$";
-my $cmd = 'cli-shell-api showCfg --show-active-only';
+my $cmd = 'cli-shell-api showConfig --show-ignore-edit --show-active-only';
system("$cmd > $tmp_push_file");
if (-e $last_push_file and compare($last_push_file, $tmp_push_file) == 0) {