summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2012-09-19Set hostname after updating hosts fileJames Davidson
Fixes bug 8380
2012-09-18fix for 8372 - Unclear which user ID the changed administrator password ↵Deepti Kulkarni
applies to fix for 8350 - Install allows installation with empty password
2012-09-10Update /etc/hosts when host name and domain name changesJames Davidson
2012-09-06Set system password also when resetting admin passwordJames Davidson
Fixes bug 3241
2012-09-05Merge branch 'pacifica' of git.vyatta.com:/git/vyatta-cfg-system into pacificaJohn Southworth
2012-09-05Bugfix 8326John Southworth
Fix password change script save function to work as it does in vyattacfg. Fix empty substitution on 'plaintext-password ""' causing script error.
2012-09-04Configure logrotate to maintain log file ownershipJames Davidson
logrotate needs the create config option so that it keeps the original log file's permissions and ownership. Fixes bug 8240
2012-09-04Bugfix 8290John Southworth
Don't allow default password to persist after first boot. Due to the numerous ways a user can get a vyatta system this required a lot of changes. 1. Don't allow a user to set a password to 'vyatta' after first login, but allow it on the initial boot otherwise the system will have no user. 2. Don't allow the password to be set to vyatta in installer. 3. Force password change on first login. under the following conditions: 3.a. User is an admin level user. Operators do not have the abillity to change the config so they can't change passwords. Allow 'vyatta' to be the password until an admin logs in. 3.b. This is not the livecd, its silly to force a password change before install.
2012-08-30Bugfix 6967: Test if an address is already applied to an interface before ↵John Southworth
attempting to apply it
2012-08-29Force Xen installs to use ext3 without write barriersJohn Southworth
In oxnard our Xen images used ext3 without write barriers. This patch is a workaround for bug 8303. The goal of this patch is to provide a workable solution that is no worse than our previous behavior until Xenserver has the write barrier fix available in Xen integrated.
2012-08-28Revert "Write barriers don't work on all devices, disable them"John Southworth
This reverts commit f344e975d1b0eb489af7fb2d2f22168bc465b1de.
2012-08-28Write barriers don't work on all devices, disable themJohn Southworth
2012-06-22Use hash map of addresses to interfacesStephen Hemminger
Other part of fix for Bz 8171 Create a hash of address => interfaces in configuration and use it during address commit check. Remove unused creation of list of current addresses. This might speed boot with large number of interfaces. Since the hash is made once per interface rather than multiple times, it might be faster because of that as well.
2012-06-12Allow USB console in Grub setupStephen Hemminger
Bug 7724
2012-05-16Change default to No when not enough space to save configJames Davidson
During an image add, the default used to be to not save the current configuration and continue with adding the image. Now the default is to not continue. Fixes bug 7964.
2012-05-15Move VRRP to its own packageJohn Southworth
2012-05-07Turn on vrrp snmp traps by defaultJohn Southworth
2012-04-18Use rsyslog to trigger log rotationJames Davidson
The previous implementation of log rotation used an hourly cron job to check log file size and possibly perform a rotation. If the logging rate is high, this interval may allow for root file system space exhustion. Utilizing rsyslog's outchannel mechanism enables log rotation to be initiated as soon as the log file becomes larger than its configured size. Fixes Bug 7807.
2012-04-11Return success on stop if telnetd service is not runningJames Davidson
Fixes Bug 5511.
2012-04-09Replace intf->carrier() check with intf->running()Stephen Hemminger
Bug 8006 The "carrier" method in Interface.pm is superseded by the more robust running() method.
2012-04-04Fix minor perlcritc warning in vrrp-stateStephen Hemminger
Code before strictures.
2012-03-01forgot to use io::promptJohn Southworth
2012-03-01Bugfix 7555: Allow users to import keys when using loadkeyJohn Southworth
2012-02-29Merge branch 'oxnard' of git.vyatta.com:/git/vyatta-cfg-system into oxnardJohn Southworth
2012-02-29Bugfix 7555: allow users to import ssh keys when running add system imageJohn Southworth
2012-02-21Cleanup interface statistic clear files on rebootStephen Hemminger
clear interface statistics creates a file /var/run/vyatta/XXXX.stats that is used to adjust values. Since this data is meaningless after reboot, remove it.
2012-02-21Fix server property optionStephen Hemminger
Bug 7623 Patch provided by Stig.
2012-02-21Remove reference to init-floppyStephen Hemminger
Bug 7608
2012-02-21Fix spelling errors in install imageStephen Hemminger
Bug 7544 Found several misspellings in the install prompts.
2012-02-18Bug #7787: Allow using custom command line arguments in transitionDaniil Baturin
scripts.
2012-02-17snmp: add missing newline to config fileStephen Hemminger
Need newline after agentx
2012-02-10Fix typo in last SNMP change.Stephen Hemminger
2012-02-06snmp: enable agentxStephen Hemminger
Llpd uses agentx snmp API to talk to snmpd This allows system description from SNMP to be retrieved by lldpd.
2012-01-24Fix missing error (missing lecho) in install-systemStephen Hemminger
Some statements were copy/pasted over from install-image. install-system does not use lecho, that is only used in install-image
2012-01-20Make disk label if necessaryStephen Hemminger
Bug 7732 Restore installation section that makes disk label.
2012-01-16Fix check for pseudo-ethernet overlapStephen Hemminger
Bug 7726 Incorrect variable name (from cut-paste)
2012-01-05Merge branch 'oxnard' of fiji.vyatta.com:/git/vyatta-cfg-system into oxnardStephen Hemminger
2012-01-03Bugfix 7689: change vrrp auth_type detection 'simple' to 'plaintext-password'John Southworth
2012-01-03install-system: use sfdisk to find drive sizeStephen Hemminger
Better than using parted which requires more parsing.
2012-01-03install: use sfdisk to get disk sizeStephen Hemminger
sfdisk is simpler, and safer for getting disk size. It doesn't require as much screen scraping and doesn't need disk label.
2012-01-03Check for conflict between pseudo-ethernet and bonding,bridgingStephen Hemminger
Don't allow configuring bonding or bridging if pseudo-ethernet is in use.
2011-12-30bridge: check for VRRPStephen Hemminger
Do not allow interface with VRRP defined to be added to a bridge.
2011-12-30bonding: do not allow interface with VRRP to be enslavedStephen Hemminger
Add missing check to prevent adding interface with VRRP defined to be add to a bond-group.
2011-12-28Move vrrp input filter creation to keepalived for faster transitionsJohn Southworth
2011-12-27Merge branch 'oxnard' of git.vyatta.com:/git/vyatta-cfg-system into oxnardJohn Southworth
2011-12-27Move vrrp vmac sysctls to interface initialization in keepalivedJohn Southworth
2011-12-21interfaces: don't add config for missing devicesStephen Hemminger
If device disappears or is renamed between the time udev script is run, and the vyatta-router script is run; then don't add an entry to the config file.
2011-12-20Extra grat. arps are not needed for vmac interfacesJohn Southworth
2011-12-14Verify user defined mac addresses are not VRRP mac addressesJohn Southworth
2011-12-12Add filtering to transition scripts for vmac interfaces; Make transition ↵John Southworth
script able to detect if the interface is a vmac interface before applying the vmac specific changes