linux-tools/main.py

26 lines
671 B
Python
Raw Normal View History

import fire
2019-12-14 04:11:32 +01: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
from modules.swap.SwapModule import SwapModule
2019-12-14 04:11:32 +01:00
modules = {
"bashrc": bashrc.functions,
"fail2ban": fail2ban.functions,
"hacker": hacker.functions,
"helloworld": helloworld.functions,
"install": install.functions,
"swap": SwapModule().run,
"update": update.functions,
"teamspeak": teamspeak.functions,
2020-08-02 03:50:50 +02:00
"vim": vim.functions,
}
2019-12-14 04:11:32 +01:00
fire.Fire(modules)