forked from sig_core/toolkit
attempted func corrections
This commit is contained in:
parent
00f330226d
commit
12bb69379b
@ -11,5 +11,5 @@ export readonly RELEASE_NAME=rocky
|
|||||||
# A 0 means it was successful. It can be changed to 1 on failure.
|
# A 0 means it was successful. It can be changed to 1 on failure.
|
||||||
export IPAINSTALLED=0
|
export IPAINSTALLED=0
|
||||||
|
|
||||||
LOGFILE="./log/$(date +'%m-%d-%Y')-tests.log"
|
LOGFILE="$(pwd)/log/$(date +'%m-%d-%Y')-tests.log"
|
||||||
export LOGFILE
|
export LOGFILE
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
r_log "archive" "Installing appropriate archive formats"
|
r_log "archive" "Installing appropriate archive formats"
|
||||||
|
|
||||||
# We might need expect for zmore - does anyone actually use zmore?
|
# We might need expect for zmore - does anyone actually use zmore?
|
||||||
p_installPackageNormal bzip2 diffutils gzip less ncompress tar unzip util-linux-ng zip lzop
|
p_installPackageNormal bzip2 diffutils gzip less tar unzip util-linux-ng zip lzop
|
||||||
|
@ -89,8 +89,12 @@ gzip $FILE $FILE.1 || r_checkExitStatus 1
|
|||||||
r_log "archive" "Verify that .Z files can be handled"
|
r_log "archive" "Verify that .Z files can be handled"
|
||||||
gunzip $FILE.gz
|
gunzip $FILE.gz
|
||||||
ls -l /var/tmp >> $FILE
|
ls -l /var/tmp >> $FILE
|
||||||
|
if [ "$RL_VER" -eq 8 ]; then
|
||||||
compress $FILE || r_checkExitStatus 1
|
compress $FILE || r_checkExitStatus 1
|
||||||
gunzip $FILE.Z || r_checkExitStatus 1
|
gunzip $FILE.Z || r_checkExitStatus 1
|
||||||
|
else
|
||||||
|
r_log "archive" "Skipping for 9"
|
||||||
|
fi
|
||||||
|
|
||||||
# handle some zip files
|
# handle some zip files
|
||||||
r_log "archive" "Verify that .zip files can be handled"
|
r_log "archive" "Verify that .zip files can be handled"
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
r_log "lsb" "Install LSB package"
|
r_log "lsb" "Install LSB package"
|
||||||
|
if [ "$RL_VER" -ge 8 ]; then
|
||||||
|
r_log "lsb" "redhat-lsb is not in EL9"
|
||||||
|
exit $PASS
|
||||||
|
fi
|
||||||
|
|
||||||
p_installPackageNormal redhat-lsb
|
p_installPackageNormal redhat-lsb
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
r_log "lsb" "Test LSB branding"
|
r_log "lsb" "Test LSB branding"
|
||||||
|
if [ "$RL_VER" -ge 8 ]; then
|
||||||
|
r_log "lsb" "redhat-lsb is not in EL9"
|
||||||
|
exit $PASS
|
||||||
|
fi
|
||||||
|
|
||||||
lsb_release -i | grep -q "Rocky"
|
lsb_release -i | grep -q "Rocky"
|
||||||
r_checkExitStatus $?
|
r_checkExitStatus $?
|
||||||
lsb_release -d | grep -q "Rocky"
|
lsb_release -d | grep -q "Rocky"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
r_log "network" "Install necessary network packages and utilities"
|
r_log "network" "Install necessary network packages and utilities"
|
||||||
p_installPackageNormal traceroute iputils iproute mtr arpwatch psmisc net-tools which iptraf
|
pkgs=(traceroute iputils iproute mtr psmisc net-tools which iptraf)
|
||||||
|
if [ "$RL_VER" -eq 8 ]; then
|
||||||
|
pkgs+=( arpwatch )
|
||||||
|
fi
|
||||||
|
p_installPackageNormal "${pkgs[@]}"
|
||||||
|
@ -10,9 +10,12 @@
|
|||||||
# -> Must be a URL to bugs.rl.o, a github issue number, or a code, such as:
|
# -> Must be a URL to bugs.rl.o, a github issue number, or a code, such as:
|
||||||
# * NEEDINFO
|
# * NEEDINFO
|
||||||
# * NOTREADY
|
# * NOTREADY
|
||||||
|
# * NOPKG
|
||||||
8|./core/pkg_archive/26-zmore.sh|nazunalika|NEEDINFO
|
8|./core/pkg_archive/26-zmore.sh|nazunalika|NEEDINFO
|
||||||
8|./core/pkg_nfs/12-prepare-autofs.sh|nazunalika|NEEDINFO
|
8|./core/pkg_nfs/12-prepare-autofs.sh|nazunalika|NEEDINFO
|
||||||
8|./core/pkg_diffutils/00-install-diff.sh|nazunalika|NOTREADY
|
8|./core/pkg_diffutils/00-install-diff.sh|nazunalika|NOTREADY
|
||||||
8|./core/pkg_snmp/12-test-snmp-3.sh|nazunalika|NOTWORKING
|
8|./core/pkg_snmp/12-test-snmp-3.sh|nazunalika|NOTWORKING
|
||||||
8|./core/pkg_samba/00-install-samba.sh|nazunalika|NOTWORKING
|
8|./core/pkg_samba/00-install-samba.sh|nazunalika|NOTWORKING
|
||||||
8|./core/pkg_samba/10-test-samba.sh|nazunalika|NOTWORKING
|
8|./core/pkg_samba/10-test-samba.sh|nazunalika|NOTWORKING
|
||||||
|
9|./core/pkg_archive/27-znew.sh|nazunalika|NOPKG
|
||||||
|
9|./core/pkg_network/30-test-arpwatch.sh|nazunalika|NOPKG
|
||||||
|
Loading…
Reference in New Issue
Block a user