forked from sig_core/toolkit
10 lines
201 B
Bash
Executable File
10 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 $?
|