~ubuntu-branches/ubuntu/saucy/munin/saucy

« back to all changes in this revision

Viewing changes to debian/ostype_helper

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 12:54:28 UTC
  • mfrom: (8.1.30 sid)
  • Revision ID: package-import@ubuntu.com-20120611125428-k8z25s77rp755vxe
Tags: 2.0.0-1ubuntu1
* Resync with Debian unstable.
* d/munin-node.upstart,munin.upstart: Add upstart configurations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# Helper shell to give the OSTYPE
 
3
 
 
4
UNAME=$(uname)
 
5
 
 
6
if [ "$UNAME" = "Linux" ];
 
7
then
 
8
        echo linux
 
9
fi
 
10
 
 
11
if [ "$UNAME" = "GNU/kFreeBSD" ];
 
12
then
 
13
        echo freebsd
 
14
fi