~ubuntu-branches/ubuntu/trusty/mod-gearman/trusty

« back to all changes in this revision

Viewing changes to t/sleep

  • Committer: Bazaar Package Importer
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-09-22 21:25:15 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110922212515-w9amj0jz6vt9l36i
Tags: 1.0.10-1
* New upstream release
* Use upstream tarball instead of git repo

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
seconds=10
4
 
if [ ! -z "$1" ]; then
5
 
  seconds="$1"
6
 
fi
7
 
echo "sleeping $seconds seconds..."
8
 
sleep $seconds
9
 
exit