summarylogtreecommitdiffstats
path: root/lsb_release
blob: 178cd26215c4d23edc6ccb2880983538f1854379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# "Fake" lsb_release script
# This only exists so that "lsb_release -r" will return the below string
# when placed in the $PATH

if [ "$#" -ne 1 ] || [ "$1" != "-r" ] ; then
    echo "Expected only '-r' argument"
    exit 1
fi

echo "Release: 20.04"