summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-06-09 10:09:50 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-06-09 10:09:50 +0000
commitc0f13c0aca208670849148fbb9fb3770cdcafa99 (patch)
tree15f023765721667e789a4d7328fca00cfc2c989b /config-model
parent89b7b95346eacff1dfedf03828de888043dfd940 (diff)
Rename config-model programs to have vespa- prefix.
Temporarily add symlinks from old name to new name.
Diffstat (limited to 'config-model')
-rwxr-xr-xconfig-model/src/main/perl/vespa-deploy (renamed from config-model/src/main/perl/deploy)12
-rwxr-xr-xconfig-model/src/main/perl/vespa-deploy-application (renamed from config-model/src/main/perl/deploy-application)8
-rwxr-xr-xconfig-model/src/main/perl/vespa-expand-config.pl (renamed from config-model/src/main/perl/expand-config.pl)0
-rwxr-xr-xconfig-model/src/main/sh/vespa-validate-application (renamed from config-model/src/main/sh/validate-application)0
4 files changed, 10 insertions, 10 deletions
diff --git a/config-model/src/main/perl/deploy b/config-model/src/main/perl/vespa-deploy
index dc7b2132792..6db4aff672a 100755
--- a/config-model/src/main/perl/deploy
+++ b/config-model/src/main/perl/vespa-deploy
@@ -220,28 +220,28 @@ sub usage {
when ("activate") { usage_activate(); }
when ("fetch") { usage_fetch(); }
default {
- print "Usage: deploy [-h] [-v] [-f] [-t] [-p] [<command>] [args]\n";
+ print "Usage: vespa-deploy [-h] [-v] [-f] [-t] [-p] [<command>] [args]\n";
print "Supported commands: 'upload', 'prepare', 'activate', 'fetch' and 'help'\n";
print "Supported options: '-h' (help), '-v' (verbose), '-f' (force/ignore validation errors), '-t' (timeout in seconds), '-p' (config server http port)\n";
- print "Try 'deploy help <command>' to get more help\n";
+ print "Try 'vespa-deploy help <command>' to get more help\n";
}
}
}
sub usage_upload {
- print "Usage: deploy upload <application package>\n";
+ print "Usage: vespa-deploy upload <application package>\n";
}
sub usage_prepare {
- print "Usage: deploy prepare [<session_id> | <application package>]\n";
+ print "Usage: vespa-deploy prepare [<session_id> | <application package>]\n";
}
sub usage_activate {
- print "Usage: deploy activate [<session_id>]\n";
+ print "Usage: vespa-deploy activate [<session_id>]\n";
}
sub usage_fetch {
- print "Usage: deploy fetch <output directory>\n";
+ print "Usage: vespa-deploy fetch <output directory>\n";
}
sub fetch_active_application {
diff --git a/config-model/src/main/perl/deploy-application b/config-model/src/main/perl/vespa-deploy-application
index 2fe5675329c..736211aa138 100755
--- a/config-model/src/main/perl/deploy-application
+++ b/config-model/src/main/perl/vespa-deploy-application
@@ -1,6 +1,6 @@
#!/usr/bin/env perl
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-# This script is a wrapper exposing the legacy deploy-application script
+# This script is a wrapper exposing the legacy vespa-deploy-application script
use strict;
use warnings;
@@ -50,16 +50,16 @@ if ($dryrun) {
$flags .= "-n ";
}
-print "WARNING: deploy-application is deprecated, use 'deploy prepare' instead\n\n";
+print "WARNING: vespa-deploy-application is deprecated, use 'vespa-deploy prepare' instead\n\n";
-my $DEPLOY="deploy $flags prepare $app";
+my $DEPLOY="vespa-deploy $flags prepare $app";
system($DEPLOY);
if ($? == 0) { print "Activate the application by running 'activate-application'\n"; }
sub print_usage {
print "\n";
- print "usage: deploy-application <application-directory>\n";
+ print "usage: vespa-deploy-application <application-directory>\n";
print "Switches:\n";
print "-h This help text\n";
print "-d Debug (stack trace on exceptions)\n";
diff --git a/config-model/src/main/perl/expand-config.pl b/config-model/src/main/perl/vespa-expand-config.pl
index 198dc9f3447..198dc9f3447 100755
--- a/config-model/src/main/perl/expand-config.pl
+++ b/config-model/src/main/perl/vespa-expand-config.pl
diff --git a/config-model/src/main/sh/validate-application b/config-model/src/main/sh/vespa-validate-application
index 8fbcb98ea92..8fbcb98ea92 100755
--- a/config-model/src/main/sh/validate-application
+++ b/config-model/src/main/sh/vespa-validate-application