Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
0f935c2faa | |||
07043dd2b2 | |||
c1429905d9 | |||
878f1a1ab0 | |||
1e610e9b9f | |||
bc2551bfa0 | |||
ea649350fc | |||
d56d4c27e8 | |||
fb516a4266 | |||
49995868dd |
4
Makefile
4
Makefile
@ -83,11 +83,11 @@ check-activate:
|
|||||||
clean-tmp:
|
clean-tmp:
|
||||||
rm -rf $(BUILDDIR)
|
rm -rf $(BUILDDIR)
|
||||||
rm -rf $(BUILDROOTDIR)
|
rm -rf $(BUILDROOTDIR)
|
||||||
rm -rf $(SOURCETARBALL)
|
rm -f $(SOURCETARBALL)
|
||||||
|
|
||||||
clean-pkg:
|
clean-pkg:
|
||||||
rm -rf $(RPMSDIR)
|
rm -rf $(RPMSDIR)
|
||||||
rm -rf $(SRPMSDIR)
|
rm -rf $(SRPMSDIR)
|
||||||
|
|
||||||
clean: clean-tmp clean-pkg
|
clean: clean-tmp clean-pkg
|
||||||
|
rm -f $(SOURCESDIR)/$(NAME)-*.tar.gz
|
||||||
|
24
README.md
24
README.md
@ -1,2 +1,24 @@
|
|||||||
# kf2-srv
|
# kf2-srv
|
||||||
Killing Floor 2 server tool for RHEL/CentOS 8
|
*Killing Floor 2 server tool for RHEL8/CentOS8*
|
||||||
|
|
||||||
|
[](https://github.com/GenZmeY/kf2-srv/actions?query=workflow%3A%22build+release%22)
|
||||||
|
[/badge.svg?branch=master)](https://github.com/GenZmeY/kf2-srv/actions?query=workflow%3A%22tests+%28master%29%22)
|
||||||
|
[/badge.svg?branch=dev)](https://github.com/GenZmeY/kf2-srv/actions?query=workflow%3A%22tests+%28dev%29%22)
|
||||||
|
[](https://github.com/genzmey/kf2-srv/releases/latest)
|
||||||
|
[](https://github.com/genzmey/kf2-srv/releases/latest)
|
||||||
|
|
||||||
|
# Features
|
||||||
|
...
|
||||||
|
|
||||||
|
# Build
|
||||||
|
...
|
||||||
|
|
||||||
|
# Install
|
||||||
|
...
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
...
|
||||||
|
|
||||||
|
# License
|
||||||
|

|
||||||
|
...
|
||||||
|
@ -19,12 +19,8 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
function _kf2_srv_completions () # $1: BetaPostfix
|
function _kf2_srv_completions ()
|
||||||
{
|
{
|
||||||
local GrpDir=":DEFINE_PREFIX:/share/kf2-srv/cmdgrp"
|
|
||||||
local InsDir="/etc/kf2-srv/instances${BetaPostfix}"
|
|
||||||
local KF2Srv=":DEFINE_PREFIX:/bin/kf2-srv${BetaPostfix}"
|
|
||||||
|
|
||||||
function groups_list ()
|
function groups_list ()
|
||||||
{
|
{
|
||||||
find "$GrpDir" \
|
find "$GrpDir" \
|
||||||
@ -36,6 +32,7 @@ function _kf2_srv_completions () # $1: BetaPostfix
|
|||||||
|
|
||||||
function commands_list () # $1: Command group
|
function commands_list () # $1: Command group
|
||||||
{
|
{
|
||||||
|
test -d "$GrpDir/$1" && \
|
||||||
find "$GrpDir/$1" \
|
find "$GrpDir/$1" \
|
||||||
-mindepth 1 \
|
-mindepth 1 \
|
||||||
-maxdepth 1 \
|
-maxdepth 1 \
|
||||||
@ -88,11 +85,24 @@ function _kf2_srv_completions () # $1: BetaPostfix
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
function _kf2_srv_beta_completions ()
|
function _kf2_srv_main_completions ()
|
||||||
{
|
{
|
||||||
_kf2_srv_completions "-beta"
|
local GrpDir=":DEFINE_PREFIX:/share/kf2-srv/cmdgrp"
|
||||||
|
local InsDir="/etc/kf2-srv/instances"
|
||||||
|
local KF2Srv=":DEFINE_PREFIX:/bin/kf2-srv"
|
||||||
|
|
||||||
|
_kf2_srv_completions
|
||||||
}
|
}
|
||||||
|
|
||||||
complete -F _kf2_srv_completions kf2-srv
|
function _kf2_srv_beta_completions ()
|
||||||
|
{
|
||||||
|
local GrpDir=":DEFINE_PREFIX:/share/kf2-srv/cmdgrp"
|
||||||
|
local InsDir="/etc/kf2-srv/instances-beta"
|
||||||
|
local KF2Srv=":DEFINE_PREFIX:/bin/kf2-srv-beta"
|
||||||
|
|
||||||
|
_kf2_srv_completions
|
||||||
|
}
|
||||||
|
|
||||||
|
complete -F _kf2_srv_main_completions kf2-srv
|
||||||
complete -F _kf2_srv_beta_completions kf2-srv-beta
|
complete -F _kf2_srv_beta_completions kf2-srv-beta
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
%global steamuser steam
|
%global steamuser steam
|
||||||
|
|
||||||
Name: kf2-srv
|
Name: kf2-srv
|
||||||
Version: 0.15.0
|
Version: 0.15.2
|
||||||
Release: 1%{dist}
|
Release: 1%{dist}
|
||||||
Summary: Killing Floor 2 server
|
Summary: Killing Floor 2 server
|
||||||
Group: Amusements/Games
|
Group: Amusements/Games
|
||||||
@ -101,6 +101,13 @@ if [[ $1 == 1 ]]; then # Install
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 14 2020 GenZmeY <genzmey@gmail.com> - 0.15.2-1
|
||||||
|
- fix bash completion for commands without parameters;
|
||||||
|
- fix bash completion for use not existing command group.
|
||||||
|
|
||||||
|
* Fri Aug 14 2020 GenZmeY <genzmey@gmail.com> - 0.15.1-1
|
||||||
|
- fix bash completion for kf2-srv-beta.
|
||||||
|
|
||||||
* Thu Aug 13 2020 GenZmeY <genzmey@gmail.com> - 0.15.0-1
|
* Thu Aug 13 2020 GenZmeY <genzmey@gmail.com> - 0.15.0-1
|
||||||
- bash completion support.
|
- bash completion support.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user