flapjack 0.5.3 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.3
1
+ 0.5.4
@@ -1,24 +1,24 @@
1
1
  #!/bin/bash
2
2
  #
3
- # Copyright (c) 2009 Lindsay Holmwood <lindsay@holmwood.id.au>
3
+ # Copyright (c) 2009-2011 Lindsay Holmwood <lindsay@holmwood.id.au>
4
4
  #
5
5
  # flapjack-notifier
6
- # Boots flapjack-notifier, check executors for Flapjack.
6
+ # Boots flapjack-notifier, notifier for Flapjack.
7
7
  #
8
8
 
9
- PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local:/usr/local/sbin:/usr/local/bin
9
+ PATH=$PATH:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local:/usr/local/sbin:/usr/local/bin:/usr/lib/flapjack/bin
10
10
 
11
11
  if [ -f /etc/default/flapjack-notifier ]; then
12
- . /etc/default/flapjack-notifier
12
+ . /etc/default/flapjack-notifier
13
13
  fi
14
14
 
15
15
  # Default return value
16
16
  RETVAL=0
17
17
 
18
18
  if [ ! $(which flapjack-notifier-manager) ]; then
19
- echo "Error: flapjack-notifier-manager isn't on your path."
20
- echo "Refusing to start!"
21
- exit 1
19
+ echo "Error: flapjack-notifier-manager isn't on your path."
20
+ echo "Refusing to start!"
21
+ exit 1
22
22
  fi
23
23
 
24
24
  # Evaluate command
@@ -40,7 +40,7 @@ case "$1" in
40
40
  ;;
41
41
  *)
42
42
  echo "Usage: flapjack-notifier {start|stop|restart}"
43
- exit 1
43
+ RETVAL=1
44
44
  ;;
45
45
  esac
46
46
 
@@ -6,7 +6,7 @@
6
6
  # Boots flapjack-workers, check executors for Flapjack.
7
7
  #
8
8
 
9
- PATH=$PATH:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local:/usr/local/sbin:/usr/local/bin
9
+ PATH=$PATH:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local:/usr/local/sbin:/usr/local/bin:/usr/lib/flapjack/bin
10
10
 
11
11
  if [ -f /etc/default/flapjack-workers ]; then
12
12
  . /etc/default/flapjack-workers
data/flapjack.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{flapjack}
8
- s.version = "0.5.3"
8
+ s.version = "0.5.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Lindsay Holmwood"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flapjack
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 3
10
- version: 0.5.3
9
+ - 4
10
+ version: 0.5.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lindsay Holmwood