diff options
author | pyllyukko <pyllyukko AT maimed dot org> | 2013-06-05 12:03:18 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2013-06-05 12:03:18 -0400 |
commit | 52ef78e897bb46d93458d88762773384a5aa986e (patch) | |
tree | 54c12369337f1a3ed1edd80d30f4a3f226000d29 /system/tiger/README.SLACKWARE | |
parent | c515acb0700c884d6e53d0b20ae186842728f821 (diff) | |
download | slackbuilds-52ef78e897bb46d93458d88762773384a5aa986e.tar.gz |
system/tiger: Updated with a few bug fixing patches.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/tiger/README.SLACKWARE')
-rw-r--r-- | system/tiger/README.SLACKWARE | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/system/tiger/README.SLACKWARE b/system/tiger/README.SLACKWARE new file mode 100644 index 0000000000..88705325fe --- /dev/null +++ b/system/tiger/README.SLACKWARE @@ -0,0 +1,24 @@ +In order for the Tiger_Check_PERMS and Tiger_Check_SIGNATURES checks to work +correctly, you need to generate a Slackware specific baseline for them. You can +use the 'mkfilelst' and 'mksig' tools under the util/ directory to generates +these baselines. After you have generated these files, you need to move them to +the proper directory (/usr/libexec/tiger/systems/Linux/...). + +For more information, read the README.signatures file. + +To create a working Slackware baseline to be used with Tiger, run the following commands: + + export TIGERHOMEDIR="/usr/libexec/tiger" + export ARCH=$( uname -m ) + export LINUX_VER=$( uname -r ) + export TIGERHOMESUBDIR="${TIGERHOMEDIR}/systems/Linux/`echo "${LINUX_VER}" | cut -d '.' -f 1`/${LINUX_VER}/${ARCH}" + mkdir -pv ${TIGERHOMESUBDIR} + cp -v ${TIGERHOMEDIR}/systems/Linux/2/* ${TIGERHOMESUBDIR} + cd ${TIGERHOMESUBDIR} + ${TIGERHOMEDIR}/util/mksig + mv -v "signatures.Linux-${LINUX_VER}-${ARCH}" signatures + ${TIGERHOMEDIR}/util/mkfilelst + mv -v "file_access_list.Linux-${LINUX_VER}-${ARCH}" file_access_list + ./read_services.sh 1>services + find / -type f -perm -04000 1>suid_list + find / -type f -perm -02000 1>sgid_list |