- 01 May, 2008 2 commits
-
-
Kevin Atkinson authored
-
Kevin Atkinson authored
When a project is initially created a new mailing list is created, PROJ-admin@emulab.net. testbed-approval is subscribed to the list Several emails that originally went to testbed-approval now go to the mailing list instead. The From, To, fields are basically the same with testbed-approval becoming PROJ-admin. This means some mail is sent with a From PROJ-admin and Bcc the mailing list. Note that some mail still goes to testbed-approval directly, in particular ones where there is no clear project involved, and when a project is denied. In addition notifications of approval status of new members is also sent to the list. These emails use to only go to testbed-audit@. Currently All mail sent to PROJ-admin is also sent to testbed-audit (via a Bcc). This means that some mail that didn't use to go to testbed-audit now does. The mailing list is deleted when a project is deleted with out first being approved. Becuase of this notified that a project is denied is sent to testbed-approval instead of PROJ-admin. Admins can access the mailing list from the Project Profile page. The mailing list is open in order to allow users to reply to the mailing list, in addition the check that PROJ-admin is in the To or CC field is disabled. There is currently no spam control on the mailing lists. However, since the mailing list address is not posted anywhere it should't pick up to much spam. If it does we can deal with it then. Finally, a new script is created to create the per-project admin mailing list. See doc/UPDATING. Also add DBQuerySingleFatal to libdb, which is like DBQueryFatal but also fails if the query didn't return any results. Basically identical to he version in libtblog. Eventually libtblog should be modified to use this version.
-
- 19 Feb, 2008 1 commit
-
-
Leigh B. Stoller authored
this since the newnode ssh reboot fails now that we default to protocol 2. Good to do anyway. doc/UPDATING has the instructions for updating the newnode MFS. There is no need to update the other MFSs since they get the current root key from tmcd each time they boot.
-
- 18 Jul, 2007 1 commit
-
-
Leigh B. Stoller authored
-
- 21 Jun, 2007 1 commit
-
-
Russ Fish authored
-
- 11 May, 2007 2 commits
-
-
Leigh B. Stoller authored
-
Mike Hibler authored
-
- 20 Mar, 2007 1 commit
-
-
Mike Hibler authored
-
- 17 Mar, 2007 1 commit
-
-
David Johnson authored
-
- 30 Nov, 2006 1 commit
-
-
Leigh B. Stoller authored
used remote sites still running ancient FreebSD 4.10.
-
- 27 Sep, 2006 1 commit
-
-
Kevin Atkinson authored
Second attempt to fix the problem of duplicate log entries. I am 99.99% sure this will get 100% of the cases, and 99.999% sure it won't break anything. It basically detects when the DB handle is a child and if so set "InaciveDestroy" before the database handle DESTROY method is called. Since the DB handle can be closed in several different places I created a new class to override the Db Handle (the Mysql class) DESTROY method. The other alternative is to add special code anywhere where the database handle could be destroyed which is when every a reconnect is done and when the module exists. The later would have involved putting code in the END block. I think the new class method is simpler for that reason. Also, add a note about patching Mysql.pm in doc/UPDATING.
-
- 18 Jul, 2006 1 commit
-
-
Leigh B. Stoller authored
table, into a new table called node_type_attributes, which is intended to be a more extensible way of describing nodes. The only things left in the node_types table will be type,class and the various isXXX boolean flags, since we use those in numerous joins all over the system (ie: when discriminating amongst nodes). For the most part, all of that other stuff is rarely used, or used in contexts where the information is needed, but not for type descrimination. Still, it made for a lot of queries to change! Along the way I added a NodeType library module that represents the type info as a perl object. I also beefed up the existing Node module, and started using it in more places. I also added an Interfaces module, but I have not done much with that yet. I have not yet removed all the slots from the node_types table; I plan to run the new code for a few days and then remove the slots. Example using the new NodeType object: use NodeType; my $typeinfo = NodeType->Lookup($type); if ($typeinfo->control_interface(\$control_iface) || !$control_iface) { warn "No control interface for $type is defined in the DB!\n"; } or using the Node: use Node; my $nodeobject = Node->Lookup($node_id); my $imageable = $nodeobject->NodeTypeInfo()->imageable(); or my $rebootable = $nodeobject->isrebootable(); or $nodeobject->NodeTypeAttribute("control_interface", \$control_iface); Lots of way to accomplish the same thing, but the main point is that the Node is able to override the NodeType (if it wants to), which I think is necessary for flexibly describing one/two of a kind things like switches, etc.
-
- 08 Jun, 2006 1 commit
-
-
Leigh B. Stoller authored
-
- 06 Jun, 2006 1 commit
-
-
Leigh B. Stoller authored
-
- 29 May, 2006 1 commit
-
-
Leigh B. Stoller authored
cleanup the database before this fix is installed.
-
- 22 Mar, 2006 1 commit
-
-
Mike Hibler authored
"firewallable" node types.
-
- 01 Mar, 2006 1 commit
-
-
Leigh B. Stoller authored
-
- 16 Dec, 2005 1 commit
-
-
Kirk Webb authored
Add note about updating the node/ssh_pubkey sitevar.
-
- 13 Dec, 2005 4 commits
-
-
Leigh B. Stoller authored
-
Kirk Webb authored
Add a note about /root/.ssh/config on boss and ops.
-
Kirk Webb authored
Added instructions for creating a passphraseless v2 RSA keypair for root on boss, and explained where it needed to be added (on ops, boss and images). Also described how to set Procotol 2 as the default everywhere possible. THere is also a note about old user images and compatibility.
-
Leigh B. Stoller authored
users.
-
- 31 Oct, 2005 1 commit
-
-
Leigh B. Stoller authored
-
- 18 Aug, 2005 1 commit
-
-
Leigh B. Stoller authored
-
- 07 Jul, 2005 1 commit
-
-
Leigh B. Stoller authored
enabled in the defs file: CVSSUPPORT=1 each project gets a stub CVS tree created (using 'cvs init') in /proj/$pid/CVS. It is up to users obviously to do something with that tree, and of course they have to either set their CVSROOT env variable, or use the -d option to cvs. The showproject page gets a link to the per-project CVS tree, using the cvsweb interface, which I hacked up a bit to allow restricted access to specific project trees, via a ?pid=$pid argument to the URL. Without the ?pid argument, it falls back to normal behaviour, which is check the cvsallowed bit in the users table, and provide access to the Emulab source repo. If you are curious, go here: https://www.emulab.net/cvsweb/cvsweb.php3/?pid=testbed
-
- 30 Nov, 2004 1 commit
-
-
Leigh B. Stoller authored
-
- 10 Nov, 2004 1 commit
-
-
Leigh B. Stoller authored
Direct user to patch the py-m2crypto port.
-
- 09 Nov, 2004 1 commit
-
-
Leigh B. Stoller authored
-
- 08 Nov, 2004 5 commits
-
-
Leigh B. Stoller authored
-
Robert Ricci authored
-
Robert Ricci authored
new newclient/newnode code that can handle ops.
-
Leigh B. Stoller authored
-
Mike Hibler authored
-
- 04 Nov, 2004 1 commit
-
-
Mike Hibler authored
-
- 03 Nov, 2004 3 commits
-
-
Leigh B. Stoller authored
-
Leigh B. Stoller authored
-
Leigh B. Stoller authored
-
- 02 Nov, 2004 1 commit
-
-
Robert Ricci authored
-
- 01 Nov, 2004 2 commits
-
-
Timothy Stack authored
-
Timothy Stack authored
-