cloudron 5.1.0 → 5.1.1

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.
Files changed (2) hide show
  1. package/bin/cloudron +7 -7
  2. package/package.json +1 -1
package/bin/cloudron CHANGED
@@ -112,7 +112,7 @@ program.command('clone')
112
112
  program.command('configure')
113
113
  .description('Change location of an app')
114
114
  .option('--app <id/location>', 'App id or location')
115
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
115
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
116
116
  .option('-p, --port-bindings [PORT=port,...]', 'Query port bindings')
117
117
  .option('-l, --location <location>', 'Location')
118
118
  .option('-s, --secondary-domains [DOMAIN=domain,...]', 'Query/Set secondary domains')
@@ -192,7 +192,7 @@ program.command('init')
192
192
  program.command('install')
193
193
  .description('Install or update app')
194
194
  .option('--image <docker image>', 'Docker image')
195
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
195
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
196
196
  .option('-p, --port-bindings [PORT=port,...]', 'Query/Set port bindings')
197
197
  .option('-l, --location <domain>', 'Subdomain or full domain')
198
198
  .option('-s, --secondary-domains [DOMAIN=domain,...]', 'Query/Set secondary domains')
@@ -257,26 +257,26 @@ program.command('repair')
257
257
  .description('Repair an installed application (re-configure)')
258
258
  .option('--app <id/location>', 'App id or location')
259
259
  .option('--image <docker image>', 'Docker image')
260
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
260
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
261
261
  .action(actions.repair);
262
262
 
263
263
  program.command('restore')
264
264
  .description('Restore app from known backup')
265
265
  .option('--app <id/location>', 'App id or location')
266
266
  .option('--backup <backup>', 'Backup id')
267
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
267
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
268
268
  .action(actions.restore);
269
269
 
270
270
  program.command('restart')
271
271
  .description('Restart an installed application')
272
272
  .option('--app <id/location>', 'App id or location')
273
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
273
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
274
274
  .action(actions.restart);
275
275
 
276
276
  program.command('start')
277
277
  .description('Start an installed application')
278
278
  .option('--app <id/location>', 'App id or location')
279
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
279
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
280
280
  .action(actions.start);
281
281
 
282
282
  program.command('stop')
@@ -300,7 +300,7 @@ program.command('update')
300
300
  .option('--appstore-id <appid[@version]>', 'Use app from the store')
301
301
  .option('--image <docker image>', 'Docker image')
302
302
  .option('--no-backup', 'Skip backup [false]', false)
303
- .option('--no-wait', 'Wait for healthcheck to succeed [false]', false)
303
+ .option('--no-wait', 'Wait for healthcheck to succeed [false]')
304
304
  .option('--no-force', 'Match appstore id and manifest id before updating', true)
305
305
  .action(actions.update);
306
306
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudron",
3
- "version": "5.1.0",
3
+ "version": "5.1.1",
4
4
  "license": "MIT",
5
5
  "description": "Cloudron Commandline Tool",
6
6
  "main": "main.js",