Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | networking: fix print formatting for INFO messages | Radek Novacek | 2014-04-29 | 1 | -10/+10 |
| | |||||
* | networking: add INFOs about performed actions | Radek Novacek | 2014-04-29 | 1 | -1/+17 |
| | |||||
* | networking: support deactivation of settings with older provider | Radek Novacek | 2014-04-29 | 1 | -1/+45 |
| | | | | | | Older networking provider does not support deactivation setting without device specified. This commit adds a version check and forces use of device when older networking provider is found. | ||||
* | doc: created common makefile for documentation | Michal Minar | 2014-04-24 | 1 | -177/+1 |
| | | | | | Makefiles for documentation contained redundant code. Created one generic Makefile which is included by all the others. | ||||
* | doc: use openlmitheme | Michal Minar | 2014-04-24 | 1 | -1/+1 |
| | |||||
* | require openlmi-tools instead of openlmi-scripts | Michal Minar | 2014-04-24 | 1 | -1/+1 |
| | | | | | Subcommands now should depend only on openlmi-tools that contain both LMIShell and LMI Meta-command. | ||||
* | networking: fix setting activation/deactivation without device specified | Radek Novacek | 2014-04-07 | 1 | -9/+33 |
| | |||||
* | unified script versions | Michal Minar | 2014-03-17 | 3 | -22/+4 |
| | | | | | | | All scripts have the same version which is set in single file (VERSION). All setup.py and conf.py scripts containing these version numbers were renamed to *.skel. These skeletons are then read by makefiles and proper *.py scripts are generated out of them. | ||||
* | networking: fix wrong error message | Radek Novacek | 2014-03-04 | 1 | -1/+1 |
| | | | | This fixes bad error message when --ipv6 option has invalid value. | ||||
* | networking: explicitly differentiate between IPv4 and IPv6 addresses | Radek Novacek | 2014-03-04 | 2 | -2/+29 |
| | |||||
* | networking: fix wrong function for ending test phase | Radek Novacek | 2014-03-04 | 1 | -1/+1 |
| | | | | It should fix problem with unfinished tests on buildbot. | ||||
* | networking: handle case when ProtocolIFType is None | Radek Novacek | 2014-03-04 | 1 | -3/+12 |
| | | | | | ProtocolIFType property of LMI_IPAssignmentSetting data can be empty sometimes. This commit adds a check for it. | ||||
* | networking: prefix length of route should be int | Radek Novacek | 2014-02-27 | 1 | -1/+1 |
| | | | | | | PrefixLength parameter of static IP route was incorrectly converted to string when it should be integer. New lmishell can convert it to propert type. This commit fixes it even for older lmishell. | ||||
* | documentation updates | Michal Minar | 2014-02-24 | 3 | -2/+23 |
| | | | | | Added few Makefiles and setup configs. Just to make distribution to PyPI easy. | ||||
* | tuned requirements for several scripts | Michal Minar | 2014-02-24 | 1 | -1/+1 |
| | | | | | Networking, software, hardware and storage depend on recent changed in openlmi-scripts. | ||||
* | preparation for release | Michal Minar | 2014-02-24 | 1 | -1/+1 |
| | | | | Bumped versions of command libraries. | ||||
* | netwoking: tuned declaration of lister commands | Michal Minar | 2014-02-21 | 1 | -4/+3 |
| | | | | | | | Semantics of COLUMNS property changed a bit for LmiLister command. It affects just those wanting to suppress column headers completely. Although previous declaration works, it defines column names that are never used, which does not make sense. | ||||
* | networking: update generated cmdline documentation | Radek Novacek | 2014-02-20 | 1 | -52/+15 |
| | |||||
* | networking: add myself as an author to the modules | Radek Novacek | 2014-02-20 | 2 | -2/+6 |
| | |||||
* | networking: add beakerlib tests for net command | Radek Novacek | 2014-02-20 | 3 | -0/+466 |
| | |||||
* | networking: handle error in setting creation | Radek Novacek | 2014-02-20 | 1 | -0/+2 |
| | |||||
* | networking: fix wrong transform_option usage | Radek Novacek | 2014-02-20 | 1 | -6/+0 |
| | | | | | After change of the command layout, using transform_option is sometimes no longer the right thing to do. | ||||
* | networking: check if ipv4/ipv6 options have correct values | Radek Novacek | 2014-02-20 | 1 | -7/+22 |
| | |||||
* | networking: implement enslave function | Radek Novacek | 2014-02-20 | 1 | -0/+13 |
| | |||||
* | networking: add support for static routes and dns | Radek Novacek | 2014-02-20 | 2 | -0/+266 |
| | |||||
* | networking: fix (de)activation of bridges/bonds | Radek Novacek | 2014-02-20 | 1 | -14/+34 |
| | | | | | Bridge/bond settings are now properly activated when the device is not specified. | ||||
* | networking: better handling of IP address strings | Radek Novacek | 2014-02-20 | 2 | -61/+116 |
| | | | | | | | | IP addresses inserted by user are now checked and transformed to short form. Also comparision of addresses is no longer just string compare but proper IP address comparision. | ||||
* | networking: improve 'net setting show' | Radek Novacek | 2014-02-20 | 2 | -6/+49 |
| | | | | Print more information and fix showing bridges/bonds. | ||||
* | networking: change command structure | Radek Novacek | 2014-02-20 | 1 | -73/+83 |
| | | | | | Use 'net setting list' rather than 'net list setting' in order to be more compatible with other commands. | ||||
* | networking: fix wrong constants for bonding and bridging | Radek Novacek | 2014-02-20 | 1 | -8/+8 |
| | |||||
* | networking: fixed handling of options for address | Michal Minar | 2014-02-18 | 1 | -26/+2 |
| | | | | | | Since Address subcommand does not allow for <caption> argument to repete in its usage string, it should not treat received argument as a list -- docopt will pass it as single string. | ||||
* | turned logging messages into sentences | Michal Minar | 2014-02-13 | 1 | -5/+5 |
| | | | | | Which means that all messages have first letter uppercased and are terminated with a dot. | ||||
* | networking: add usage strings for subcommands | Radek Novacek | 2014-02-05 | 1 | -13/+34 |
| | | | | list, show and address commands now have its own help. | ||||
* | networking: Fix typo in command name | Radek Novacek | 2014-02-03 | 1 | -1/+1 |
| | |||||
* | Merge pull request #35 from rnovacek/dev | Jan Šafránek | 2014-01-30 | 10 | -35/+1078 |
|\ | | | | | Various fixes mostly in networking scirpt, introduction of power script | ||||
| * | networking: add dependency to IPy python package | Radek Novacek | 2014-01-24 | 1 | -1/+1 |
| | | |||||
| * | networking: add 'address replace' command | Radek Novacek | 2014-01-24 | 2 | -1/+75 |
| | | |||||
| * | networking: add documentation for networking scripts module | Radek Novacek | 2014-01-24 | 8 | -12/+982 |
| | | |||||
| * | networking: minor bugfixes in the networking script | Radek Novacek | 2014-01-23 | 3 | -21/+20 |
| | | |||||
* | | Updated copyright year | Peter Schiffer | 2014-01-29 | 4 | -4/+4 |
|/ | |||||
* | Import initial version of the networking provider | Radek Novacek | 2014-01-14 | 6 | -0/+751 |