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 +1 -1
- data/dist/etc/init.d/flapjack-notifier +8 -8
- data/dist/etc/init.d/flapjack-workers +1 -1
- data/flapjack.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
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,
|
|
6
|
+
# Boots flapjack-notifier, notifier for Flapjack.
|
|
7
7
|
#
|
|
8
8
|
|
|
9
|
-
PATH
|
|
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
|
-
|
|
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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
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
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:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.5.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Lindsay Holmwood
|