mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Updated for help
This commit is contained in:
parent
3426206942
commit
1b4b388442
2 changed files with 5 additions and 1 deletions
|
@ -39,7 +39,8 @@ Check if there is any news on the repositories ChangeLog.txt file.
|
|||
.P
|
||||
.B -I, repo-info
|
||||
.RS
|
||||
Prints the repositories information.
|
||||
View information related to repositories, such as which repositories are active, when they were upgraded,
|
||||
and how many packages they contain.
|
||||
.RE
|
||||
.P
|
||||
.B -L, clean-logs
|
||||
|
|
|
@ -26,6 +26,8 @@ class Help(Configs):
|
|||
'update': "Updates the package list and the database.",
|
||||
'upgrade': "Upgrade all the installed packages if the newer version exists in the repository.",
|
||||
'check-updates': "Check if there is any news on the SlackBuild's ChangeLog.txt file.",
|
||||
'repo-info': "View information related to repositories, such as which repositories are active, "
|
||||
"when they were upgraded, and how many packages they contain.",
|
||||
'configs': "Edit the configuration '/etc/slpkg/slpkg.toml' file.",
|
||||
'clean-logs': "Cleans dependencies log tracking. After that procedure you should remove dependencies "
|
||||
"by hand.",
|
||||
|
@ -49,6 +51,7 @@ class Help(Configs):
|
|||
help_commands['-u'] = help_commands['update']
|
||||
help_commands['-U'] = help_commands['upgrade']
|
||||
help_commands['-c'] = help_commands['check-updates']
|
||||
help_commands['-I'] = help_commands['repo-info']
|
||||
help_commands['-g'] = help_commands['configs']
|
||||
help_commands['-L'] = help_commands['clean-logs']
|
||||
help_commands['-D'] = help_commands['clean-tmp']
|
||||
|
|
Loading…
Reference in a new issue