]> git.sur5r.net Git - bacula/bacula/commitdiff
Sort dot commands
authorKern Sibbald <kern@sibbald.com>
Tue, 29 Aug 2006 15:06:49 +0000 (15:06 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 29 Aug 2006 15:06:49 +0000 (15:06 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3382 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ReleaseNotes
bacula/src/dird/ua_dotcmds.c

index de6d1fa6285b1b53ee8a839453bc47d915b92252..8873284c340572444fae93174465fff239806a05 100644 (file)
@@ -6,7 +6,9 @@
 Version 1.39.20:
 - The basic features of Migration are now complete.
 - There is a Migration chapter in the doc.
+  http://www.bacula.org/dev-manual/Migration.html
 - There is an Encryption chapter in the doc.
+  http://www.bacula.org/dev-manual/Bacula_Data_Encryption.html
 
 New Features in 1.39.20:
 - Add -n option to bconsole to turn off conio.
@@ -107,6 +109,7 @@ A Lot of New features for 1.39.18:
   the old RunBefore/AfterJob and ClientRunBefore/AfterJob features
   plus a *lot* more, allowing you to control just about every aspect
   of running scripts.  See the manual for detailed documentation.
+  http://www.bacula.org/dev-manual/Configuring_Director.html#5227
 - The examples directory has a new bacula_mail_summary.sh file that
   creates a single email summary of any number of jobs. Submitted by
   Andrew J. Millar.
index b172e679e475ccd66015de07c01597fdb80c012f..7716fcc88e2c6471e97e11d42ea1757855b96f44 100644 (file)
@@ -55,22 +55,22 @@ static int getmsgscmd(UAContext *ua, const char *cmd);
 
 struct cmdstruct { const char *key; int (*func)(UAContext *ua, const char *cmd); const char *help; };
 static struct cmdstruct commands[] = {
+ { NT_(".backups"),    backupscmd,   NULL},
+ { NT_(".clients"),    clientscmd,   NULL},
+ { NT_(".defaults"),   defaultscmd,  NULL},
  { NT_(".die"),        diecmd,       NULL},
- { NT_(".jobs"),       jobscmd,      NULL},
+ { NT_(".exit"),       quit_cmd,     NULL},
  { NT_(".filesets"),   filesetscmd,  NULL},
- { NT_(".clients"),    clientscmd,   NULL},
+ { NT_(".help"),       qhelp_cmd,    NULL},
+ { NT_(".jobs"),       jobscmd,      NULL},
+ { NT_(".levels"),     levelscmd,    NULL},
+ { NT_(".messages"),   getmsgscmd,   NULL},
  { NT_(".msgs"),       msgscmd,      NULL},
  { NT_(".pools"),      poolscmd,     NULL},
- { NT_(".types"),      typescmd,     NULL},
- { NT_(".backups"),    backupscmd,   NULL},
- { NT_(".levels"),     levelscmd,    NULL},
+ { NT_(".quit"),       quit_cmd,     NULL},
  { NT_(".status"),     qstatus_cmd,  NULL},
  { NT_(".storage"),    storagecmd,   NULL},
- { NT_(".defaults"),   defaultscmd,  NULL},
- { NT_(".messages"),   getmsgscmd,   NULL},
- { NT_(".help"),       qhelp_cmd,    NULL},
- { NT_(".quit"),       quit_cmd,     NULL},
- { NT_(".exit"),       quit_cmd,     NULL}
+ { NT_(".types"),      typescmd,     NULL} 
              };
 #define comsize (sizeof(commands)/sizeof(struct cmdstruct))