Git annex notes
Tyler Cipriani Posted

Setup New repo

  1. init git:

  2. init git annex:

  3. Add S3 Remote named public-s3

  4. Add file to git annex

  5. copy current directory to public-s3 remote

  6. remove local copy—will only remove if already in remote—nothing lost

  7. Commit

Setup NFS as remote using Rsync over ssh

  1. Add Rsync as unencrypted remote

  2. Add file to nas

Pull down photos

Make available to the public (after public s3 setup):

List remotes and remote info

Show remotes

Show remote info

Finding info about files

Find a file:

Adding a file to http://tyler.zone

Sharing via Amazon s3

Setup

Make amazon bucket with policy:

Put creds out into the environment

License: Creative Commons Attribution-ShareAlike License
Puppet, apt-get-update, source-lists, and Dumbness
Tyler Cipriani Posted

Configuration management software is nice because it lets you be a little dumb. Puppet, Chef, Ansible, and Salt have all managed to smooth down many of the rough edges that were ubiquitous in the terrible bash and perl scripts used for old-time, ad-hoc configuration management.

My main problem with configuration management software is that I’m still dumb. I’m still dumb and there are now new, non-obvious, ways to be dumb.

One non-obvious example is below:

On the surface, this little contrived example seems fine: Apache requires a special source, adding that source triggers an apt-get update. Therefore, before Apache is installed, our sources list should be up-to-date, right? Wrong.

The problem here is subtle: the notify => Exec['apt-get update'] in the file resource means that the file "/etc/apt/sources.d/${name}.list" has to exist before apt-get update is run. Adding require => File['/etc/apt/sources.list.d/some_source.list'] to the Apache package means that it will be installed only after "/etc/apt/sources.d/${name}.list" gets added.

HOWEVER, the Apache package, currently, has no relationship with apt-get update. This means Puppet may try to install the Apache package after adding /etc/apt/sources.d/some_source.list, but before running apt-get update.

While the short example above is not a problem in isolation, it can be a problem in a larger manifest. Puppet will succeed with some packages, fail in others, then create unresolvable dependency conflicts on the next run (after apt-get update has run).

Edit—2016-03-20

This relationship is easier to see when you take advantage of puppet’s --graph ability:

Puppet relationship graph

Cucumber tests getting started
Tyler Cipriani Posted

https://gorails.com/setup/ubuntu/14.04

Check setup

  • ruby -v
  • gem list selenium
  • gem install selenium-webdriver
  • Firefox
  • IRB

Ruby install

Selenium webdriver

require "selenium-webdriver" https://code.google.com/p/selenium/wiki/RubyBindings

driver.class http://www.rubydoc.info/gems/selenium-webdriver/Selenium/WebDriver/Driver

Core tests

[mw-core]/tests/browser/features/create_account.feature

Bundler

Important

License: Creative Commons Attribution-ShareAlike License

May 2015
S M T W T F S