#!/bin/bash -e

# find-distribution-release:
# Prints the distribution release (a string like `12.04' in the case of Ubuntu)
# using the lsb_release command.

lsb_release --short --release
