rboss 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -248,6 +248,28 @@ Use an array with the services to remove, the current supported are:
248
248
 
249
249
  Any slimmed service will be removed logically by using a ".rej" suffix in the files/directories.
250
250
 
251
- ### Configuring jbossweb
252
-
253
251
  ### Configuring connectors
252
+
253
+ Tools
254
+ -----------
255
+
256
+ ### Command Line Slimming
257
+
258
+ You can do a slimming using only the command line, just put your terminal in the profile dir
259
+ and do the following:
260
+
261
+ jboss-profile --this --slimming services-here
262
+
263
+ This will slim the defined services. Use --verbose to see the changed files.
264
+
265
+ To restore slimmed services, use --restore.
266
+
267
+ jboss-profile --this --restore services-here
268
+
269
+ ### Password Encryption
270
+
271
+ You can use the SecureIdentityLoginModule to encrypt a password for use with a login module
272
+ to secure a datasource password.
273
+
274
+ jboss-profile --encrypt your-password-here
275
+
data/bin/jboss-profile CHANGED
@@ -96,7 +96,7 @@ if params[:slimming]
96
96
  end
97
97
 
98
98
  if params[:restore]
99
- profile.add :restore, *params[:restore]
99
+ profile.add :restore, params[:restore]
100
100
  end
101
101
 
102
102
  if params[:encrypt]
data/lib/rboss/version.rb CHANGED
@@ -21,5 +21,5 @@
21
21
  # THE SOFTWARE.
22
22
 
23
23
  module RBoss
24
- VERSION = "0.3.0"
24
+ VERSION = "0.3.1"
25
25
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rboss
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.3.0
5
+ version: 0.3.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Ataxexe