Changeset 481 for trunk/scripts
- Timestamp:
- Jul 18, 2015, 5:06:52 PM (9 years ago)
- Location:
- trunk/scripts
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/README
r121 r481 38 38 Run 'yuleadmin.pl -h' for usage instructions. 39 39 40 samhainrc_update.sh41 -------------------42 43 If you are using the --with-kcheck option on Linux, after a kernel44 update you need to change some option (addresses of kernel functions)45 in the samhainrc configuration file. The correct new addresses must46 be looked up in the System.map file47 48 This script will do this automatically. Run 'samhainrc_update.sh -h'49 for usage instructions. You may need to change the location of the50 samhainrc file by editing the line 'cfgfile="/etc/samhainrc"'51 at the beginning of the script.52 53 40 check_samhain.pl 54 41 ---------------- -
trunk/scripts/redhat_i386.client.spec.in
r412 r481 123 123 fi 124 124 125 %postun126 if [ "$1" = 0 ]; then127 # remove any kernel modules that might have been installed128 RVER=`uname -r`129 rm -f /lib/modules/$RVER/samhain*130 fi131 125 132 126 … … 136 130 %dir /var/log 137 131 #%doc docs/BUGS COPYING docs/Changelog docs/TODO 138 #%doc LICENSE docs/HOWTO* docs/MANUAL-2_ 3.* docs/README*132 #%doc LICENSE docs/HOWTO* docs/MANUAL-2_4.* docs/README* 139 133 /etc 140 134 /usr/local/sbin/samhain -
trunk/scripts/samhain.ebuild.in
r68 r481 69 69 dodoc docs/BUGS COPYING docs/Changelog LICENSE docs/README \ 70 70 docs/README.UPGRADE docs/sh_mounts.txt docs/sh_userfiles.txt \ 71 docs/MANUAL-2_ 3.ps docs/MANUAL-2_3.html.tar71 docs/MANUAL-2_4.ps docs/MANUAL-2_4.html.tar 72 72 73 73 dohtml docs/HOWTO-client+server.html docs/HOWTO-samhain+GnuPG.html \ -
trunk/scripts/samhain.spec.in
r412 r481 109 109 fi 110 110 111 %postun112 if [ "$1" = 0 ]; then113 # remove any kernel modules that might have been installed114 RVER=`uname -r`115 rm -f /lib/modules/$RVER/samhain*116 fi117 118 111 119 112 %files … … 122 115 %dir %{_localstatedir}/log 123 116 %doc docs/BUGS COPYING docs/Changelog docs/TODO 124 %doc LICENSE docs/HOWTO* docs/MANUAL-2_ 3.* docs/README*117 %doc LICENSE docs/HOWTO* docs/MANUAL-2_4.* docs/README* 125 118 %{_localstatedir}/lib/%{name} 126 119 %{_sbindir}/%{name} -
trunk/scripts/samhainadmin.pl.in
r415 r481 156 156 print " Set the passphrase for gpg. By default, gpg will ask.\n\n"; 157 157 158 print " -s secretkeyring --secretkeyring secretkeyring\n"; 159 print " Select an alternate secret keyring for gpg.\n"; 160 print " Will use '$ENV{'HOME'}/.gnupg/secring.gpg' by default.\n\n"; 158 print " -s gnupg_homedir --secretkeyring gnupg_homedir\n"; 159 print " Select an alternate gpg homedirectory to locate the secret keyring.\n"; 160 print " Will use '$ENV{'HOME'}/.gnupg/' by default.\n\n"; 161 162 print " -k keyid --keyid keyid\n"; 163 print " Select the keyid to use for signing.\n\n"; 161 164 162 165 print " -l --list\n"; … … 570 573 'p|passphrase=s', 571 574 's|secretkeyring=s', 575 'k|keyid=s', 572 576 'create-cfgfile', # -m F 573 577 'print-cfgfile', # -m f … … 584 588 } 585 589 590 if (defined($opts{'k'})) { 591 $TARGETKEYID = $opts{'k'}; 592 $KEYTAG = "--default-key"; 593 } 586 594 if (defined($opts{'c'})) { 587 595 $cfgfile = $opts{'c'};
Note:
See TracChangeset
for help on using the changeset viewer.