summaryrefslogtreecommitdiffstats
path: root/src/etc/phpshellsessions
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-10-12 18:51:05 -0700
committerRenato Botelho <renato@netgate.com>2016-10-13 10:25:31 -0300
commitef30fa510f5bac167ec9e13b83d2abb13238c22e (patch)
treedf4410eff0d6f077d0104fa68b28fe427c7ca8c7 /src/etc/phpshellsessions
parentbd9e1327d1717e152bade018e61e54d10931527e (diff)
downloadpfsense-ef30fa510f5bac167ec9e13b83d2abb13238c22e.zip
pfsense-ef30fa510f5bac167ec9e13b83d2abb13238c22e.tar.gz
Replace underscore with hyphen in option names
Thanks Jorge (cherry picked from commit 30786a9d2486d88cb92cbb0ecb10586b39c32c65)
Diffstat (limited to 'src/etc/phpshellsessions')
-rw-r--r--src/etc/phpshellsessions/gitsync10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/etc/phpshellsessions/gitsync b/src/etc/phpshellsessions/gitsync
index 269add5..26874c7 100644
--- a/src/etc/phpshellsessions/gitsync
+++ b/src/etc/phpshellsessions/gitsync
@@ -55,9 +55,9 @@ $valid_args = array(
"--diff" => "\tPerform a copy of only the different and missing files.\n" .
"\tRecommended for SSD if system has files modified by any method other\n" .
"\tthan gitsync.\n",
- "--show_files" => "\tShow the updated, different and missing files.\n" .
+ "--show-files" => "\tShow the updated, different and missing files.\n" .
"\t(when used with --minimal and --diff options)\n",
- "--show_command" => "\tShow the constructed command.\n",
+ "--show-command" => "\tShow the constructed command.\n",
"--dry-run" => "\tDry-run only. No files copied.\n",
"--help" => "\tDisplay this help list.\n"
);
@@ -384,7 +384,7 @@ if (isset($args["--minimal"])) {
# Get the path of each updated file.
preg_match_all('@(?:^(.+?)$)@sim', $updated_files, $updated_files_array, PREG_PATTERN_ORDER);
- if(isset($args["--show_files"])) {
+ if(isset($args["--show-files"])) {
echo "===> Updated Files: \n";
print_r($updated_files_array[1]);
}
@@ -450,7 +450,7 @@ if(isset($args["--diff"])) {
$missing_files_array[1][$key] = $file;
}
- if(isset($args["--show_files"])) {
+ if(isset($args["--show-files"])) {
echo "===> Different Files: \n";
print_r($different_files_array[1]);
echo "===> Missing Files: \n";
@@ -483,7 +483,7 @@ echo "===> Installing $qty_files_to_copy new files...\n";
$command = "cd $CODIR/pfSenseGITREPO/pfSenseGITREPO ; tar -cpf - {$tar_options} {$files_to_copy} | (cd / ; tar -Uxpf -)";
if (!empty($files_to_copy)) {
- if(isset($args["--show_command"])) {
+ if(isset($args["--show-command"])) {
echo "===> Command: \n$command\n";
}
if(!isset($args["--dry-run"])) {
OpenPOWER on IntegriCloud