2020-01-18 05:39:23 +01:00
|
|
|
import fire
|
2019-12-14 04:11:32 +01:00
|
|
|
|
2020-08-02 00:55:48 +02:00
|
|
|
import modules.bashrc as bashrc
|
|
|
|
import modules.fail2ban as fail2ban
|
|
|
|
import modules.hacker as hacker
|
|
|
|
import modules.helloworld as helloworld
|
|
|
|
import modules.install as install
|
|
|
|
import modules.systemupdate as update
|
|
|
|
import modules.teamspeak as teamspeak
|
2020-08-02 03:50:50 +02:00
|
|
|
import modules.vim as vim
|
2020-03-06 02:34:57 +01:00
|
|
|
from modules.swap.SwapModule import SwapModule
|
2019-12-14 04:11:32 +01:00
|
|
|
|
2020-03-06 02:34:57 +01:00
|
|
|
modules = {
|
2020-08-02 00:55:48 +02:00
|
|
|
"bashrc": bashrc.functions,
|
|
|
|
"fail2ban": fail2ban.functions,
|
|
|
|
"hacker": hacker.functions,
|
|
|
|
"helloworld": helloworld.functions,
|
|
|
|
"install": install.functions,
|
2020-03-06 03:05:30 +01:00
|
|
|
"swap": SwapModule().run,
|
2020-08-02 00:55:48 +02:00
|
|
|
"update": update.functions,
|
|
|
|
"teamspeak": teamspeak.functions,
|
2020-08-02 03:50:50 +02:00
|
|
|
"vim": vim.functions,
|
2020-03-06 02:34:57 +01:00
|
|
|
}
|
2019-12-14 04:11:32 +01:00
|
|
|
|
2020-01-18 05:39:23 +01:00
|
|
|
fire.Fire(modules)
|