forked from oamg/leapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleapp.spec
623 lines (588 loc) · 30.2 KB
/
leapp.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
Name: leapp
Version: 0.1
Release: 33
Summary: leapp tool rpm
Group: Unspecified
License: LGPLv2+
URL: https://github.com/leapp-to/leapp
# git clone https://github.com/leapp-to/leapp
# tito build --tgz --tag=%{version}
Source0: %{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python2-devel
%if 0%{?rhel} && 0%{?rhel} <= 7
BuildRequires: python-setuptools
BuildRequires: epel-rpm-macros
%else
BuildRequires: python2-setuptools
BuildRequires: python-rpm-macros
%endif
%description
LeApp is a "Minimum Viable Migration" utility that aims to decouple virtualized
applications from the operating system kernel included in their VM image by
migrating them into macro-containers that include all of the traditional
components of a stateful VM (operating system user space, application run-time,
management tools, configuration files, etc), but use the kernel of the
container host rather than providing their own.
%package tool
Summary: LeApp is a "Minimum Viable Migration" utility
Requires: python2-%{name} = %{version}-%{release}
%description tool
LeApp is a "Minimum Viable Migration" utility that aims to decouple virtualized
applications from the operating system kernel included in their VM image by
migrating them into macro-containers that include all of the traditional
components of a stateful VM (operating system user space, application run-time,
management tools, configuration files, etc), but use the kernel of the
container host rather than providing their own.
%package -n python2-%{name}
Summary: Python libraries of LeApp
Requires: libguestfs-tools-c
Requires: libvirt-client
Requires: libvirt-python
Requires: nmap
Requires: sshpass
Requires: python-enum34
Requires: rsync
%if 0%{?rhel} && 0%{?rhel} <= 7
Requires: python-psutil
Requires: python-nmap
Requires: python-paramiko
Requires: python-setuptools
Requires: python-argcomplete
%else
Requires: python2-nmap
Requires: python2-paramiko
Requires: python2-psutil
Requires: python2-setuptools
Requires: python2-argcomplete
%endif
%description -n python2-%{name}
LeApp is a "Minimum Viable Migration" utility that aims to decouple virtualized
applications from the operating system kernel included in their VM image by
migrating them into macro-containers that include all of the traditional
components of a stateful VM (operating system user space, application run-time,
management tools, configuration files, etc), but use the kernel of the
container host rather than providing their own.
%package cockpit
Summary: Cockpit plugin for LeApp
Requires: cockpit
Requires: docker
Requires: %{name}-tool = %{version}-%{release}
%description cockpit
LeApp is a "Minimum Viable Migration" utility that aims to decouple virtualized
applications from the operating system kernel included in their VM image by
migrating them into macro-containers that include all of the traditional
components of a stateful VM (operating system user space, application run-time,
management tools, configuration files, etc), but use the kernel of the
container host rather than providing their own.
%package -n %{name}-bash-completion
Summary: Bash completion files for LeApp
Requires: %{name}-tool = %{version}-%{release}
%description -n %{name}-bash-completion
LeApp is a "Minimum Viable Migration" utility that aims to decouple virtualized
applications from the operating system kernel included in their VM image by
migrating them into macro-containers that include all of the traditional
components of a stateful VM (operating system user space, application run-time,
management tools, configuration files, etc), but use the kernel of the
container host rather than providing their own.
%package -n %{name}-zsh-completion
Summary: Zsh completion files for LeApp
Requires: %{name}-tool = %{version}-%{release}
%description -n %{name}-zsh-completion
LeApp is a "Minimum Viable Migration" utility that aims to decouple virtualized
applications from the operating system kernel included in their VM image by
migrating them into macro-containers that include all of the traditional
components of a stateful VM (operating system user space, application run-time,
management tools, configuration files, etc), but use the kernel of the
container host rather than providing their own.
%prep
%autosetup
sed -i "s/install_requires=/install_requires=[],__fake=/g" src/setup.py
%build
pushd src
%py2_build
popd
# When installed via RPM, always rely on ssh-agent for key management
# update version in Cockpit
cat <<EOF > cockpit/config.json
{
"tool-path": "/usr/bin/leapp-tool",
"tool-workdir": "/usr/bin",
"version": "%{version}-%{release}"
}
EOF
# update version in CLI
cat <<EOF > src/leappto/version.py
__version__ = '%{version}-%{release}'
__pkg_name__ = 'leappto'
EOF
cat cockpit/config.json
%install
mkdir -p %{buildroot}%{_datadir}/cockpit/leapp
mkdir -p %{buildroot}%{_sharedstatedir}/leapp/macrocontainers
mkdir -p %{buildroot}%{_sysconfdir}/bash_completion.d
mkdir -p %{buildroot}%{_datadir}/zsh/site-functions/
cp -a cockpit/* %{buildroot}%{_datadir}/cockpit/leapp/
cp -a autocomplete/%{name}-autocomplete.sh %{buildroot}%{_sysconfdir}/bash_completion.d/%{name}-autocomplete.sh
cp -a autocomplete/%{name}-autocomplete.zsh %{buildroot}%{_datadir}/zsh/site-functions/_%{name}-autocomplete
pushd src
%py2_install
popd
%files tool
%doc README.md AUTHORS COPYING
%attr(755, root, root) %{_bindir}/%{name}-tool
%files -n python2-%{name}
%doc README.md AUTHORS COPYING
%{python2_sitelib}/*
%files cockpit
%doc README.md AUTHORS COPYING
%dir %attr (755,root,root) %{_datadir}/cockpit/%{name}
%dir %attr (755,root,root) %{_sharedstatedir}/leapp/macrocontainers
%attr(644, root, root) %{_datadir}/cockpit/%{name}/*
%files -n %{name}-bash-completion
%attr (644, root, root) %{_sysconfdir}/bash_completion.d/%{name}-autocomplete.sh
%files -n %{name}-zsh-completion
%attr (644, root, root) %{_datadir}/zsh/site-functions/_%{name}-autocomplete
%changelog
* Fri Jun 30 2017 Vinzenz Feenstra <[email protected]> 0.1-33
- Version bump for 0.1 ([email protected])
- Added --freeze-fs option into migrate command, freezefs is not used by
default ([email protected])
- Test Leapp RPM in CI (#253) ([email protected])
- Removed commented part of code ([email protected])
- GUI: Port mapping error messaging ([email protected])
- NOJIRA: update the getstarted with youtube video ([email protected])
- cli: Disable interfering init services on el6 ([email protected])
- spec: Fix directory creation ([email protected])
- NOJIRA: create /var/lib/leapp/macrocontainers as part of leapp-cockpit
install ([email protected])
- NOJIRA: udpate getstarted with latest relevant info ([email protected])
- Update Python level CI dependencies (#229) ([email protected])
- NOJIRA: peer review ([email protected])
- NOJIRA: right now leapp won't run on a fresh install, it misses docker during
setup and python libs ([email protected])
- NOJIRA: right now leapp won't run on a fresh install, it misses docker during
setup and python libs ([email protected])
- excluded paths can be empty array now ([email protected])
- Changed error type and variable name ([email protected])
- --exclude-path overrides default list ([email protected])
- CLI: Added support for exclude paths ([email protected])
- Add excĺuded paths - initial commit ([email protected])
- NOJIRA: rename repo to leapp ([email protected])
- fix: Use rsync backend by default ([email protected])
- stop using _LOCALHOST, simple check if ip is in (127.0.0.1, localhost)
- add 127.0.0.1 to _LOCALHOST const ([email protected])
- Remove the fix_upstart function, turns out that it was not needed (and
actually there has been no service named mysqld, only mysql55-mysqld, so the
mysqld part never did anything). ([email protected])
- bugfix - do not resolve localhost to ip ([email protected])
- NOJIRA: update CLI version during RPM build ([email protected])
- NOJIRA: add new tox file with line length ([email protected])
- Clarify purpose of "pipenv install" task ([email protected])
- Restore Cockpit plugin test ([email protected])
- catch all Exceptions.* ([email protected])
- resolve fqdn to ip ([email protected])
- spec: Fix json output ([email protected])
- remove unnecessary PortsException - do not raise if hostname is not in
scan.all_hosts, check only error value ([email protected])
- integration-tests: Install tito build rpm ([email protected])
- integration-tests: Add python2-nmap rpm directly ([email protected])
- spec: Fix el7 deps ([email protected])
- integration-tests: Install the tito built RPM ([email protected])
- spec: Fix psutil dependency ([email protected])
- spec: Fix cockpit config generation ([email protected])
- Disabled default port mapping for migration executed from UI
- restore previous assertion for port-mapping int-tests ([email protected])
- instead of using has_items from hamcrest, use more explicit assertion
- fix integration tests ([email protected])
- check if port-mapping result contains expected ports ([email protected])
- add missed port - port mapping integration tests ([email protected])
- psutil package for setup.py ([email protected])
- psutil package ([email protected])
- restore PortScanException ([email protected])
- clean code ([email protected])
- use psutil.net_connections when it comes to scan localhost
- cli: By default do not check host keys as a workaround ([email protected])
- _port_remap is static now, removed default parameters for _port_remap
- ui: Using blue for running commands instead of orange ([email protected])
- _port_remap moved into MigrationContext since it is being used by map_ports
method directly ([email protected])
- port map can now handle set of target ports per a source port
- ui: Remove debug logging ([email protected])
- ui: Add back release and lock for import ([email protected])
- ui: Refactor call_leapp to be usable concurrently and add exandable logs
- Removed checkbox ID port list ([email protected])
- corrected input port verification ([email protected])
- Implemented changes suggested in comments ([email protected])
- Polishing of the code ([email protected])
- ui: Add custom port mapping form ([email protected])
- TRELLO-163: adding callback profile to see time details ([email protected])
- TRELLO-163: peer review add step description fix date alias
add time since begining reporting add timestamps and command time
duration execution reporting ([email protected])
- Remove list-machines tests & helpers ([email protected])
- Override correct variable name ([email protected])
- Configure correct user for host macrocontainer storage ([email protected])
- Simplify network interface regex ([email protected])
- Update test documentation ([email protected])
- Add CLI test case for local machine imports ([email protected])
- Fix interface regex on Fedora ([email protected])
- Add Docker to CI testing host ([email protected])
- ui: Fix visual port collission handling in UI ([email protected])
- ui: refactor port adding into separate function for easier reuse
- ui: Use patternfly compatible classes ([email protected])
- ui: Implement port mapping from CLI ([email protected])
- cli: Fix target IP list ([email protected])
- ui: Add a tooltip to the force create checkbox ([email protected])
- ui: Force creation checkbox checked by default ([email protected])
- ui: Force create command implementation ([email protected])
- Use sys.exit instead of exit ([email protected])
- Restore handling of missing storage directories ([email protected])
- Fix step function name ([email protected])
- Add --force-create option to migrate-machine ([email protected])
- Add selective destroy-container subcommand ([email protected])
- integration-tests: Use ssh-agent in cockpit test ([email protected])
- ui: Forward the agent socket ([email protected])
- Verify return value of find_machine preventing app to show a bt to user
- enable concurrent runs ([email protected])
- During check-target do not fail if storage dir is missing on target machine
- bugfix: pass container name var into MigrateContext ([email protected])
* Thu Jun 15 2017 Vinzenz Feenstra <[email protected]> 0.0.1-32
- ui: Start displaying progress after 'Find apps' was clicked
- ui: Add target container naming and listing support ([email protected])
- ui: Print all command output ([email protected])
- Handle running in a Py3 virtual environment ([email protected])
- cli: Fix check-target exception for localhost ([email protected])
- integration-tests: remove trailing spaces ([email protected])
- Remove unused import ([email protected])
- Removing container dir is unnecessary since containers have different names
- Check target access early in migrate-machine ([email protected])
- Update destroy-containers to use check-target ([email protected])
- Undo ssh calls changes since they were not necessary after merge
- ignore_errors flag for rmtree ([email protected])
- remove parsed.target condition, now it has default value
- fixed grep for wlp devices ([email protected])
- localhost as default target ([email protected])
- cli: Allow to use different user names, identity files etc in migrate-machine
- Don't enable early target check tests yet ([email protected])
- Fix function signature definition ([email protected])
- check-target subcommand ([email protected])
- Make destroy_containers iterate over all machine containers and delete it
- Make it able to get stdout of a ssh command ([email protected])
- Make it possible for user to define container name on target machine
- Derive container name from source hostname ([email protected])
- ui: Change timestamp to ISO8601 format ([email protected])
- ui: Fix missing busy_ports variable by referring to the right one
- UI: command line is shown in progress output ([email protected])
- Support local docs builds in pipenv config ([email protected])
- UI: Fix enter key handler ([email protected])
- UI: IP can be submitted with enter key ([email protected])
- ui: Fix alignment of ports ([email protected])
- ui: Skip Cockpit test because we're no longer listing VMs
- ui: Cleanup of intermediate changes and fixed migrate-machine command
- ui: Tooltip for port's usage (Used by...) and more cleanup
- ui: Adding second option for the source style and restyled the logging output
- ui: Fix source address related text ([email protected])
- ui: Default target and source by IP changes ([email protected])
- Tidy up port scanning in the test suite ([email protected])
- NOJIRA: add waiting message ([email protected])
- TRELLO-124: amending UI tests TRELLO-124: renmae le-app in the cockpit
- Change output if Source/Target machine is not accessible via SSH
- Add Arthur Mello (artmello) to be able to trigger integration tests
- Clarify use cases for ensure_fresh=yes ([email protected])
- Always reprovision even running test VMs ([email protected])
- Always run migrate-machine with sudo ([email protected])
- Support local docs builds in pipenv config ([email protected])
- Add docs regarding VM setup in tests ([email protected])
- Don't use ensure_fresh=yes in tests ([email protected])
- Use EPEL Ansible package & dependencies ([email protected])
- cli: Removed wrong import ([email protected])
- integration-tests: Fix the migrate-machine calls ([email protected])
- cli: Remove debugging code ([email protected])
- cli: More tuning to get the migration to work with localhost and custom
source ([email protected])
- cli: Config refactoring ([email protected])
- cli: Fixed paramiko host key check ([email protected])
- cli: Allow to use different user names, identity files etc in migrate-machine
- cli: Fixed more parts of the SSH code ([email protected])
- cli: Add find_machine support for SSH discovery ([email protected])
- cli: Code fixes from the refactoring ([email protected])
- cli: Refactored out Vagrant SSH detection to driver ([email protected])
- cli: SSH machine implementation ([email protected])
- note more explicitely why to use sudo to start the VMs ([email protected])
- Fix the demo instructions: - demo/start_vms.sh is no more (since
a1e8cbbf37c986fedcb66b152457394cc88f09de) - one should start the VMs using
sudo, as leapp-tool is run under sudo as well and it should be run under
the same user as the VM provisioning (it accesses the Vagrant cache of the
user to find the domains, see also the commit message for rev.
59c9c23b627dfc48034715408b6d09c88bc9e665) - since rev.
6e19c02f0d9378e0755870101842329a42289002, the '--user vagrant' parameter is
required (the default for ssh user was changed to the current user).
- Build the RPM in pre-merge CI ([email protected])
- Fix tito build errors ([email protected])
- missing pub key for centos6-drools ([email protected])
- partially refactored migrate machine code (root@mgazdik-
leapp.usersys.redhat.com)
- tests are now verifying if the execution failed because of port collisions
defined by user ([email protected])
- adding tests [WIP] ([email protected])
- Stop execution on user mapped port collision - initial commit
- get list by logic operator ([email protected])
- Defined portlist for port scanner and re-defined port-map based on portlist
- remove only default ports ([email protected])
- corrected error message in port_scan and added check for user_excluded_ports
- --tcp-port as mandatory param, remove default forwarded ports
- removed forgotten comments ([email protected])
- removed self check for protocol lists ([email protected])
- corrected docstrings ([email protected])
- corrected docstrings ([email protected])
- Relax the migration timing for CI again ([email protected])
- Restore & fix destroy-containers subcommand ([email protected])
- Revert "Don't test removed destroy-containers subcommand"
- enabled shallow scan by default ([email protected])
- modified httpd-stateless test due to the same reasons as the portmapping
tests (the machines need to be fresh so predict the new port mapping)
- modified tests, so they reset vms before they start ([email protected])
- Refactor storage path handling ([email protected])
- Update comment to match task structure ([email protected])
- Don't test removed destroy-containers subcommand ([email protected])
- Fix various issues in macrocontainer removal ([email protected])
- Corrected one test, added new one and code can now detect collisions with
user mapped pots ([email protected])
- Add trailing newline ([email protected])
- Split out target system cleanup ([email protected])
- corrected tests and switched source:target ports in user port map building
procedure [WIP] ([email protected])
- Added port exclusion [WIP] ([email protected])
- added --no-tcp-port argument ([email protected])
- PortMap is now subclass of OrderedDict [WIP] (root@mgazdik-
leapp.usersys.redhat.com)
- initial commit with PortMap class replacing OrderedDict [WIP]
- remove unused var ([email protected])
- fixed source_cfg ([email protected])
- add cfg for source ([email protected])
- added port_map init function ([email protected])
- machine context ([email protected])
- modified default mapping test in order to accomodate the port conflict resolv
behavior ([email protected])
- Added basic port conflict resolver ([email protected])
- Added info for user about migrated ports (root@mgazdik-
leapp.usersys.redhat.com)
- solved switch ports + modified test accordingly (root@mgazdik-
leapp.usersys.redhat.com)
- if it's impossible to freeze fs then stop migration - for example perm denied
- remove unnecessary function from integration test ([email protected])
- fixed int tests ([email protected])
- int tests ([email protected])
- clean code ([email protected])
- fixed closing perm connection ([email protected])
- parameter name changed in port-inspect from ip -> address (root@mgazdik-
leapp.usersys.redhat.com)
- added error handling in migration scan ([email protected])
- catch exceptions ([email protected])
- rsync as alternative for virt-tar-out ([email protected])
- help for tcp-port difined properly ([email protected])
- added port override test ([email protected])
- Added new tests for default autodetection (root@mgazdik-
leapp.usersys.redhat.com)
- tweaking of the default port detection test steps (root@mgazdik-
leapp.usersys.redhat.com)
- defined test for getting default ports (root@mgazdik-
leapp.usersys.redhat.com)
- Added port detection test (WIP) ([email protected])
- minor changes ([email protected])
- Changed dicts back to arrays since it doesn't require modification of MC +
minotr tweaks ([email protected])
- Changed array of ports to dict ([email protected])
- Disabled --udp-port option, but implementation is being kept in the code,
ports can be overriden and added by user ([email protected])
- Added --udp-port option, continuing the work on re-mapping
- fixed some issues, odded port remappnig ([email protected])
- No preset user when installed via RPM ([email protected])
- Use hyphens in config setting names ([email protected])
- Note Splinter RFE for 'Enabled?' check ([email protected])
- Remove hardcoded user from Cockpit plugin ([email protected])
- Add test case for migration through the plugin ([email protected])
- Make validity check more self-explanatory ([email protected])
- Only use `sudo vagrant` when not root ([email protected])
- Added basic structure of port override ([email protected])
- Modified migrate machine, so the port-inspect can be tested and new params as
well ([email protected])
- Modified migrate machine, so the port-inspect can be tested and new params as
well ([email protected])
- cockpit: Fix empty initial input scan attempt ([email protected])
- cockpit: Fix toggle bug - did not hide input when custom gets unchecked
- Restore ability to run tests as non-root user ([email protected])
- Added _port_scan function and modified port-inspect to use it
- cli: Add back accidentally removed line ([email protected])
- cli: Apply custom target support to destroy containers ([email protected])
- cli: Apply custom target support to migrate-machine ([email protected])
- Added Marcel Gazdik into list of authors ([email protected])
- cockpit: Add missing semicolon ([email protected])
- cockpit: Simply and improve functionality ([email protected])
- cockpit: Add custom target address support ([email protected])
- cli: Allow FQDN to be used as argument for port-inspect ([email protected])
- added /CONTRIBUTING.rst symlink to contributing.rst ([email protected])
- changed getting started link ([email protected])
- Replaced content of README.md files with links to the readthedocs pages
- Added Marcel Gazdik to the reviewers list & alph. sorted the list
- removed wrong comment from contributing.rst ([email protected])
- Amend the rationale for sticking with an older Selenium ([email protected])
- Check for failure to load the login page ([email protected])
- Enable Cockpit socket activation ([email protected])
- Remove spurious trailing slash ([email protected])
- Remove unintended task separator ([email protected])
- Quote template expression correctly ([email protected])
- CI: Add dev symlink for use by Cockpit plugin ([email protected])
- Document the Selenium compatibility issue ([email protected])
- Remove outdated check for geckodriver ([email protected])
- Configure CI for UI testing ([email protected])
- Enable Cockpit integration testing ([email protected])
- Clarify failure when machines are missing ([email protected])
- Added GAZDOWN user into integration-tests ([email protected])
- added /CONTRIBUTING.rst symlink to contributing.rst ([email protected])
- changed getting started link ([email protected])
- Replaced content of README.md files with links to the readthedocs pages
- Added Marcel Gazdik to the reviewers list & alph. sorted the list
- removed wrong comment from contributing.rst ([email protected])
- Amend the rationale for sticking with an older Selenium ([email protected])
- Check for failure to load the login page ([email protected])
- Enable Cockpit socket activation ([email protected])
- Remove spurious trailing slash ([email protected])
- Remove unintended task separator ([email protected])
- Quote template expression correctly ([email protected])
- CI: Add dev symlink for use by Cockpit plugin ([email protected])
- Document the Selenium compatibility issue ([email protected])
- Remove outdated check for geckodriver ([email protected])
- Configure CI for UI testing ([email protected])
- Enable Cockpit integration testing ([email protected])
- Clarify failure when machines are missing ([email protected])
- Be pythonic and follow pep8 ([email protected])
- Add package listing for non-shallow scans ([email protected])
- Name changed from LeApp-To back to LeApp ([email protected])
- Drop creation of ovirt-guest-agent channels ([email protected])
- Drop ovirt-guest-agent ansible role usage ([email protected])
- TRELLO#104 Inspect source machine only using ssh ([email protected])
- WIP install steps - the vagrant modules build procedure must be tested
- WIP on install steps for CentOS7, RHEL7, Fedora 25 ([email protected])
- removed emoticons ([email protected])
- added demo documentation ([email protected])
- Changed project name Leapp -> LeApp-To ([email protected])
- added integration tests and linked with contributing ([email protected])
- added contributing ([email protected])
- TRELLO#97 - Use direct libguestfs backend to avoid libvirt disk image
relabeling ([email protected])
- content polishing ([email protected])
- modified content in multiple pages, added content into leapp tool
- Updated docs for RPM usage ([email protected])
- added forgoten comment ([email protected])
- changed theme to RTD ([email protected])
- changed README.md in centos-ci and / and added link to RTD
- changed order in menu ([email protected])
- added leapp-tool CLI command page and ui page ([email protected])
- initial commit of centosci and geting started pages ([email protected])
- initial Sphinx setup comit ([email protected])
- Rephrase README, Fix cockpit ([email protected])
- Fully resolve merge conflict ([email protected])
- Declare sshpass dependency in RPM spec ([email protected])
- Use updated parameter name ([email protected])
- Install sshpass from EPEL for --ask-pass testing ([email protected])
- port-scan --shallow - integration tests ([email protected])
- Finish reverting partial edit ([email protected])
- Support --ask-pass option in CLI ([email protected])
- fixed tests ([email protected])
- remove whitespaces ([email protected])
- fixed integration tests ([email protected])
- remove console.log(s) ([email protected])
- get info about products which are listening on discovered ports
- user can choose port manually ([email protected])
- use fast port scan to collect information about used ports
- fast port scan ([email protected])
- syntax styling ([email protected])
- REDME.md modifications ([email protected])
- Cockpit: Show version info ([email protected])
- Cockpit: configuration of tool path ([email protected])
- vagrant stop command is halt ([email protected])
- Fix ansible roles path broken in #109 ([email protected])
- NOJIRA: ammending README as per PR review ([email protected])
- Remove trailing semi-colon from ssh-agent settings ([email protected])
- Leaving the documented tool path in cockpit and fix it during rpm creation
for RPM installations ([email protected])
- Start ssh-agent in integration tests when necessary ([email protected])
- NOJIRA: ammending README as per PR review ([email protected])
- Fix tool path in cockpit ([email protected])
- Fixed spec file changelog and removed duplicate entries due to tito misusage
- Actually test ssh-agent based authentication ([email protected])
- Set return code for destroy-containers command ([email protected])
- Consolidate LeApp id management in integration tests ([email protected])
- Update test docs for new feature & steps ([email protected])
- Allow use of default SSH credentials in CLI ([email protected])
- TRELLO#70: ammend docs in README ([email protected])
- TRELLO#70: incorporate changes from #105 ([email protected])
- TRELLO#70: ading clean start action, merging all scripts into one
- Using a spec file for specifying required dependencies to run the demo
* Mon May 08 2017 Vinzenz Feenstra <[email protected]> 0.0.1-5
- Touch non existing file workaround not necessary anymore files have been
already added ([email protected])
* Fri May 05 2017 Vinzenz Feenstra <[email protected]> 0.0.1-4
- We also need virsh ([email protected])
- The license choosen for LeApp is now LGPLv2+ ([email protected])
- Missing nmap dependency added ([email protected])
- Drop obsolete __vagrant_ssh_checkoutput ([email protected])
- Drop unnecessary build requires ([email protected])
* Fri May 05 2017 Vinzenz Feenstra <[email protected]> 0.0.1-3
- Fixed el 7 builds ([email protected])
* Fri May 05 2017 Vinzenz Feenstra <[email protected]> 0.0.1-2
- new package built with tito
* Thu May 04 2017 Vinzenz Feenstra <[email protected]> - 0.0.1-1
- Initial