Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-19 | make shell math operations style more succulent | Mike Frysinger | |
Convert the style: var=$((${var} + 1)) to: : $(( var += 1 )) The latter is easier to read imo. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2011-11-16 | Deprecate the network and staticroute scripts | William Hubbs | |
These scripts are not supported, and they have several major design issues such as not being able to stop, start or allow a dependency on a single interface. | |||
2011-06-29 | drop useless "All rights reserved" notice | Mike Frysinger | |
Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2011-01-17 | more whitespace cleanup | Mike Frysinger | |
Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2010-08-09 | allow ip to be in /sbin or /bin | William Hubbs | |
This makes it possible for the "ip" program in iproute2 to be installed in /sbin or /bin. | |||
2010-07-10 | fix typo | William Hubbs | |
I made a typo while manually transferring over Roy's last commit. This fixes that typo. | |||
2010-07-07 | remove extra route | William Hubbs | |
This was taken from Roy Marples' git repository. | |||
2010-03-24 | Fix tentative ip addresses | Roy Marples | |
2010-03-22 | Release openrc-0.6.1 | Roy Marples | |
2009-12-19 | default route commands on Linux now require gw or via (iproute2). | William Hubbs | |
2009-12-14 | Support inet6 routes. | Roy Marples | |
2009-12-14 | Allow "dev eth0" to work for a default route. | Roy Marples | |
2009-12-14 | Fix restart with iproute2 | Roy Marples | |
2009-12-14 | Don't add broadcast addresss to ipv6 | Roy Marples | |
2009-12-11 | Typo | Roy Marples | |
2009-12-10 | Allow ip to add the default route. | William Hubbs | |
Fixes #211. | |||
2009-11-11 | Ensure we have a valid broadcast address. | Roy Marples | |
2009-11-10 | Fix iproute2 support. | William Hubbs | |
Fixes Gentoo #289762. | |||
2009-10-25 | Fix default domain | Roy Marples | |
2009-10-16 | Add domainname to the network script | Roy Marples | |
2009-10-15 | Ensure ip brings interface up when adding addresses. | Roy Marples | |
Fixes Gentoo #288889 | |||
2009-07-01 | We should use -feature instead of nofeature. | Roy Marples | |
This matches the ifconfig and Gentoo USE flag syntax and is hopefully easier to read. Fixes #178. | |||
2009-05-01 | Add (c) to Copyright | Roy Marples | |
2009-04-27 | Fix a brain fart | Roy Marples | |
2009-04-27 | Although the noshutdown keyword is nice, we shouldn't use it for network or ↵ | Roy Marples | |
dhcpcd. Instead fake network shutdown so it comes back up correctly at boot and KILL dhcpcd to preserve network. | |||
2009-04-27 | Add the noshutdown keyword to special case the shutdown. | Roy Marples | |
2009-04-27 | Style. | Roy Marples | |
2009-04-26 | Add the nostop keyword so that we don't stop the network init script by default. | Roy Marples | |
2009-04-25 | Don't report final eends for interfaces as they make no sense. | Roy Marples | |
2009-04-25 | Verbosely report vars correctly. | Roy Marples | |
2009-04-19 | Use shell_var for shell variables. | Roy Marples | |
2009-04-19 | Style | Roy Marples | |
2009-04-19 | We should use $int for compat with NetBSD | Roy Marples | |
2009-04-19 | Pull /etc/ifconfig.eth0 into interfaces | Roy Marples | |
Reverse list of interfaces when stopping Improve build for conf.d/network | |||
2009-04-16 | Add a new init script - network | Roy Marples | |
This simply assigns static addresses and an optional default route. It's possible to add external commands as well, so to create a bonded interface. Hopefully we can add a few examples to satisfy most of the old net.lo, which is no longer installed into boot by default. |