File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 1.0.13] ( https://github.com/demacmedia/vagrant-lamp/tree/1.0.13 ) (2018-03-09)
4
+ [ Full Changelog] ( https://github.com/demacmedia/vagrant-lamp/compare/1.0.12...1.0.13 )
5
+
6
+ - Fixed error when `plugin.index("(")` returns `nil`
7
+ - Removed unnecessary pre-definition of users and groups other than mysql
8
+
3
9
## [ 1.0.12] ( https://github.com/demacmedia/vagrant-lamp/tree/1.0.12 ) (2018-02-17)
4
10
[ Full Changelog] ( https://github.com/demacmedia/vagrant-lamp/compare/1.0.11...1.0.12 )
5
11
Original file line number Diff line number Diff line change 3
3
config_groups=(
4
4
# 'gid name'
5
5
' 500 mysql'
6
- ' 501 redis'
7
- ' 502 varnish'
8
- ' 503 varnishlog'
9
6
)
Original file line number Diff line number Diff line change 8
8
config_users=(
9
9
# 'uid gid name homeDir shell comment'
10
10
' 500 500 mysql - /bin/false MySQL\ Server'
11
- ' 501 501 redis /var/lib/redis /bin/false Redis\ Server'
12
- ' 502 502 varnish /home/varnish /bin/false -'
13
- ' 503 503 varnishlog /home/varnishlog /bin/false -'
14
11
)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def check_plugins(dependencies)
27
27
else
28
28
first = 0
29
29
end
30
- installed_dependencies . push plugin . slice ( ( first ) ..( plugin . index ( "(" ) -1 ) ) . strip
30
+ installed_dependencies . push plugin . slice ( ( first ) ..( plugin . index ( "(" ) . to_i -1 ) ) . strip
31
31
end
32
32
33
33
dependencies_already_satisfied = true
You can’t perform that action at this time.
0 commit comments