summaryrefslogtreecommitdiff
path: root/cmdline/apt.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-11-25 08:36:57 +0100
committerMichael Vogt <mvo@debian.org>2013-11-25 08:36:57 +0100
commitcfacba5230f2e6bb88a1949505843ac22ed342d5 (patch)
treeeff800414a0dc669cfba1002701eb66fe83756a7 /cmdline/apt.cc
parent61f954bff040809e7ab57b3adec2fe95339ffb94 (diff)
add basic "edit-sources" command
Diffstat (limited to 'cmdline/apt.cc')
-rw-r--r--cmdline/apt.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/cmdline/apt.cc b/cmdline/apt.cc
index e30967ec2..ef31d0029 100644
--- a/cmdline/apt.cc
+++ b/cmdline/apt.cc
@@ -54,8 +54,28 @@
#include <apt-private/private-upgrade.h>
#include <apt-private/private-show.h>
#include <apt-private/private-main.h>
+#include <apt-private/private-utils.h>
/*}}}*/
+// EditSource - EditSourcesList /*{{{*/
+// ---------------------------------------------------------------------
+bool EditSources(CommandLine &CmdL)
+{
+ // FIXME: suport CmdL.FileList to specify sources.list.d files
+
+ std::string sourceslist = _config->FindFile("Dir::Etc::sourcelist");
+
+ // FIXME: take hash before,
+ // when changed display message to apt update
+ // do syntax check after save (like visudo)
+
+ EditFileInSensibleEditor(sourceslist);
+
+ return true;
+}
+ /*}}}*/
+
+
bool ShowHelp(CommandLine &CmdL)
{
ioprintf(c1out,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION,
@@ -74,6 +94,8 @@ bool ShowHelp(CommandLine &CmdL)
" update - update list of available packages\n"
" install - install packages\n"
" upgrade - upgrade the systems packages\n"
+ "\n"
+ " edit-sources - edit the source information file\n"
);
return true;
@@ -89,6 +111,8 @@ int main(int argc, const char *argv[]) /*{{{*/
{"remove", &DoInstall},
{"update",&DoUpdate},
{"upgrade",&DoUpgradeWithAllowNewPackages},
+ // misc
+ {"edit-sources",&EditSources},
// helper
{"moo",&DoMoo},
{"help",&ShowHelp},