From: Don Armstrong Date: Fri, 4 Nov 2005 05:49:44 +0000 (+0000) Subject: update home-base and home-full X-Git-Url: https://git.donarmstrong.com/?p=home-base.git;a=commitdiff_plain;h=1e1834684d37e2d1793b87c89fe51c36b639d27a update home-base and home-full --- diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..0f5e5aa --- /dev/null +++ b/.ssh/config @@ -0,0 +1,25 @@ +Host ernst.ucr.edu + User zido +Host frogsleap.com + User frogsleap +Host *.debian.org + IdentityFile ~/.ssh/identity_debian +Host comas.linux-aktivaattori.org + IdentityFile ~/.ssh/identity_debconf +# Propel consulting machinges +Host 172.16.0.59 + IdentityFile ~/.ssh/identity_propel +Host xen.propel.com + IdentityFile ~/.ssh/identity_propel +Host scs.propel.com + User darmstrong + IdentityFile ~/.ssh/identity_propel +Host builder.lab.propel.com + User don + IdentityFile ~/.ssh/identity_propel +Host debianarchive.lab.propel.com + User don + IdentityFile ~/.ssh/identity_propel +Host *.lab.propel.com + User darmstrong + IdentityFile ~/.ssh/identity_propel diff --git a/.ssh/identity_debian.pub b/.ssh/identity_debian.pub new file mode 100644 index 0000000..4188bf3 --- /dev/null +++ b/.ssh/identity_debian.pub @@ -0,0 +1,2 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAza9lIev+hrsfcIC7kUvWO9oceGhbscwxTgzlFujdMChcXysILBbWHJaXEO+9Dhcq2xGldUu9sN/Bo+uI5+6WPmOUUB0NmzKJO1KyciO3qX57+tPMUQls2I4HelZeUQZgBiF4nXVYA57bXEpD+ZluMd8jyx09oWW1eL+IZQkLeek= don@archimedes +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEArbcOk/Q5WSR8AlxGrlN38gpfSGam9VC5YQhRwd8XvLL8SS0PQZ5HCFdRvFvlR+dAtpdyn3CRY/hV9KLfLOBVSs5yZ9KiO93JPlJG+lV4mCJ9h+slAT99I0sPkE4NuHRCZs4t42Za7s0/QH/22VCmZsQCIMs7BBxpRy9qYSGO5TE= don@xieana diff --git a/.ssh/identity_propel.pub b/.ssh/identity_propel.pub new file mode 100644 index 0000000..907eaef --- /dev/null +++ b/.ssh/identity_propel.pub @@ -0,0 +1,2 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAuBIPUAOzWeh0IQaSqUVX0hiUOg4HlTXui6SFaXvIZHsGx3oCYsWQT/Ev4aY2kaBU2xyEIBZ7GxecgmakgsYhkJMlymbt7eDPrgGPOyPBoV3+85ucc4nt/pE/AWx22IFOP2WRCDiK8v+cuucd5ArQcF56P+DH6rK4nDHPfiDqWu8= don@archimedes +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEA8ka8iQJGxVqvVHhuW21V+NdOdkkuiIyYXeo2CJU2KgGmHGerJA34P6ZMkn9gCb8UHdc75S8AtcDHPxNPouTmCkB4sRsTDpLpnxENdUlItBBX639ouwkeMfZ3FgGQ+6HCNvTh17K2Pl8PB70AbqlT1eIW0jP9UUNyXU9TZXJzUe0= don@xieana diff --git a/.subversion/README.txt b/.subversion/README.txt new file mode 100644 index 0000000..24141c9 --- /dev/null +++ b/.subversion/README.txt @@ -0,0 +1,111 @@ +This directory holds run-time configuration information for Subversion +clients. The configuration files all share the same syntax, but you +should examine a particular file to learn what configuration +directives are valid for that file. + +The syntax is standard INI format: + + - Empty lines, and lines starting with '#', are ignored. + The first significant line in a file must be a section header. + + - A section starts with a section header, which must start in + the first column: + + [section-name] + + - An option, which must always appear within a section, is a pair + (name, value). There are two valid forms for defining an + option, both of which must start in the first column: + + name: value + name = value + + Whitespace around the separator (:, =) is optional. + + - Section and option names are case-insensitive, but case is + preserved. + + - An option's value may be broken into several lines. The value + continuation lines must start with at least one whitespace. + Trailing whitespace in the previous line, the newline character + and the leading whitespace in the continuation line is compressed + into a single space character. + + - All leading and trailing whitespace around a value is trimmed, + but the whitespace within a value is preserved, with the + exception of whitespace around line continuations, as + described above. + + - When a value is a list, it is comma-separated. Again, the + whitespace around each element of the list is trimmed. + + - Option values may be expanded within a value by enclosing the + option name in parentheses, preceded by a percent sign: + + %(name) + + The expansion is performed recursively and on demand, during + svn_option_get. The name is first searched for in the same + section, then in the special [DEFAULT] section. If the name + is not found, the whole %(name) placeholder is left + unchanged. + + Any modifications to the configuration data invalidate all + previously expanded values, so that the next svn_option_get + will take the modifications into account. + + +Configuration data in the Windows registry +========================================== + +On Windows, configuration data may also be stored in the registry. The +functions svn_config_read and svn_config_merge will read from the +registry when passed file names of the form: + + REGISTRY:/path/to/config-key + +The REGISTRY: prefix must be in upper case. The part must be +one of: + + HKLM for HKEY_LOCAL_MACHINE + HKCU for HKEY_CURRENT_USER + +The values in config-key represent the options in the [DEFAULT] section. +The keys below config-key represent other sections, and their values +represent the options. Only values of type REG_SZ whose name doesn't +start with a '#' will be used; other values, as well as the keys' +default values, will be ignored. + + +File locations +============== + +Typically, Subversion uses two config directories, one for site-wide +configuration, + + Unix: + /etc/subversion/servers + /etc/subversion/config + /etc/subversion/hairstyles + Windows: + %ALLUSERSPROFILE%\Application Data\Subversion\servers + %ALLUSERSPROFILE%\Application Data\Subversion\config + %ALLUSERSPROFILE%\Application Data\Subversion\hairstyles + REGISTRY:HKLM\Software\Tigris.org\Subversion\Servers + REGISTRY:HKLM\Software\Tigris.org\Subversion\Config + REGISTRY:HKLM\Software\Tigris.org\Subversion\Hairstyles + +and one for per-user configuration: + + Unix: + ~/.subversion/servers + ~/.subversion/config + ~/.subversion/hairstyles + Windows: + %APPDATA%\Subversion\servers + %APPDATA%\Subversion\config + %APPDATA%\Subversion\hairstyles + REGISTRY:HKCU\Software\Tigris.org\Subversion\Servers + REGISTRY:HKCU\Software\Tigris.org\Subversion\Config + REGISTRY:HKCU\Software\Tigris.org\Subversion\Hairstyles + diff --git a/.subversion/config b/.subversion/config new file mode 100644 index 0000000..f7234cf --- /dev/null +++ b/.subversion/config @@ -0,0 +1,67 @@ +### This file configures various client-side behaviors. +### +### The commented-out examples below are intended to demonstrate +### how to use this file. + +### Section for authentication and authorization customizations. +### Set store-password to 'no' to avoid storing your subversion +### passwords in the auth/ area of your config directory. +### It defaults to 'yes'. Note that this option only prevents +### saving of *new* credentials; it doesn't invalidate existing +### caches. (To do that, remove the cache files by hand.) +# [auth] +# store-password = no + +### Section for configuring external helper applications. +### Set editor to the command used to invoke your text editor. +### This will override the environment variables that Subversion +### examines by default to find this information ($EDITOR, +### et al). +### Set diff-cmd to the absolute path of your `diff' program. +### This will override the compile-time default, which is to use +### Subversion's internal diff implementation. +### Set diff3-cmd to the absolute path of your `diff3' program. +### This will override the compile-time default, which is to use +### Subversion's internal diff3 implementation. +### Set diff3-has-program-arg to `true' or `yes' if your `diff3' +### program accepts the `--diff-program' option. +# [helpers] +# editor-cmd = editor (vi, emacs, notepad, etc.) +# diff-cmd = diff_program (diff, gdiff, etc.) +# diff3-cmd = diff3_program (diff3, gdiff3, etc.) +# diff3-has-program-arg = [true | false] + +### Section for configuring tunnel agents. +# [tunnels] +### Configure svn protocol tunnel schemes here. By default, only +### the `ssh' scheme is defined. You can define other schemes to +### be used with `svn+scheme://hostname/path' URLs. A scheme +### definition is simply a command, optionally prefixed by an +### environment variable name which can override the command if it +### is defined. The command (or environment variable) may contain +### arguments, using standard shell quoting for arguments with +### spaces. The command will be invoked as: +### svnserve -t +### If the built-in ssh scheme were not predefined, it could be +### defined as: +# ssh = $SVN_SSH ssh +### If you wanted to define a new `rsh' scheme, to be used with +### 'svn+rsh:' URLs, you could do so as follows: +# rsh = rsh +### Or, if you wanted to specify a full path and arguments: +# rsh = /path/to/rsh -l myusername +### On Windows, if you are specifying a full path to a command, +### use a forward slash (/) or a paired backslash (\\) as the +### path separator. A single backslash will be treated as an +### escape for the following character. + +### Section for configuring miscelleneous Subversion options. +# [miscellany] +### Set global-ignores to a set of whitespace-delimited globs +### which Subversion will ignore in its `status' output. +# global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store +### Set log-encoding to the default encoding for log messages +# log-encoding = latin1 + +### See http://subversion.tigris.org/issues/show_bug.cgi?id=668 +### for what else will soon be customized in this file. diff --git a/.subversion/servers b/.subversion/servers new file mode 100644 index 0000000..1a7131c --- /dev/null +++ b/.subversion/servers @@ -0,0 +1,84 @@ +### This file specifies server-specific protocol parameters, +### including HTTP proxy information, and HTTP timeout settings. +### +### The currently defined server options are: +### http-proxy-host Proxy host for HTTP connection +### http-proxy-port Port number of proxy host service +### http-proxy-username Username for auth to proxy service +### http-proxy-password Password for auth to proxy service +### http-proxy-exceptions List of sites that do not use proxy +### http-timeout Timeout for HTTP requests in seconds +### http-compression Whether to compress HTTP requests +### neon-debug-mask Debug mask for Neon HTTP library +### ssl-authority-files List of files, each of a trusted CAs +### ssl-ignore-unknown-ca Allow untrusted server certificates +### ssl-ignore-invalid-date Allow expired/postdated certificates +### ssl-ignore-host-mismatch Allow certificates for other servers +### ssl-client-cert-file PKCS#12 format client certificate file +### ssl-client-cert-password Client Key password, if needed. +### +### HTTP timeouts, if given, are specified in seconds. A timeout +### of 0, i.e. zero, causes a builtin default to be used. +### +### The commented-out examples below are intended only to +### demonstrate how to use this file; any resemblance to actual +### servers, living or dead, is entirely coincidental. + +### In this section, the URL of the repository you're trying to +### access is matched against the patterns on the right. If a +### match is found, the server info is from the section with the +### corresponding name. + +### Note that the ssl-ignore overrides significantly decrease the +### security of the connection, and may allow a third party to +### intercept or even modify the transmitted data. + +# [groups] +# group1 = *.collab.net +# othergroup = repository.blarggitywhoomph.com +# thirdgroup = *.example.com + +### Information for the first group: +# [group1] +# http-proxy-host = proxy1.some-domain-name.com +# http-proxy-port = 80 +# http-proxy-username = blah +# http-proxy-password = doubleblah +# http-timeout = 60 +# neon-debug-mask = 130 +# ssl-ignore-unknown-ca = true +# ssl-ignore-host-mismatch = true +# ssl-ignore-invalid-date = true + +### Information for the second group: +# [othergroup] +# http-proxy-host = proxy2.some-domain-name.com +# http-proxy-port = 9000 +# No username and password, so use the defaults below. + +### You can set default parameters in the 'global' section. +### These parameters apply if no corresponding parameter is set in +### a specifically matched group as shown above. Thus, if you go +### through the same proxy server to reach every site on the +### Internet, you probably just want to put that server's +### information in the 'global' section and not bother with +### 'groups' or any other sections. +### +### If you go through a proxy for all but a few sites, you can +### list those exceptions under 'http-proxy-exceptions'. This only +### overrides defaults, not explicitly matched server names. +### +### 'ssl-authority-files' is a semicolon-delimited list of files, +### each pointing to a PEM-encoded Certificate Authority (CA) +### SSL certificate. See details above for overriding security +### due to SSL. +# [global] +# http-proxy-exceptions = *.exception.com, www.internal-site.org +# http-proxy-host = defaultproxy.whatever.com +# http-proxy-port = 7000 +# http-proxy-username = defaultusername +# http-proxy-password = defaultpassword +# http-compression = yes +# No http-timeout, so just use the builtin default. +# No neon-debug-mask, so neon debugging is disabled. +# ssl-authority-files = /path/to/CAcert.pem;/path/to/CAcert2.pem