forked from sig_core/toolkit
9 lines
201 B
Bash
Executable file
9 lines
201 B
Bash
Executable file
#!/bin/bash
|
|
r_log "dnf" "Install ksh package"
|
|
p_installPackageNormal ksh
|
|
|
|
r_log "dnf" "Remove ksh package"
|
|
p_removePackage ksh
|
|
|
|
rpm -q ksh | grep -q "package ksh is not installed"
|
|
r_checkExitStatus $?
|