4 # Name : snarf_linux_config
5 # Author : Chris Koeritz
6 # Rights : Copyright (C) 1996-$now by Author
8 # Backs up the useful linux config files and names the file after the
11 # This program is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by the Free
13 # Software Foundation; either version 2 of the License or (at your option)
14 # any later version. See: "http://www.gruntose.com/Info/GNU/GPL.html" for a
15 # version of the License. Please send any updates to "fred@gruntose.com".
18 require "importenv.pl";
19 require "shared_snarfer.pl";
23 # get the number we use and increment it for the next use.
24 local($number) = &retrieve_number("aa_backup");
26 # variables used throughout.
27 local($snarf_file_base) = snarf_prefix("linux_config");
28 local($snarf_file) = &snarf_name($snarf_file_base, $number);
30 # store the current archive number in the file for retrieval on the
32 &backup_number("aa_backup", $snarf_file_base, $number);
34 # write a little file showing the disk status.
35 local($infofile) = $HOME . "/disk_info.txt";
37 open(INF, ">>" . $infofile);
38 print INF "Current mount configuration:\n";
41 system("mount >>$infofile");
42 open(INF, ">>" . $infofile);
45 print INF "Current disk configuration:\n";
48 system("fdisk -l >>$HOME/disk_info.txt");
49 &backup_files($snarf_file_base, $number, $HOME, ".", ("disk_info.txt"));
52 # backup the dpkg info.
53 &backup_files($snarf_file_base, $number, "/", "var/lib/dpkg", ("status*"));
55 # backup the crucial hierarchies in /var...
56 &backup_hierarchy($snarf_file_base, $number, "/", "var/named");
57 ###not good: &backup_hierarchy($snarf_file_base, $number, "/", "var/lib/mysql");
58 ###the mysql snarf is not necessarily usable, since we really should be
59 ###backing up the databases by another means than this.
60 &backup_hierarchy($snarf_file_base, $number, "/", "var/lib/named/master");
61 &backup_hierarchy($snarf_file_base, $number, "/", "var/lib/webalizer");
63 # snag the grub bootloader files.
64 &backup_hierarchy($snarf_file_base, $number, "/", "boot/grub");
66 # now get the entire /etc hierarchy...
67 &backup_hierarchy($snarf_file_base, $number, "/", "etc");
69 # clean out extra files.
70 &remove_from_backup($snarf_file_base, $number, "etc/cups/ppds.dat*");
71 &remove_from_backup($snarf_file_base, $number, "etc/httpd/conf/ssl.crt/ca-bundle.crt");
72 &remove_from_backup($snarf_file_base, $number, "etc/locale/*");
73 &remove_from_backup($snarf_file_base, $number, "etc/opt/kde3/share/services/ksycoca");
74 &remove_from_backup($snarf_file_base, $number, "etc/preload.d/*");
75 &remove_from_backup($snarf_file_base, $number, "etc/rmt");
76 &remove_from_backup($snarf_file_base, $number, "etc/termcap");
77 &remove_from_backup($snarf_file_base, $number, "etc/X11/X");
78 &remove_from_backup($snarf_file_base, $number, "etc/X11/xkb/*");
79 &remove_from_backup($snarf_file_base, $number, "*.bak");
80 &remove_from_backup($snarf_file_base, $number, "*.cache");
81 &remove_from_backup($snarf_file_base, $number, "*.crt");
82 &remove_from_backup($snarf_file_base, $number, "*.old");
83 &remove_from_backup($snarf_file_base, $number, "*.schemas");
84 &remove_from_backup($snarf_file_base, $number, "*.so");
85 &remove_from_backup($snarf_file_base, $number, "*.xml");
87 # now rename the file so only the unpacker can access it.
88 &rename_archive($snarf_file);