Unnamed: 0 int64 1 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 7 112 | repo_url stringlengths 36 141 | action stringclasses 3 values | title stringlengths 3 438 | labels stringlengths 4 308 | body stringlengths 7 254k | index stringclasses 7 values | text_combine stringlengths 96 254k | label stringclasses 2 values | text stringlengths 96 246k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4,656 | 24,097,188,867 | IssuesEvent | 2022-09-19 19:53:41 | aws/aws-sam-cli | https://api.github.com/repos/aws/aws-sam-cli | closed | Package command should fail without Transform: AWS::Serverless-2016-10-31 | type/ux area/package type/feature area/deploy maintainer/need-followup | ### Description
Running aws cloudformation package command should fail if `Transform: AWS::Serverless-2016-10-31` directive is not present in the template or, even better, it should add the directive automatically. Running deploy command without the transform present will fail with not that obvious error about `Unrecognized resource types`. This is hard to debug and not user friendly.
### Steps to reproduce
Run `aws cloudformation package` or `sam package` command on a template without the Transform directive.
### Expected result
Packaging command should fail with a friendly error message. | True | Package command should fail without Transform: AWS::Serverless-2016-10-31 - ### Description
Running aws cloudformation package command should fail if `Transform: AWS::Serverless-2016-10-31` directive is not present in the template or, even better, it should add the directive automatically. Running deploy command without the transform present will fail with not that obvious error about `Unrecognized resource types`. This is hard to debug and not user friendly.
### Steps to reproduce
Run `aws cloudformation package` or `sam package` command on a template without the Transform directive.
### Expected result
Packaging command should fail with a friendly error message. | main | package command should fail without transform aws serverless description running aws cloudformation package command should fail if transform aws serverless directive is not present in the template or even better it should add the directive automatically running deploy command without the transform present will fail with not that obvious error about unrecognized resource types this is hard to debug and not user friendly steps to reproduce run aws cloudformation package or sam package command on a template without the transform directive expected result packaging command should fail with a friendly error message | 1 |
1,771 | 6,575,050,071 | IssuesEvent | 2017-09-11 14:53:08 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | docker_container module doesn't accept value "all" for parameter "ports" | affects_2.1 bug_report cloud docker waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
docker_container
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.2.0
config file =
configured module search path = Default w/o overrides
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
Ubuntu 14.04 x64
##### SUMMARY
<!--- Explain the problem briefly -->
Docker_container module doesn't accept value `all` for parameter `ports`
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
---
- hosts: localhost
tasks:
- name: run nginx docker container
become: yes
docker_container:
name: nginx
image: nginx
ports: all
ansible-playbook main.yaml
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
container is created and running, all exposed ports are mapped to random on the host. That's working in ansible 2.1.0.0 but then broken in 2.1.1.0 and 2.1.2.0
```
PLAY [localhost] ***************************************************************
TASK [setup] *******************************************************************
ok: [localhost]
TASK [run nginx docker container] **********************************************
changed: [localhost]
PLAY RECAP *********************************************************************
localhost : ok=2 changed=1 unreachable=0 failed=0
#docker ps
7262335b0297 nginx "nginx -g 'daemon off" 5 minutes ago Up 4 minutes 0.0.0.0:32769->80/tcp, 0.0.0.0:32768->443/tcp nginx
```
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
PLAY [localhost] ***************************************************************
TASK [setup] *******************************************************************
ok: [localhost]
TASK [run nginx docker container] **********************************************
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ValueError: invalid literal for int() with base 10: 'a'
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 1928, in <module>\n main()\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 1921, in main\n cm = ContainerManager(client)\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 1575, in __init__\n self.parameters = TaskParameters(client)\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 731, in __init__\n self.ports = self._parse_exposed_ports(self.published_ports)\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 990, in _parse_exposed_ports\n port = int(publish_port)\nValueError: invalid literal for int() with base 10: 'a'\n", "module_stdout": "", "msg": "MODULE FAILURE"}
NO MORE HOSTS LEFT *************************************************************
to retry, use: --limit @/home/vagrant/test/main.retry
PLAY RECAP *********************************************************************
localhost : ok=1 changed=0 unreachable=0 failed=1
```
| True | docker_container module doesn't accept value "all" for parameter "ports" - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
docker_container
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.2.0
config file =
configured module search path = Default w/o overrides
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
Ubuntu 14.04 x64
##### SUMMARY
<!--- Explain the problem briefly -->
Docker_container module doesn't accept value `all` for parameter `ports`
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
---
- hosts: localhost
tasks:
- name: run nginx docker container
become: yes
docker_container:
name: nginx
image: nginx
ports: all
ansible-playbook main.yaml
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
container is created and running, all exposed ports are mapped to random on the host. That's working in ansible 2.1.0.0 but then broken in 2.1.1.0 and 2.1.2.0
```
PLAY [localhost] ***************************************************************
TASK [setup] *******************************************************************
ok: [localhost]
TASK [run nginx docker container] **********************************************
changed: [localhost]
PLAY RECAP *********************************************************************
localhost : ok=2 changed=1 unreachable=0 failed=0
#docker ps
7262335b0297 nginx "nginx -g 'daemon off" 5 minutes ago Up 4 minutes 0.0.0.0:32769->80/tcp, 0.0.0.0:32768->443/tcp nginx
```
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
PLAY [localhost] ***************************************************************
TASK [setup] *******************************************************************
ok: [localhost]
TASK [run nginx docker container] **********************************************
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ValueError: invalid literal for int() with base 10: 'a'
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 1928, in <module>\n main()\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 1921, in main\n cm = ContainerManager(client)\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 1575, in __init__\n self.parameters = TaskParameters(client)\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 731, in __init__\n self.ports = self._parse_exposed_ports(self.published_ports)\n File \"/tmp/ansible_r3iyN9/ansible_module_docker_container.py\", line 990, in _parse_exposed_ports\n port = int(publish_port)\nValueError: invalid literal for int() with base 10: 'a'\n", "module_stdout": "", "msg": "MODULE FAILURE"}
NO MORE HOSTS LEFT *************************************************************
to retry, use: --limit @/home/vagrant/test/main.retry
PLAY RECAP *********************************************************************
localhost : ok=1 changed=0 unreachable=0 failed=1
```
| main | docker container module doesn t accept value all for parameter ports issue type bug report component name docker container ansible version ansible config file configured module search path default w o overrides configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific ubuntu summary docker container module doesn t accept value all for parameter ports steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used hosts localhost tasks name run nginx docker container become yes docker container name nginx image nginx ports all ansible playbook main yaml expected results container is created and running all exposed ports are mapped to random on the host that s working in ansible but then broken in and play task ok task changed play recap localhost ok changed unreachable failed docker ps nginx nginx g daemon off minutes ago up minutes tcp tcp nginx actual results play task ok task an exception occurred during task execution to see the full traceback use vvv the error was valueerror invalid literal for int with base a fatal failed changed false failed true module stderr traceback most recent call last n file tmp ansible ansible module docker container py line in n main n file tmp ansible ansible module docker container py line in main n cm containermanager client n file tmp ansible ansible module docker container py line in init n self parameters taskparameters client n file tmp ansible ansible module docker container py line in init n self ports self parse exposed ports self published ports n file tmp ansible ansible module docker container py line in parse exposed ports n port int publish port nvalueerror invalid literal for int with base a n module stdout msg module failure no more hosts left to retry use limit home vagrant test main retry play recap localhost ok changed unreachable failed | 1 |
560 | 4,015,981,905 | IssuesEvent | 2016-05-15 09:20:19 | KazDragon/telnetpp | https://api.github.com/repos/KazDragon/telnetpp | opened | Unify option implementations | Improvement Maintainability | client_option and server_option have the same behaviour, differing only in which bytes they use for communicating the aspects of the option (i.e. WILL, WONT, DO, DONT).
This should be made generic, and interfaces unified. | True | Unify option implementations - client_option and server_option have the same behaviour, differing only in which bytes they use for communicating the aspects of the option (i.e. WILL, WONT, DO, DONT).
This should be made generic, and interfaces unified. | main | unify option implementations client option and server option have the same behaviour differing only in which bytes they use for communicating the aspects of the option i e will wont do dont this should be made generic and interfaces unified | 1 |
106,237 | 23,197,647,023 | IssuesEvent | 2022-08-01 18:01:37 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | Dynamic PGO work planned for .NET 7 | area-CodeGen-coreclr User Story | **This issue captures the planned work for .NET 7. This list is expected to change throughout the release cycle according to ongoing planning and discussions, with possible additions and subtractions to the scope.**
## Summary
Dynamic PGO is an opt-in feature introduced in .NET 6. In .NET 7 we will work on making Dynamic PGO easier to use, applicable to more scenarios, and offering more performance improvements.
As part of this work, we will also enable On-Stack Replacement (OSR) and change the default for QuickJitForLoops for x64 and arm64. This will improve Dynamic PGO by including methods with loops in the Tier0 set. It will also notably improve startup time for apps that have jit-intensive startup interval.
## Planned for .NET 7
- [x] (EgorBo WIP) Add support for enabling Dynamic PGO in SDK projects and runtime configs (#70410, #71438, https://github.com/dotnet/sdk/pull/26350)
- [x] (Aman WIP) Hot/Cold splitting (#69763, #69922, #70708, #71236, #71273) -- and more over in dotnet/runtimelabs; eg https://github.com/dotnet/runtimelab/pull/1900, https://github.com/dotnet/runtimelab/pull/1915, ...
- [x] Add GDV-like capability for delegate calls (https://github.com/dotnet/runtime/pull/68703)
- [x] Clone loops based on presence of loop-invariant GDV tests in the loop body (#65206) https://github.com/dotnet/runtime/pull/70377
- [x] Above depends on: https://github.com/dotnet/runtime/issues/70100 and https://github.com/dotnet/runtime/issues/61040
- [x] Fix OSR x64 epilog unwind (see [note](https://github.com/dotnet/runtime/pull/64116#issuecomment-1022795565)) https://github.com/dotnet/runtime/pull/65609
- [x] Enable OSR by default for x64/arm64 https://github.com/dotnet/runtime/pull/65675
- [x] Address microbenchmark perf issues seen with QJFL=1 and OSR (see [note](https://github.com/dotnet/runtime/pull/61934#issuecomment-990031427)) https://github.com/dotnet/BenchmarkDotNet/pull/1949 and https://github.com/dotnet/BenchmarkDotNet/pull/1935
- [x] #52370
- [x] #55325 (more generally: optimize type tests via PGO)
## Under Consideration
- (EgorBo WIP for Native AOT) Add no-fallback GDV when runtime can provide full set of possible classes
## Cut from .NET 7 Plans
- (EgorBo in PR) #70941
- #62457 (too many missing pieces)
- Fix issues in profile maintenance: #50419, #50030, #48476
- #48925
- #46885
- #46883
- Reduce performance overhead of Tier0 instrumentation
- Add GDV-like capability for indirect calls (#44610)
- #46887 (needs SSA update)
| 1.0 | Dynamic PGO work planned for .NET 7 - **This issue captures the planned work for .NET 7. This list is expected to change throughout the release cycle according to ongoing planning and discussions, with possible additions and subtractions to the scope.**
## Summary
Dynamic PGO is an opt-in feature introduced in .NET 6. In .NET 7 we will work on making Dynamic PGO easier to use, applicable to more scenarios, and offering more performance improvements.
As part of this work, we will also enable On-Stack Replacement (OSR) and change the default for QuickJitForLoops for x64 and arm64. This will improve Dynamic PGO by including methods with loops in the Tier0 set. It will also notably improve startup time for apps that have jit-intensive startup interval.
## Planned for .NET 7
- [x] (EgorBo WIP) Add support for enabling Dynamic PGO in SDK projects and runtime configs (#70410, #71438, https://github.com/dotnet/sdk/pull/26350)
- [x] (Aman WIP) Hot/Cold splitting (#69763, #69922, #70708, #71236, #71273) -- and more over in dotnet/runtimelabs; eg https://github.com/dotnet/runtimelab/pull/1900, https://github.com/dotnet/runtimelab/pull/1915, ...
- [x] Add GDV-like capability for delegate calls (https://github.com/dotnet/runtime/pull/68703)
- [x] Clone loops based on presence of loop-invariant GDV tests in the loop body (#65206) https://github.com/dotnet/runtime/pull/70377
- [x] Above depends on: https://github.com/dotnet/runtime/issues/70100 and https://github.com/dotnet/runtime/issues/61040
- [x] Fix OSR x64 epilog unwind (see [note](https://github.com/dotnet/runtime/pull/64116#issuecomment-1022795565)) https://github.com/dotnet/runtime/pull/65609
- [x] Enable OSR by default for x64/arm64 https://github.com/dotnet/runtime/pull/65675
- [x] Address microbenchmark perf issues seen with QJFL=1 and OSR (see [note](https://github.com/dotnet/runtime/pull/61934#issuecomment-990031427)) https://github.com/dotnet/BenchmarkDotNet/pull/1949 and https://github.com/dotnet/BenchmarkDotNet/pull/1935
- [x] #52370
- [x] #55325 (more generally: optimize type tests via PGO)
## Under Consideration
- (EgorBo WIP for Native AOT) Add no-fallback GDV when runtime can provide full set of possible classes
## Cut from .NET 7 Plans
- (EgorBo in PR) #70941
- #62457 (too many missing pieces)
- Fix issues in profile maintenance: #50419, #50030, #48476
- #48925
- #46885
- #46883
- Reduce performance overhead of Tier0 instrumentation
- Add GDV-like capability for indirect calls (#44610)
- #46887 (needs SSA update)
| non_main | dynamic pgo work planned for net this issue captures the planned work for net this list is expected to change throughout the release cycle according to ongoing planning and discussions with possible additions and subtractions to the scope summary dynamic pgo is an opt in feature introduced in net in net we will work on making dynamic pgo easier to use applicable to more scenarios and offering more performance improvements as part of this work we will also enable on stack replacement osr and change the default for quickjitforloops for and this will improve dynamic pgo by including methods with loops in the set it will also notably improve startup time for apps that have jit intensive startup interval planned for net egorbo wip add support for enabling dynamic pgo in sdk projects and runtime configs aman wip hot cold splitting and more over in dotnet runtimelabs eg add gdv like capability for delegate calls clone loops based on presence of loop invariant gdv tests in the loop body above depends on and fix osr epilog unwind see enable osr by default for address microbenchmark perf issues seen with qjfl and osr see and more generally optimize type tests via pgo under consideration egorbo wip for native aot add no fallback gdv when runtime can provide full set of possible classes cut from net plans egorbo in pr too many missing pieces fix issues in profile maintenance reduce performance overhead of instrumentation add gdv like capability for indirect calls needs ssa update | 0 |
3,514 | 13,747,462,313 | IssuesEvent | 2020-10-06 07:39:24 | hashicorp/terraform | https://api.github.com/repos/hashicorp/terraform | closed | Selecting a non existing workspace returns exit 0 with pg backend | backend/pg bug cli needs-maintainer v0.12 | ### Terraform Version
```
$ terraform version
Terraform v0.12.24
```
(Tests show that this is broken since 0.12.8)
### Terraform Configuration Files
```hcl
terraform {
backend "pg" {}
}
```
### Debug Output
(As the debug is only about 18 lines, I will skip the gist)
Terraform 0.12.7:
```
syseleven@sys11services01:~/test$ TF_LOG=trace ../terraform-0.12.7 workspace select default
2020/03/23 11:46:08 [INFO] Terraform version: 0.12.7
2020/03/23 11:46:08 [INFO] Go runtime version: go1.12.9
2020/03/23 11:46:08 [INFO] CLI args: []string{"/home/syseleven/terraform-0.12.7", "workspace", "select", "default"}
2020/03/23 11:46:08 [DEBUG] Attempting to open CLI config file: /home/syseleven/.terraformrc
2020/03/23 11:46:08 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/23 11:46:08 [INFO] CLI command args: []string{"workspace", "select", "default"}
2020/03/23 11:46:08 [TRACE] Meta.Backend: built configuration for "pg" backend with hash value 2343951456
2020/03/23 11:46:08 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:46:08 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:46:08 [TRACE] Meta.Backend: working directory was previously initialized for "pg" backend
2020/03/23 11:46:08 [TRACE] backendConfigNeedsMigration: failed to decode cached config; migration codepath must handle problem: unsupported attribute "skip_schema_creation"
2020/03/23 11:46:08 [TRACE] Meta.Backend: backend configuration has changed (from type "pg" to type "pg")
Backend reinitialization required. Please run "terraform init".
Reason: Backend configuration changed for "pg"
The "backend" is the interface that Terraform uses to store state,
perform operations, etc. If this message is showing up, it means that the
Terraform configuration you're using is using a custom configuration for
the Terraform backend.
Changes to backend configurations require reinitialization. This allows
Terraform to setup the new configuration, copy existing state, etc. This is
only done during "terraform init". Please run that command now then try again.
If the change reason above is incorrect, please verify your configuration
hasn't changed and try again. At this point, no changes to your existing
configuration or state have been made.
Error: Initialization required. Please see the error message above.
```
Terraform 0.12.24:
```
syseleven@sys11services01:~/test$ TF_LOG=trace ../terraform-0.12.24 workspace select default
2020/03/23 11:47:31 [INFO] Terraform version: 0.12.24
2020/03/23 11:47:31 [INFO] Go runtime version: go1.12.13
2020/03/23 11:47:31 [INFO] CLI args: []string{"/home/syseleven/terraform-0.12.24", "workspace", "select", "default"}
2020/03/23 11:47:31 [DEBUG] Attempting to open CLI config file: /home/syseleven/.terraformrc
2020/03/23 11:47:31 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/23 11:47:31 [INFO] CLI command args: []string{"workspace", "select", "default"}
2020/03/23 11:47:31 [TRACE] Meta.Backend: built configuration for "pg" backend with hash value 241288904
2020/03/23 11:47:31 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:47:31 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:47:31 [TRACE] Meta.Backend: working directory was previously initialized for "pg" backend
2020/03/23 11:47:31 [TRACE] Meta.Backend: using already-initialized, unchanged "pg" backend configuration
2020/03/23 11:47:31 [TRACE] Meta.Backend: instantiated backend of type *pg.Backend
2020/03/23 11:47:31 [DEBUG] checking for provider in "."
2020/03/23 11:47:31 [DEBUG] checking for provider in "/home/syseleven"
2020/03/23 11:47:31 [DEBUG] checking for provisioner in "."
2020/03/23 11:47:31 [DEBUG] checking for provisioner in "/home/syseleven"
2020/03/23 11:47:31 [INFO] Failed to read plugin lock file .terraform/plugins/linux_amd64/lock.json: open .terraform/plugins/linux_amd64/lock.json: no such file or directory
2020/03/23 11:47:31 [TRACE] Meta.Backend: backend *pg.Backend does not support operations, so wrapping it in a local backend
```
### Crash Output
No crash happens.
### Expected Behavior
The command `terraform workspace select $workspace` should return an exit code `1` if the workspace doesn't exist. This was true before Terraform 0.12.7 and allowed to automatically create a workspace in CI as described in https://github.com/hashicorp/terraform/issues/16191#issuecomment-574661663
### Actual Behavior
Since Terraform 0.12.8 the command `terraform workspace select $workspace` returns an exit code `0` for non existing workspaces.
### Steps to Reproduce
1. `echo -e "terraform {\n backend \"pg\" {}\n}" > main.tf`
1. `terraform init -backend-config="conn_str=postgres://$username:$password@$host/$db" -input=false`
1. `terraform workspace select $workspace` # Run this with 0.12.7 and 0.12.8 (or above) to see the difference
### Additional Context
### References
<!--
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
- #6017
-->
| True | Selecting a non existing workspace returns exit 0 with pg backend - ### Terraform Version
```
$ terraform version
Terraform v0.12.24
```
(Tests show that this is broken since 0.12.8)
### Terraform Configuration Files
```hcl
terraform {
backend "pg" {}
}
```
### Debug Output
(As the debug is only about 18 lines, I will skip the gist)
Terraform 0.12.7:
```
syseleven@sys11services01:~/test$ TF_LOG=trace ../terraform-0.12.7 workspace select default
2020/03/23 11:46:08 [INFO] Terraform version: 0.12.7
2020/03/23 11:46:08 [INFO] Go runtime version: go1.12.9
2020/03/23 11:46:08 [INFO] CLI args: []string{"/home/syseleven/terraform-0.12.7", "workspace", "select", "default"}
2020/03/23 11:46:08 [DEBUG] Attempting to open CLI config file: /home/syseleven/.terraformrc
2020/03/23 11:46:08 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/23 11:46:08 [INFO] CLI command args: []string{"workspace", "select", "default"}
2020/03/23 11:46:08 [TRACE] Meta.Backend: built configuration for "pg" backend with hash value 2343951456
2020/03/23 11:46:08 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:46:08 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:46:08 [TRACE] Meta.Backend: working directory was previously initialized for "pg" backend
2020/03/23 11:46:08 [TRACE] backendConfigNeedsMigration: failed to decode cached config; migration codepath must handle problem: unsupported attribute "skip_schema_creation"
2020/03/23 11:46:08 [TRACE] Meta.Backend: backend configuration has changed (from type "pg" to type "pg")
Backend reinitialization required. Please run "terraform init".
Reason: Backend configuration changed for "pg"
The "backend" is the interface that Terraform uses to store state,
perform operations, etc. If this message is showing up, it means that the
Terraform configuration you're using is using a custom configuration for
the Terraform backend.
Changes to backend configurations require reinitialization. This allows
Terraform to setup the new configuration, copy existing state, etc. This is
only done during "terraform init". Please run that command now then try again.
If the change reason above is incorrect, please verify your configuration
hasn't changed and try again. At this point, no changes to your existing
configuration or state have been made.
Error: Initialization required. Please see the error message above.
```
Terraform 0.12.24:
```
syseleven@sys11services01:~/test$ TF_LOG=trace ../terraform-0.12.24 workspace select default
2020/03/23 11:47:31 [INFO] Terraform version: 0.12.24
2020/03/23 11:47:31 [INFO] Go runtime version: go1.12.13
2020/03/23 11:47:31 [INFO] CLI args: []string{"/home/syseleven/terraform-0.12.24", "workspace", "select", "default"}
2020/03/23 11:47:31 [DEBUG] Attempting to open CLI config file: /home/syseleven/.terraformrc
2020/03/23 11:47:31 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/23 11:47:31 [INFO] CLI command args: []string{"workspace", "select", "default"}
2020/03/23 11:47:31 [TRACE] Meta.Backend: built configuration for "pg" backend with hash value 241288904
2020/03/23 11:47:31 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:47:31 [TRACE] Preserving existing state lineage "7cf29f36-3778-7f99-df7a-9147c13e1139"
2020/03/23 11:47:31 [TRACE] Meta.Backend: working directory was previously initialized for "pg" backend
2020/03/23 11:47:31 [TRACE] Meta.Backend: using already-initialized, unchanged "pg" backend configuration
2020/03/23 11:47:31 [TRACE] Meta.Backend: instantiated backend of type *pg.Backend
2020/03/23 11:47:31 [DEBUG] checking for provider in "."
2020/03/23 11:47:31 [DEBUG] checking for provider in "/home/syseleven"
2020/03/23 11:47:31 [DEBUG] checking for provisioner in "."
2020/03/23 11:47:31 [DEBUG] checking for provisioner in "/home/syseleven"
2020/03/23 11:47:31 [INFO] Failed to read plugin lock file .terraform/plugins/linux_amd64/lock.json: open .terraform/plugins/linux_amd64/lock.json: no such file or directory
2020/03/23 11:47:31 [TRACE] Meta.Backend: backend *pg.Backend does not support operations, so wrapping it in a local backend
```
### Crash Output
No crash happens.
### Expected Behavior
The command `terraform workspace select $workspace` should return an exit code `1` if the workspace doesn't exist. This was true before Terraform 0.12.7 and allowed to automatically create a workspace in CI as described in https://github.com/hashicorp/terraform/issues/16191#issuecomment-574661663
### Actual Behavior
Since Terraform 0.12.8 the command `terraform workspace select $workspace` returns an exit code `0` for non existing workspaces.
### Steps to Reproduce
1. `echo -e "terraform {\n backend \"pg\" {}\n}" > main.tf`
1. `terraform init -backend-config="conn_str=postgres://$username:$password@$host/$db" -input=false`
1. `terraform workspace select $workspace` # Run this with 0.12.7 and 0.12.8 (or above) to see the difference
### Additional Context
### References
<!--
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
- #6017
-->
| main | selecting a non existing workspace returns exit with pg backend terraform version terraform version terraform tests show that this is broken since terraform configuration files hcl terraform backend pg debug output as the debug is only about lines i will skip the gist terraform syseleven test tf log trace terraform workspace select default terraform version go runtime version cli args string home syseleven terraform workspace select default attempting to open cli config file home syseleven terraformrc file doesn t exist but doesn t need to ignoring cli command args string workspace select default meta backend built configuration for pg backend with hash value preserving existing state lineage preserving existing state lineage meta backend working directory was previously initialized for pg backend backendconfigneedsmigration failed to decode cached config migration codepath must handle problem unsupported attribute skip schema creation meta backend backend configuration has changed from type pg to type pg backend reinitialization required please run terraform init reason backend configuration changed for pg the backend is the interface that terraform uses to store state perform operations etc if this message is showing up it means that the terraform configuration you re using is using a custom configuration for the terraform backend changes to backend configurations require reinitialization this allows terraform to setup the new configuration copy existing state etc this is only done during terraform init please run that command now then try again if the change reason above is incorrect please verify your configuration hasn t changed and try again at this point no changes to your existing configuration or state have been made error initialization required please see the error message above terraform syseleven test tf log trace terraform workspace select default terraform version go runtime version cli args string home syseleven terraform workspace select default attempting to open cli config file home syseleven terraformrc file doesn t exist but doesn t need to ignoring cli command args string workspace select default meta backend built configuration for pg backend with hash value preserving existing state lineage preserving existing state lineage meta backend working directory was previously initialized for pg backend meta backend using already initialized unchanged pg backend configuration meta backend instantiated backend of type pg backend checking for provider in checking for provider in home syseleven checking for provisioner in checking for provisioner in home syseleven failed to read plugin lock file terraform plugins linux lock json open terraform plugins linux lock json no such file or directory meta backend backend pg backend does not support operations so wrapping it in a local backend crash output no crash happens expected behavior the command terraform workspace select workspace should return an exit code if the workspace doesn t exist this was true before terraform and allowed to automatically create a workspace in ci as described in actual behavior since terraform the command terraform workspace select workspace returns an exit code for non existing workspaces steps to reproduce echo e terraform n backend pg n main tf terraform init backend config conn str postgres username password host db input false terraform workspace select workspace run this with and or above to see the difference additional context references are there any other github issues open or closed or pull requests that should be linked here for example | 1 |
168,333 | 20,751,067,376 | IssuesEvent | 2022-03-15 07:35:18 | BCDevOps/developer-experience | https://api.github.com/repos/BCDevOps/developer-experience | opened | Fix token related vulnerability referenced in chat - Platform Registry | security app-development devhub | **Describe the issue**
Issue with token described in private RocketChat
**Additional context**
High priority
**Definition of done**
Token issue resolved
| True | Fix token related vulnerability referenced in chat - Platform Registry - **Describe the issue**
Issue with token described in private RocketChat
**Additional context**
High priority
**Definition of done**
Token issue resolved
| non_main | fix token related vulnerability referenced in chat platform registry describe the issue issue with token described in private rocketchat additional context high priority definition of done token issue resolved | 0 |
3,481 | 13,437,832,097 | IssuesEvent | 2020-09-07 16:39:26 | tgstation/tgstation-server | https://api.github.com/repos/tgstation/tgstation-server | opened | Uniquely tag all queries | Backlog Maintainability Issue | Just learned that `.TagWith(string)` is an EF Core function. We should apply it to all queries so they get visibility in the logs and DB. | True | Uniquely tag all queries - Just learned that `.TagWith(string)` is an EF Core function. We should apply it to all queries so they get visibility in the logs and DB. | main | uniquely tag all queries just learned that tagwith string is an ef core function we should apply it to all queries so they get visibility in the logs and db | 1 |
4,475 | 23,344,482,186 | IssuesEvent | 2022-08-09 16:36:49 | chocolatey-community/chocolatey-package-requests | https://api.github.com/repos/chocolatey-community/chocolatey-package-requests | closed | RFP - open-video-downloader | Status: Available For Maintainer(s) | ## Checklist
- [x] The package I am requesting does not already exist on https://chocolatey.org/packages;
- [x] There is no open issue for this package;
- [x] The issue title starts with 'RFP - ';
- [x] The download URL is public and not locked behind a paywall / login;
## Package Details
Software project URL : https://github.com/jely2002/youtube-dl-gui
Direct download URL for the software / installer : https://github.com/jely2002/youtube-dl-gui/releases/download/v2.4.0/Open-Video-Downloader-Setup-2.4.0.exe
Software summary / short description: A cross-platform GUI for youtube-dl made in Electron and node.js
| True | RFP - open-video-downloader - ## Checklist
- [x] The package I am requesting does not already exist on https://chocolatey.org/packages;
- [x] There is no open issue for this package;
- [x] The issue title starts with 'RFP - ';
- [x] The download URL is public and not locked behind a paywall / login;
## Package Details
Software project URL : https://github.com/jely2002/youtube-dl-gui
Direct download URL for the software / installer : https://github.com/jely2002/youtube-dl-gui/releases/download/v2.4.0/Open-Video-Downloader-Setup-2.4.0.exe
Software summary / short description: A cross-platform GUI for youtube-dl made in Electron and node.js
| main | rfp open video downloader checklist the package i am requesting does not already exist on there is no open issue for this package the issue title starts with rfp the download url is public and not locked behind a paywall login package details software project url direct download url for the software installer software summary short description a cross platform gui for youtube dl made in electron and node js | 1 |
4,345 | 21,921,494,383 | IssuesEvent | 2022-05-22 16:38:06 | Ekryd/sortpom | https://api.github.com/repos/Ekryd/sortpom | closed | Update DOM parser | Maintainability | JDom is old and the new version of Jdom does not work together with existing code.
Trying Dom4J | True | Update DOM parser - JDom is old and the new version of Jdom does not work together with existing code.
Trying Dom4J | main | update dom parser jdom is old and the new version of jdom does not work together with existing code trying | 1 |
5,303 | 26,781,315,317 | IssuesEvent | 2023-01-31 21:27:19 | ocsf/ocsf-schema | https://api.github.com/repos/ocsf/ocsf-schema | closed | Clarify the usage of siblings. | enhancement grammar_consistency maintainers | We should be consistent on what to expect in the sibling string field (Normalized value OR the original value).
[More context](https://opencybersecu-lz97379.slack.com/archives/C03KF0TELR0/p1664555060055449)
All sibling fields - _id = normalized int enum , string = original value.
With the exception of OCSF siblings, activity, category, class, type.
Action Items -
1. A section explaining siblings in the readme
2. Update description to clarify the usage for all sibling fields | True | Clarify the usage of siblings. - We should be consistent on what to expect in the sibling string field (Normalized value OR the original value).
[More context](https://opencybersecu-lz97379.slack.com/archives/C03KF0TELR0/p1664555060055449)
All sibling fields - _id = normalized int enum , string = original value.
With the exception of OCSF siblings, activity, category, class, type.
Action Items -
1. A section explaining siblings in the readme
2. Update description to clarify the usage for all sibling fields | main | clarify the usage of siblings we should be consistent on what to expect in the sibling string field normalized value or the original value all sibling fields id normalized int enum string original value with the exception of ocsf siblings activity category class type action items a section explaining siblings in the readme update description to clarify the usage for all sibling fields | 1 |
3,734 | 15,612,951,144 | IssuesEvent | 2021-03-19 15:53:08 | diofant/diofant | https://api.github.com/repos/diofant/diofant | closed | Make .diff() call convention for high derivatives - consistent across the codebase | core maintainability polys | Right now, `Poly.diff()` and `Expr.diff()` - differ (e.g. see sympy/sympy#19590). They shouldn't. Perhaps, Poly's syntax
`Poly(x**2).diff((x, 2))` for higher derivatives must be chosen, as it seems simple.
Keep in mind also #1066.
| True | Make .diff() call convention for high derivatives - consistent across the codebase - Right now, `Poly.diff()` and `Expr.diff()` - differ (e.g. see sympy/sympy#19590). They shouldn't. Perhaps, Poly's syntax
`Poly(x**2).diff((x, 2))` for higher derivatives must be chosen, as it seems simple.
Keep in mind also #1066.
| main | make diff call convention for high derivatives consistent across the codebase right now poly diff and expr diff differ e g see sympy sympy they shouldn t perhaps poly s syntax poly x diff x for higher derivatives must be chosen as it seems simple keep in mind also | 1 |
569,833 | 17,016,276,721 | IssuesEvent | 2021-07-02 12:31:23 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | opened | Render incline for Cyclists | Component: opencyclemap Priority: minor Type: enhancement | **[Submitted to the original trac issue database at 12.25pm, Wednesday, 10th April 2013]**
The incline of a way ist a important information for a cyclist, but it is not rendered in the opencyclemap. Some commercial german cyclemaps render inclines with one, two or three arrows in there maps (three for very steep angles). Please render incline in the cyclemap (for example with a small arrow on the way). | 1.0 | Render incline for Cyclists - **[Submitted to the original trac issue database at 12.25pm, Wednesday, 10th April 2013]**
The incline of a way ist a important information for a cyclist, but it is not rendered in the opencyclemap. Some commercial german cyclemaps render inclines with one, two or three arrows in there maps (three for very steep angles). Please render incline in the cyclemap (for example with a small arrow on the way). | non_main | render incline for cyclists the incline of a way ist a important information for a cyclist but it is not rendered in the opencyclemap some commercial german cyclemaps render inclines with one two or three arrows in there maps three for very steep angles please render incline in the cyclemap for example with a small arrow on the way | 0 |
5,655 | 29,169,883,352 | IssuesEvent | 2023-05-19 00:03:37 | project-chip/connectedhomeip | https://api.github.com/repos/project-chip/connectedhomeip | closed | Device types and versions don't generate macros/constants from matter-devices.xml | zap V1.X stale Interaction Model Work maintainability | #### Problem
matter-devices.xml contains definitions of device types, along with a `deviceId` for each type. This value is used as an argument to `emberAfSetDynamicEndpoint()`, however there is no way to programmatically access this value, and it must be hardcoded instead. If the Id changes later, or if the version is upgraded, the caller of `emberAfSetDynamicEndpoint()` must be sure to change the hardcoded value(s).
https://github.com/project-chip/connectedhomeip/blob/527467617c7a59ba3a25dde6970d13fb7a10ad2c/src/app/util/attribute-storage.h#L243
#### Proposed Solution
Generate a macro or constant for each device type Id and version from matter-devices.xml. | True | Device types and versions don't generate macros/constants from matter-devices.xml - #### Problem
matter-devices.xml contains definitions of device types, along with a `deviceId` for each type. This value is used as an argument to `emberAfSetDynamicEndpoint()`, however there is no way to programmatically access this value, and it must be hardcoded instead. If the Id changes later, or if the version is upgraded, the caller of `emberAfSetDynamicEndpoint()` must be sure to change the hardcoded value(s).
https://github.com/project-chip/connectedhomeip/blob/527467617c7a59ba3a25dde6970d13fb7a10ad2c/src/app/util/attribute-storage.h#L243
#### Proposed Solution
Generate a macro or constant for each device type Id and version from matter-devices.xml. | main | device types and versions don t generate macros constants from matter devices xml problem matter devices xml contains definitions of device types along with a deviceid for each type this value is used as an argument to emberafsetdynamicendpoint however there is no way to programmatically access this value and it must be hardcoded instead if the id changes later or if the version is upgraded the caller of emberafsetdynamicendpoint must be sure to change the hardcoded value s proposed solution generate a macro or constant for each device type id and version from matter devices xml | 1 |
2,859 | 10,268,768,974 | IssuesEvent | 2019-08-23 07:21:36 | arcticicestudio/arctic | https://api.github.com/repos/arcticicestudio/arctic | closed | yarn/npm configuration files | context-workflow scope-dx scope-maintainability scope-stability type-task | <p align="center"><img src="https://upload.wikimedia.org/wikipedia/commons/d/db/Npm-logo.svg?sanitize=true" width="20%" /></p>
Add the [`.yarnrc`][y-d-rc] and [`.npmrc`][npm-d-rc] configuration files to enforce project-wide standards for all core team members and contributors. This includes the usage of the [Yarn][y-d-c] and [npm][npm-d-ex] `exact` version resolution as well as disabling the creation of the npm [`package-lock.json`][npm-d-lock] file in order to prevent conflicts with the [`yarn.lock`][y-d-lock] file.
[npm-d-ex]: https://docs.npmjs.com/misc/config#save-exact
[npm-d-lock]: https://docs.npmjs.com/files/package-lock.json
[npm-d-rc]: https://docs.npmjs.com/files/npmrc
[y-d-c]: https://yarnpkg.com/lang/en/docs/cli/config
[y-d-lock]: https://yarnpkg.com/lang/en/docs/yarn-lock
[y-d-rc]: https://yarnpkg.com/lang/en/docs/yarnrc | True | yarn/npm configuration files - <p align="center"><img src="https://upload.wikimedia.org/wikipedia/commons/d/db/Npm-logo.svg?sanitize=true" width="20%" /></p>
Add the [`.yarnrc`][y-d-rc] and [`.npmrc`][npm-d-rc] configuration files to enforce project-wide standards for all core team members and contributors. This includes the usage of the [Yarn][y-d-c] and [npm][npm-d-ex] `exact` version resolution as well as disabling the creation of the npm [`package-lock.json`][npm-d-lock] file in order to prevent conflicts with the [`yarn.lock`][y-d-lock] file.
[npm-d-ex]: https://docs.npmjs.com/misc/config#save-exact
[npm-d-lock]: https://docs.npmjs.com/files/package-lock.json
[npm-d-rc]: https://docs.npmjs.com/files/npmrc
[y-d-c]: https://yarnpkg.com/lang/en/docs/cli/config
[y-d-lock]: https://yarnpkg.com/lang/en/docs/yarn-lock
[y-d-rc]: https://yarnpkg.com/lang/en/docs/yarnrc | main | yarn npm configuration files add the and configuration files to enforce project wide standards for all core team members and contributors this includes the usage of the and exact version resolution as well as disabling the creation of the npm file in order to prevent conflicts with the file | 1 |
3,626 | 14,667,771,353 | IssuesEvent | 2020-12-29 19:29:39 | backdrop-ops/contrib | https://api.github.com/repos/backdrop-ops/contrib | closed | Application to join: djzwerg | Maintainer application | Hello and welcome to the contrib application process! We're happy to have you :)
## Please note these 3 requirements for new contrib projects:
- [x] Include a README.md file containing license and maintainer information.
You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/README.md
- [x] Include a LICENSE.txt file.
You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/LICENSE.txt.
- [ ] If porting a Drupal 7 project, Maintain the Git history from Drupal.
## Please provide the following information:
**The name of your module, theme, or layout**
ZURB TwentyTwenty
**(Optional) Post a link here to an issue in the drupal.org queue notifying the Drupal 7 maintainers that you are working on a Backdrop port of their project**
https://www.drupal.org/project/zurb_twentytwenty/issues/3171892
**Post a link to your new Backdrop project under your own GitHub account (option #1)**
https://github.com/djzwerg/zurb_twentytwenty
**If you have chosen option #2 or #1 above, do you agree to the [Backdrop Contributed Project Agreement](https://github.com/backdrop-ops/contrib#backdrop-contributed-project-agreement)**
YES
<!-- Once we have a chance to review your project, we will check for the 3 requirements at the top of this issue. If those requirements are met, you will be invited to the @backdrop-contrib group. At that point you will be able to transfer the project. -->
<!-- Please note that we may also include additional feedback in the code review, but anything else is only intended to be helpful, and is NOT a requirement for joining the contrib group. -->
| True | Application to join: djzwerg - Hello and welcome to the contrib application process! We're happy to have you :)
## Please note these 3 requirements for new contrib projects:
- [x] Include a README.md file containing license and maintainer information.
You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/README.md
- [x] Include a LICENSE.txt file.
You can use this example: https://raw.githubusercontent.com/backdrop-ops/contrib/master/examples/LICENSE.txt.
- [ ] If porting a Drupal 7 project, Maintain the Git history from Drupal.
## Please provide the following information:
**The name of your module, theme, or layout**
ZURB TwentyTwenty
**(Optional) Post a link here to an issue in the drupal.org queue notifying the Drupal 7 maintainers that you are working on a Backdrop port of their project**
https://www.drupal.org/project/zurb_twentytwenty/issues/3171892
**Post a link to your new Backdrop project under your own GitHub account (option #1)**
https://github.com/djzwerg/zurb_twentytwenty
**If you have chosen option #2 or #1 above, do you agree to the [Backdrop Contributed Project Agreement](https://github.com/backdrop-ops/contrib#backdrop-contributed-project-agreement)**
YES
<!-- Once we have a chance to review your project, we will check for the 3 requirements at the top of this issue. If those requirements are met, you will be invited to the @backdrop-contrib group. At that point you will be able to transfer the project. -->
<!-- Please note that we may also include additional feedback in the code review, but anything else is only intended to be helpful, and is NOT a requirement for joining the contrib group. -->
| main | application to join djzwerg hello and welcome to the contrib application process we re happy to have you please note these requirements for new contrib projects include a readme md file containing license and maintainer information you can use this example include a license txt file you can use this example if porting a drupal project maintain the git history from drupal please provide the following information the name of your module theme or layout zurb twentytwenty optional post a link here to an issue in the drupal org queue notifying the drupal maintainers that you are working on a backdrop port of their project post a link to your new backdrop project under your own github account option if you have chosen option or above do you agree to the yes | 1 |
12,416 | 7,875,480,847 | IssuesEvent | 2018-06-25 20:34:37 | PythonNut/emacs-config | https://api.github.com/repos/PythonNut/emacs-config | closed | Consider removing auto-highlight-symbol | cosmetic performance | My suspicion is that this isn't really that helpful, since I can invoke something similar with <kbd>#</kbd> and <kbd>*</kbd>. | True | Consider removing auto-highlight-symbol - My suspicion is that this isn't really that helpful, since I can invoke something similar with <kbd>#</kbd> and <kbd>*</kbd>. | non_main | consider removing auto highlight symbol my suspicion is that this isn t really that helpful since i can invoke something similar with and | 0 |
3,724 | 15,420,808,966 | IssuesEvent | 2021-03-05 12:08:10 | NixOS/nixpkgs | https://api.github.com/repos/NixOS/nixpkgs | closed | Google set to limit Chromium usage of Google APIs | 9.needs: maintainer feedback | In this blog post [1], Google states that after March 15, 2021, they will be limiting access to various Google APIs that they are now describing as "private" and "only intended for Google's use". The most notable of this apparently includes "Chrome sync" which allows syncing bookmarks / browser history / etc. across multiple browsers logged-in to a given Google account.
Additionally, emails [2] have been sent out to chromium maintainers from other Linux distros stating that users of their chromium-based browser will no longer be able to sign in to their Google accounts. They recommend these chromium-based browsers remove `google_default_client_id` and `google_default_client_secret` from the build configuration, or alternatively, set `--allow-browser-signin=false` at startup.
@edolstra Did we get a similar email as the one shown in [2]?
[1] https://blog.chromium.org/2021/01/limiting-private-api-availability-in.html
[2] https://groups.google.com/a/chromium.org/g/chromium-packagers/c/SG6jnsP4pWM/m/HdoGEO0qCwAJ
CC @primeos @thefloweringash @bendlas | True | Google set to limit Chromium usage of Google APIs - In this blog post [1], Google states that after March 15, 2021, they will be limiting access to various Google APIs that they are now describing as "private" and "only intended for Google's use". The most notable of this apparently includes "Chrome sync" which allows syncing bookmarks / browser history / etc. across multiple browsers logged-in to a given Google account.
Additionally, emails [2] have been sent out to chromium maintainers from other Linux distros stating that users of their chromium-based browser will no longer be able to sign in to their Google accounts. They recommend these chromium-based browsers remove `google_default_client_id` and `google_default_client_secret` from the build configuration, or alternatively, set `--allow-browser-signin=false` at startup.
@edolstra Did we get a similar email as the one shown in [2]?
[1] https://blog.chromium.org/2021/01/limiting-private-api-availability-in.html
[2] https://groups.google.com/a/chromium.org/g/chromium-packagers/c/SG6jnsP4pWM/m/HdoGEO0qCwAJ
CC @primeos @thefloweringash @bendlas | main | google set to limit chromium usage of google apis in this blog post google states that after march they will be limiting access to various google apis that they are now describing as private and only intended for google s use the most notable of this apparently includes chrome sync which allows syncing bookmarks browser history etc across multiple browsers logged in to a given google account additionally emails have been sent out to chromium maintainers from other linux distros stating that users of their chromium based browser will no longer be able to sign in to their google accounts they recommend these chromium based browsers remove google default client id and google default client secret from the build configuration or alternatively set allow browser signin false at startup edolstra did we get a similar email as the one shown in cc primeos thefloweringash bendlas | 1 |
59,531 | 17,023,153,507 | IssuesEvent | 2021-07-03 00:36:54 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Layer information lost when switching from slippy map to editor and back | Component: website Priority: major Resolution: fixed Type: defect | **[Submitted to the original trac issue database at 10.44am, Sunday, 15th April 2007]**
I browse to the place I want to edit with the osmarender layer on www.openstreetmap.org
After having for the place, I switch to the editor. After this, I switch back to the "View" tab, but the information that I was using the osmarender layer is lost. I now see the mapnik tiles which just tell me "More OSM coming soon". | 1.0 | Layer information lost when switching from slippy map to editor and back - **[Submitted to the original trac issue database at 10.44am, Sunday, 15th April 2007]**
I browse to the place I want to edit with the osmarender layer on www.openstreetmap.org
After having for the place, I switch to the editor. After this, I switch back to the "View" tab, but the information that I was using the osmarender layer is lost. I now see the mapnik tiles which just tell me "More OSM coming soon". | non_main | layer information lost when switching from slippy map to editor and back i browse to the place i want to edit with the osmarender layer on after having for the place i switch to the editor after this i switch back to the view tab but the information that i was using the osmarender layer is lost i now see the mapnik tiles which just tell me more osm coming soon | 0 |
26,221 | 26,569,575,115 | IssuesEvent | 2023-01-21 01:22:34 | jstanden/cerb | https://api.github.com/repos/jstanden/cerb | closed | URL field doesn't allow accents | usability | Tried to save a LinkedIn URL on a contact profile, and the URL had an é in it. Cerb refused to save it (complaining about needing http:// or https:// in front of the URL, which was already there). Removing the é allowed the record to be saved. | True | URL field doesn't allow accents - Tried to save a LinkedIn URL on a contact profile, and the URL had an é in it. Cerb refused to save it (complaining about needing http:// or https:// in front of the URL, which was already there). Removing the é allowed the record to be saved. | non_main | url field doesn t allow accents tried to save a linkedin url on a contact profile and the url had an é in it cerb refused to save it complaining about needing http or https in front of the url which was already there removing the é allowed the record to be saved | 0 |
1,854 | 6,577,396,854 | IssuesEvent | 2017-09-12 00:37:33 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | (possible data loss?) git does reset --hard even with force: no | affects_2.2 bug_report waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
module git
##### ANSIBLE VERSION
```
ansible 2.2.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
```
executable = /bin/bash
command_warnings = true
```
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
Host: OS X El Capitan
Remote: Ubuntu 16.04 (This task, however, runs with connection: local)
##### SUMMARY
<!--- Explain the problem briefly -->
I am running the task below, which leads to three problems:
- it runs a `git reset --hard`, even when I explicitly set `force: false`
- I did not expect the repository to be reset. I now understand the reasoning (describing a predictable state), but I believe a hard reset deserves some protection even against confused newbies like me.
- This is a dataloss bug: The user loses all local modifications to the repository that have not been commited.
- The command actually fails, because it apparently mixes up `remote` and `version` (although this could be my mistake)
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
Run the following task
```
- name: pull updates from git repository
git:
repo: "{{ git_repository }}"
update: yes
force: no
dest: "{{ path_local }}"
clone: no
remote: "{{ git_remote }}"
version: "{{ git_version }}"
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
I expected a `git pull {{ remote }}` to be run, but I would now suggest to check for local modifications and fail (which I already had as a previous task)
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with high verbosity (-vvvv) -->
Note: The major problem is the command it's trying to run, not that it failed.
```
TASK [je: pull updates from git repository repo={{ git_repository }},
version={{ git_version }},
force=False,
dest={{ path_local }},
remote={{ git_remote }},
clone=False,
update=True] ***
task path: <path>/git/tasks/synchronize.yml:12
<host> ESTABLISH LOCAL CONNECTION FOR USER: ma
<host> EXEC /bin/bash -c 'LANG=en_EN LC_ALL=en_EN LC_MESSAGES=en_EN /usr/bin/python'
fatal: [<host>]: FAILED! => {"changed": false,
"cmd": "/usr/local/bin/git reset --hard origin",
"failed": true,
"invocation": {"module_args": {"accept_hostkey": false,
"bare": false,
"clone": false,
"depth": null,
"dest": "/path/projects/<host>",
"executable": null,
"force": false,
"key_file": null,
"recursive": true,
"reference": null,
"refspec": null,
"remote": "origin",
"repo": "<url>",
"ssh_opts": null,
"track_submodules": false,
"update": true,
"verify_commit": false,
"version": "HEAD"},
"module_name": "git"},
"msg": "Failed to checkout branch master",
"rc": 128,
"stderr": "fatal: ambiguous argument 'origin': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions,
like this:\n'git <command> [<revision>...] -- [<file>...]'\n",
"stdout": "",
"stdout_lines": []}
<!--- Paste verbatim command output between quotes -->
```
| True | (possible data loss?) git does reset --hard even with force: no - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
module git
##### ANSIBLE VERSION
```
ansible 2.2.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
```
executable = /bin/bash
command_warnings = true
```
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
Host: OS X El Capitan
Remote: Ubuntu 16.04 (This task, however, runs with connection: local)
##### SUMMARY
<!--- Explain the problem briefly -->
I am running the task below, which leads to three problems:
- it runs a `git reset --hard`, even when I explicitly set `force: false`
- I did not expect the repository to be reset. I now understand the reasoning (describing a predictable state), but I believe a hard reset deserves some protection even against confused newbies like me.
- This is a dataloss bug: The user loses all local modifications to the repository that have not been commited.
- The command actually fails, because it apparently mixes up `remote` and `version` (although this could be my mistake)
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
Run the following task
```
- name: pull updates from git repository
git:
repo: "{{ git_repository }}"
update: yes
force: no
dest: "{{ path_local }}"
clone: no
remote: "{{ git_remote }}"
version: "{{ git_version }}"
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
I expected a `git pull {{ remote }}` to be run, but I would now suggest to check for local modifications and fail (which I already had as a previous task)
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with high verbosity (-vvvv) -->
Note: The major problem is the command it's trying to run, not that it failed.
```
TASK [je: pull updates from git repository repo={{ git_repository }},
version={{ git_version }},
force=False,
dest={{ path_local }},
remote={{ git_remote }},
clone=False,
update=True] ***
task path: <path>/git/tasks/synchronize.yml:12
<host> ESTABLISH LOCAL CONNECTION FOR USER: ma
<host> EXEC /bin/bash -c 'LANG=en_EN LC_ALL=en_EN LC_MESSAGES=en_EN /usr/bin/python'
fatal: [<host>]: FAILED! => {"changed": false,
"cmd": "/usr/local/bin/git reset --hard origin",
"failed": true,
"invocation": {"module_args": {"accept_hostkey": false,
"bare": false,
"clone": false,
"depth": null,
"dest": "/path/projects/<host>",
"executable": null,
"force": false,
"key_file": null,
"recursive": true,
"reference": null,
"refspec": null,
"remote": "origin",
"repo": "<url>",
"ssh_opts": null,
"track_submodules": false,
"update": true,
"verify_commit": false,
"version": "HEAD"},
"module_name": "git"},
"msg": "Failed to checkout branch master",
"rc": 128,
"stderr": "fatal: ambiguous argument 'origin': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions,
like this:\n'git <command> [<revision>...] -- [<file>...]'\n",
"stdout": "",
"stdout_lines": []}
<!--- Paste verbatim command output between quotes -->
```
| main | possible data loss git does reset hard even with force no issue type bug report component name module git ansible version ansible configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables executable bin bash command warnings true os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific host os x el capitan remote ubuntu this task however runs with connection local summary i am running the task below which leads to three problems it runs a git reset hard even when i explicitly set force false i did not expect the repository to be reset i now understand the reasoning describing a predictable state but i believe a hard reset deserves some protection even against confused newbies like me this is a dataloss bug the user loses all local modifications to the repository that have not been commited the command actually fails because it apparently mixes up remote and version although this could be my mistake steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used run the following task name pull updates from git repository git repo git repository update yes force no dest path local clone no remote git remote version git version expected results i expected a git pull remote to be run but i would now suggest to check for local modifications and fail which i already had as a previous task actual results note the major problem is the command it s trying to run not that it failed task je pull updates from git repository repo git repository version git version force false dest path local remote git remote clone false update true task path git tasks synchronize yml establish local connection for user ma exec bin bash c lang en en lc all en en lc messages en en usr bin python fatal failed changed false cmd usr local bin git reset hard origin failed true invocation module args accept hostkey false bare false clone false depth null dest path projects executable null force false key file null recursive true reference null refspec null remote origin repo ssh opts null track submodules false update true verify commit false version head module name git msg failed to checkout branch master rc stderr fatal ambiguous argument origin unknown revision or path not in the working tree nuse to separate paths from revisions like this n git n stdout stdout lines | 1 |
3,943 | 17,791,217,532 | IssuesEvent | 2021-08-31 16:24:09 | tgstation/tgstation | https://api.github.com/repos/tgstation/tgstation | closed | Foodtype isn't maintainable/needs refactoring | Maintainability/Hinders improvements | Original PR: #29369
* foodtype isn't inherited from ingredients and causes maintenance issues, e.g. I made tomato a fruit #35122 but neglected to realise [snacks_pizza.dm](https://github.com/tgstation/tgstation/blob/master/code/modules/food_and_drinks/food/snacks_pizza.dm) needed updating
* foodtype uses culinary definitions half the time, gameplay balance the other half and is sometimes odd, e.g. sweetcorn is considered a vegetable but popcorn is considered junk food, egg is a meat (oh and should I mention again I made a PR a while ago that got in which probably didn't help matters?), it might be easier to just use gameplay balance (e.g. toxic, junk food, plant, meat, fungus), strict definitions (e.g. has to contain sugar for sugar, has to contain poison for toxic) or a combination that can't be argued with
* some foods have been forgotten about since I believe this was implemented, e.g. omelette uses cheese wedges but forgets to add dairy as a type, it does taste of cheese though for anyone who's lactose intolerant, and eggs benedict forgets to add grain, this is perhaps of utmost importance due to this being an exploit for eating a large supply of bread & cheese as a lizard with no up-chuck repercussions because `disliked_food = GRAIN | DAIRY`, also margherita pizzas seem to lack the dairy type whilst meat pizzas do have it...
* taste also has the inheritance problems
* if this is refactored to, for lack of a better word to anyone who's bothered by my usage, inherit, perhaps list_reagents could be taken from the ingredients too
Anyone who isn't reading the original PR, these are the food types:
`MEAT
VEGETABLES
RAW
JUNKFOOD
GRAIN
FRUIT
DAIRY
FRIED
ALCOHOL
GROSS
TOXIC`
This is mainly a balance & maintainability concern for racial palates. Not a request for the removal of the feature.
The original PR did state this could lead to "gluten intolerance or veganism traits later down the road" which you might want to keep in mind when considering fixing this. e.g. our system can support veganism now (we have dairy and eggs & probably all of their recipes are listed as meat) but if you wanted vegetarianism as a trait, you're fresh out of luck with how it's currently listed and fixing that is going to be hard for a coder without inheriting food types.
@Qustinnus here's the issue. I hope I worded it well enough for you and I'm not being sarky since I don't want to break or bash your added system if we ignore the tomato PR. | True | Foodtype isn't maintainable/needs refactoring - Original PR: #29369
* foodtype isn't inherited from ingredients and causes maintenance issues, e.g. I made tomato a fruit #35122 but neglected to realise [snacks_pizza.dm](https://github.com/tgstation/tgstation/blob/master/code/modules/food_and_drinks/food/snacks_pizza.dm) needed updating
* foodtype uses culinary definitions half the time, gameplay balance the other half and is sometimes odd, e.g. sweetcorn is considered a vegetable but popcorn is considered junk food, egg is a meat (oh and should I mention again I made a PR a while ago that got in which probably didn't help matters?), it might be easier to just use gameplay balance (e.g. toxic, junk food, plant, meat, fungus), strict definitions (e.g. has to contain sugar for sugar, has to contain poison for toxic) or a combination that can't be argued with
* some foods have been forgotten about since I believe this was implemented, e.g. omelette uses cheese wedges but forgets to add dairy as a type, it does taste of cheese though for anyone who's lactose intolerant, and eggs benedict forgets to add grain, this is perhaps of utmost importance due to this being an exploit for eating a large supply of bread & cheese as a lizard with no up-chuck repercussions because `disliked_food = GRAIN | DAIRY`, also margherita pizzas seem to lack the dairy type whilst meat pizzas do have it...
* taste also has the inheritance problems
* if this is refactored to, for lack of a better word to anyone who's bothered by my usage, inherit, perhaps list_reagents could be taken from the ingredients too
Anyone who isn't reading the original PR, these are the food types:
`MEAT
VEGETABLES
RAW
JUNKFOOD
GRAIN
FRUIT
DAIRY
FRIED
ALCOHOL
GROSS
TOXIC`
This is mainly a balance & maintainability concern for racial palates. Not a request for the removal of the feature.
The original PR did state this could lead to "gluten intolerance or veganism traits later down the road" which you might want to keep in mind when considering fixing this. e.g. our system can support veganism now (we have dairy and eggs & probably all of their recipes are listed as meat) but if you wanted vegetarianism as a trait, you're fresh out of luck with how it's currently listed and fixing that is going to be hard for a coder without inheriting food types.
@Qustinnus here's the issue. I hope I worded it well enough for you and I'm not being sarky since I don't want to break or bash your added system if we ignore the tomato PR. | main | foodtype isn t maintainable needs refactoring original pr foodtype isn t inherited from ingredients and causes maintenance issues e g i made tomato a fruit but neglected to realise needed updating foodtype uses culinary definitions half the time gameplay balance the other half and is sometimes odd e g sweetcorn is considered a vegetable but popcorn is considered junk food egg is a meat oh and should i mention again i made a pr a while ago that got in which probably didn t help matters it might be easier to just use gameplay balance e g toxic junk food plant meat fungus strict definitions e g has to contain sugar for sugar has to contain poison for toxic or a combination that can t be argued with some foods have been forgotten about since i believe this was implemented e g omelette uses cheese wedges but forgets to add dairy as a type it does taste of cheese though for anyone who s lactose intolerant and eggs benedict forgets to add grain this is perhaps of utmost importance due to this being an exploit for eating a large supply of bread cheese as a lizard with no up chuck repercussions because disliked food grain dairy also margherita pizzas seem to lack the dairy type whilst meat pizzas do have it taste also has the inheritance problems if this is refactored to for lack of a better word to anyone who s bothered by my usage inherit perhaps list reagents could be taken from the ingredients too anyone who isn t reading the original pr these are the food types meat vegetables raw junkfood grain fruit dairy fried alcohol gross toxic this is mainly a balance maintainability concern for racial palates not a request for the removal of the feature the original pr did state this could lead to gluten intolerance or veganism traits later down the road which you might want to keep in mind when considering fixing this e g our system can support veganism now we have dairy and eggs probably all of their recipes are listed as meat but if you wanted vegetarianism as a trait you re fresh out of luck with how it s currently listed and fixing that is going to be hard for a coder without inheriting food types qustinnus here s the issue i hope i worded it well enough for you and i m not being sarky since i don t want to break or bash your added system if we ignore the tomato pr | 1 |
4,839 | 24,949,840,814 | IssuesEvent | 2022-11-01 05:48:39 | usefulmove/comp | https://api.github.com/repos/usefulmove/comp | opened | Improve maintainability of pop_stack family of stack manipulation functions | good first issue maintainability | The maintainability of the `pop_stack` family of functions can be improved (e.g., better code reuse) by passing behavior as functions and-or generic functions. | True | Improve maintainability of pop_stack family of stack manipulation functions - The maintainability of the `pop_stack` family of functions can be improved (e.g., better code reuse) by passing behavior as functions and-or generic functions. | main | improve maintainability of pop stack family of stack manipulation functions the maintainability of the pop stack family of functions can be improved e g better code reuse by passing behavior as functions and or generic functions | 1 |
23,906 | 6,493,749,727 | IssuesEvent | 2017-08-21 18:35:41 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | [4.0] Table Options in Menu Items | No Code Attached Yet | Since the introduction of the combined search and filters into table options we have lost the ability to switch which menu is being displayed. This is particularly annoying after selecting all menu items from the sidebar.
Also the menu selection is obviously a filter (even if we cant see it) so the table options is always open for com_menus
@ciar4n | 1.0 | [4.0] Table Options in Menu Items - Since the introduction of the combined search and filters into table options we have lost the ability to switch which menu is being displayed. This is particularly annoying after selecting all menu items from the sidebar.
Also the menu selection is obviously a filter (even if we cant see it) so the table options is always open for com_menus
@ciar4n | non_main | table options in menu items since the introduction of the combined search and filters into table options we have lost the ability to switch which menu is being displayed this is particularly annoying after selecting all menu items from the sidebar also the menu selection is obviously a filter even if we cant see it so the table options is always open for com menus | 0 |
336,987 | 10,208,914,074 | IssuesEvent | 2019-08-14 11:22:13 | SAP/cloud-commerce-spartacus-storefront | https://api.github.com/repos/SAP/cloud-commerce-spartacus-storefront | closed | Slot content is not cleared when navigating to a new page | priority/HIGH type/bug | We've noticed in #3938 that when a slot position is used on the page, and remains being used on the next page, the content of the former page is (re)rendered even if the new page doesn't provide content for the slot. It seems that the page slot content is not cleared.
All page slots that are not used in the next page should be cleared. Other slots however should remain to benefit performance. | 1.0 | Slot content is not cleared when navigating to a new page - We've noticed in #3938 that when a slot position is used on the page, and remains being used on the next page, the content of the former page is (re)rendered even if the new page doesn't provide content for the slot. It seems that the page slot content is not cleared.
All page slots that are not used in the next page should be cleared. Other slots however should remain to benefit performance. | non_main | slot content is not cleared when navigating to a new page we ve noticed in that when a slot position is used on the page and remains being used on the next page the content of the former page is re rendered even if the new page doesn t provide content for the slot it seems that the page slot content is not cleared all page slots that are not used in the next page should be cleared other slots however should remain to benefit performance | 0 |
263,333 | 19,907,670,080 | IssuesEvent | 2022-01-25 14:22:47 | JonathanSalwan/Triton | https://api.github.com/repos/JonathanSalwan/Triton | closed | Introduction to a new engine: Synthesizing (obfuscated) expressions | Feature libTriton Documentation Synthesizer Engine | # Introduction
Software are getting more and more protected against reverse engineering. Several software protections exist [1]. In the past we already attacked some of these protections with Triton using symbolic and taint analysis [2, 3, 4, 5, 6]. Some software protections (like Mixed Boolean-Arithmetic expression: MBA [7]) transform simple operation into a more complicated one by mixing arithmetic operators (e.g: `ADD`, `SUB`, `MUL`) with bit-wise operators (e.g: `AND`, `OR`, `XOR`, `ROL`). For example:
* `x + y == (x | y) + y - (~x & y)`
* `x ^ y == (x | y) - y + (~x & y)`
* `x ^ y == (x & ~y) | (~x & y)`
* `x | y == (x ^ y) + y - (~x & y)`
* `x & y == -(x | y) + y + x`
In this contribution we introduce a new engine which lay the foundation of expression synthesis and aims to attack such protections. Synthesis is a well known analysis when reversing obfuscated expressions [8, 9, 10] and tool like Qsynth [10] already relies on Triton for its analysis. That's why I thought it will be nice if we can add some program synthesis concepts in Triton.
# The engine and its components
We have added the engine `Synthesizer` into a new namespace: `triton::engines::synthesis::` and a new method has been added into the `API` to synthesize expressions. The engine is almost standalone, it only relies on the symbolic engine to create new symbolic variables but does not alters the symbolic state of your Triton context.
```cpp
triton::engines::synthesis::SynthesisResult API::synthesize(const triton::ast::SharedAbstractNode& node, bool constant) {
this->checkSymbolic();
triton::engines::synthesis::Synthesizer synth(this->symbolic);
return synth.synthesize(node, constant);
}
```
The `SynthesisResult` object contains the input AST (the obfuscated one), the output AST (the synthesized one), the time in milliseconds of the analysis and a flag `success` which is `true` if the input AST has been synthesized.
```cpp
class SynthesisResult {
[...]
public:
[...]
const triton::ast::SharedAbstractNode getInput(void);
const triton::ast::SharedAbstractNode getOutput(void);
triton::usize getTime(void);
bool successful(void);
}
```
## Oracle table with two variables
Program synthesis uses an oracle table to determine the behavior of obfuscated expressions. We consider the target as a black box and by seeing the result of a given input we can determine what the black box does. Our oracle table is located in `triton::engines::synthesis::oracleTable` and contains several entries. All these entries are used for analyzing an expression that contains two variables and one operator. For example, these following entries are used to synthesize a `bvadd` node.
```cpp
/* bvadd synthesis */
{
triton::ast::BVADD_NODE, {
OracleEntry(8, 0xab, 0xf4, 0x9f), OracleEntry(16, 0xd732, 0x4aef, 0x2221), OracleEntry(32, 0x469f7dd0, 0xb31b6eff, 0xf9baeccf), OracleEntry(64, 0x4228671b9260d25a, 0x5434951c42b9e695, 0x965cfc37d51ab8ef),
OracleEntry(8, 0x20, 0x08, 0x28), OracleEntry(16, 0x159a, 0x5ea1, 0x743b), OracleEntry(32, 0x2f9557f0, 0x661e61f5, 0x95b3b9e5), OracleEntry(64, 0x432e5bc7f37785fe, 0x98a0dea40c10db87, 0xdbcf3a6bff886185),
OracleEntry(8, 0x7a, 0x6b, 0xe5), OracleEntry(16, 0x23ad, 0x14e1, 0x388e), OracleEntry(32, 0xf9378199, 0x044faf6b, 0xfd873104), OracleEntry(64, 0x72b52744d832920b, 0x93a68be90bbefa87, 0x065bb32de3f18c92),
OracleEntry(8, 0xef, 0xb4, 0xa3), OracleEntry(16, 0x391a, 0x2b4f, 0x6469), OracleEntry(32, 0x938c6494, 0x38918999, 0xcc1dee2d), OracleEntry(64, 0x6f54a84153273cab, 0xa986855db460ed11, 0x18db2d9f078829bc),
OracleEntry(8, 0x40, 0x71, 0xb1), OracleEntry(16, 0xda3b, 0x821b, 0x5c56), OracleEntry(32, 0x8a99e28e, 0xa16daf8e, 0x2c07921c), OracleEntry(64, 0xf0fd090236cd156f, 0xb2828dd6dffe38a5, 0xa37f96d916cb4e14),
OracleEntry(8, 0x7d, 0xaa, 0x27), OracleEntry(16, 0x2cb0, 0xe80b, 0x14bb), OracleEntry(32, 0x41491ca5, 0x10698ef9, 0x51b2ab9e), OracleEntry(64, 0x0d7c0452a656cc4e, 0xf8916d8b06c25bd6, 0x060d71ddad192824),
OracleEntry(8, 0x04, 0xd9, 0xdd), OracleEntry(16, 0xa94d, 0x4f26, 0xf873), OracleEntry(32, 0xd43e3529, 0x50215e66, 0x245f938f), OracleEntry(64, 0x6080204088c69b8c, 0x7dfa4f93888843e2, 0xde7a6fd4114edf6e),
OracleEntry(8, 0xd3, 0xac, 0x7f), OracleEntry(16, 0x14ac, 0x4f23, 0x63cf), OracleEntry(32, 0x2736690b, 0xd07ef240, 0xf7b55b4b), OracleEntry(64, 0xe647b71edcd154ca, 0xeb318119771ced0d, 0xd179383853ee41d7),
OracleEntry(8, 0xda, 0xad, 0x87), OracleEntry(16, 0xb6ee, 0x4008, 0xf6f6), OracleEntry(32, 0x84559f32, 0xd2e90cde, 0x573eac10), OracleEntry(64, 0x95fe7d45035c1641, 0x70586d899571ae0d, 0x0656eace98cdc44e),
OracleEntry(8, 0xd9, 0x47, 0x20), OracleEntry(16, 0x8d36, 0x9497, 0x21cd), OracleEntry(32, 0x4a8e0eb5, 0xaa9f8e8f, 0xf52d9d44), OracleEntry(64, 0x9093d9c3bcc2f2fb, 0xa1a5835615c2033e, 0x32395d19d284f639),
}
},
```
An `OracleEntry` represents an entry in our oracle table. For example, the entry: `OracleEntry(8, 0xab, 0xf4, 0x9f)` is structured as follows:
* `8` is the size in bits of the expression
* `0xab` is the input value of the first variable (e.g: `x`)
* `0xf4` is the input value of the second variable (e.g: `y`)
* `0x9f` is the result value of the `bvadd` operator computation on those input values
It means that if we inject into our black box (the obfuscated expression) `0xab` and `0xfa` into arguments and if the result of the executed black box is `0x9f`, it means that the obfuscated expression might do an `ADD` operation. To be sure, we have to execute different entries. That's why in our oracle table we have multiple entries, with different values, on different sizes, and for all operators.
## Constant synthesis
The engine also supports constant synthesizing. Let's consider, for example, the following expression: `((z << 8) >> 16) << 8`, this expression contains only one variable and can be synthesized as follows: `z & 0xffff00`. To do that, the synthesizer uses the SMT quantifier `forall` and the constraint is expressed as follows: For all entries `z`, there exists a symbolic constant `C` such that `((z << 8) >> 16) << 8 == z <operator> C`. We have to request this constraint to the solver with all operators to find the good one and its constant.
* **Query 1**: `((z << 8) >> 16) << 8 == z & C`
* **Query 2**: `((z << 8) >> 16) << 8 == z ^ C`
* **Query 3**: `((z << 8) >> 16) << 8 == z | C`
* **Query 4**: `((z << 8) >> 16) << 8 == z * C`
* **Query 5**: `((z << 8) >> 16) << 8 == z + C`
* **Query 6**: `((z << 8) >> 16) << 8 == z - C`
* **Query 7**: `((z << 8) >> 16) << 8 == C - z`
Constant synthesis is more relying on SMT reasoning than pure synthesis concepts as it uses SMT solver to solve constraint. However it seemed good to me to add this feature in the synthesis analysis because constant obfuscation is a real thing used in modern software (see examples below).
# How to use the synthesizer
Ok let's talk about examples and how to use the synthesizer. Well, it's pretty simple, you just have to call `ctx.synthesize` on your obfuscated expression and if the synthesis succeed, you have a synthesized expression at return. You can work on standalone expressions as well as from an execution of obfuscated code.
## Working on standalone expressions
The code below deals with standalone expressions. We extracted/crafted our own obfuscated expressions and for each expression we call `ctx.synthesize`.
```python
import sys
from triton import *
# This following constant obfuscation comes from a modern software.
# This expression has been extracted from reverse engineering by ex
# colleagues at Quarkslab several years ago.
def x_xor_92_obfuscated(x):
a = 229 * x + 247
b = 237 * a + 214 + ((38 * a + 85) & 254)
c = (b + ((-(2 * b) + 255) & 254)) * 3 + 77
d = ((86 * c + 36) & 70) * 75 + 231 * c + 118
e = ((58 * d + 175) & 244) + 99 * d + 46
f = (e & 148)
g = (f - (e & 255) + f) * 103 + 13
R = (237 * (45 * g + (174 * g | 34) * 229 + 194 - 247) & 255)
return R
def main():
ctx = TritonContext(ARCH.X86_64)
ast = ctx.getAstContext()
ctx.setAstRepresentationMode(AST_REPRESENTATION.PYTHON)
x = ast.variable(ctx.newSymbolicVariable(8, 'x'))
y = ast.variable(ctx.newSymbolicVariable(8, 'y'))
z = ast.variable(ctx.newSymbolicVariable(32, 'z'))
# Some obfuscated expressions
obf_exprs = [
~x & 0xff,
-~x & 0xff,
(x | y) + y - (~x & y), # x + y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
(x | y) - y + (~x & y), # x ^ y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
(x & ~y) | (~x & y), # x ^ y (from ?)
(x ^ y) + y - (~x & y), # x | y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
-(x | y) + y + x, # x & y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
((z << 8) >> 16) << 8, # z & 0xffff00 (from https://blog.regehr.org/archives/1636)
(((x ^ y) + 2 * (x & y)) * 39 + 23) * 151 + 111, # x + y (from Ninon Eyrolle's thesis)
x_xor_92_obfuscated(x), # x ^ 92 (from reverse engineering)
]
for expr in obf_exprs:
(print('In: %s' %(expr)) if len(str(expr)) < 100 else print('In: %s ...' %(str(expr)[0:100])))
expr = ctx.synthesize(expr)
print('Out: %s' %(expr))
print()
return 0
if __name__ == '__main__':
sys.exit(main())
```
The result is the following:
```console
$ time python ./example.py
In: ((~(x) & 0xff) & 0xff)
Out: ((0xff - x) & 0xff)
In: ((-((~(x) & 0xff)) & 0xff) & 0xff)
Out: ((x + 0x1) & 0xff)
In: (((((x | y) + y) & 0xff) - ((~(x) & 0xff) & y)) & 0xff)
Out: ((x + y) & 0xff)
In: (((((x | y) - y) & 0xff) + ((~(x) & 0xff) & y)) & 0xff)
Out: (x ^ y)
In: ((x & (~(y) & 0xff)) | ((~(x) & 0xff) & y))
Out: (x ^ y)
In: (((((x ^ y) + y) & 0xff) - ((~(x) & 0xff) & y)) & 0xff)
Out: (x | y)
In: (((((-((x | y)) & 0xff) + y) & 0xff) + x) & 0xff)
Out: (y & x)
In: (((((z << 0x8) & 0xffffffff) >> 0x10) << 0x8) & 0xffffffff)
Out: (z & 0xffff00)
In: (((((((((((x ^ y) + ((0x2 * (x & y)) & 0xff)) & 0xff) * 0x27) & 0xff) + 0x17) & 0xff) * 0x97) & 0xff ...
Out: ((x + y) & 0xff)
In: (((0xed * ((((((((0x2d * ((((((((((((((((((0x3a * (((((((((((0x56 * ((((((((((((0xed * ((((0xe5 * x) ...
Out: (x ^ 0x5c)
python ./example.py 0.22s user 0.01s system 99% cpu 0.234 total
```
## Working on obfuscated trace (emulate the code)
I use Triton a lot of time when doing reverse engineering. I mainly start doing the reverse part and then when some parts of the code need better investment, I use Triton to emulate the piece of code that I'm working on. Thus, I can follow what instructions are executed, what data they use, taint data and follow them, define symbolic variables, asking for constraints, etc. It's mainly like a scriptable Python debugger but with a set of program analysis utilities. For example, let's go back with the constant obfuscation of the `(x ^ 0x5c)` operation from a modern software. You can easily extract the opcodes of the function to work on it. Then, you can define the input of the function as a symbolic variable, emulate the function and synthesize its return.
```python
#!/usr/bin/env python
## -*- coding: utf-8 -*-
import sys
from triton import *
# Extract of the obfuscated function
CODE = b"\x40\x88\xF8\x04\x81\xB1\xFE\x88\x44\x24\xFF\x40\x88\xF8\xF6\xE1"
CODE += b"\x04\xFF\x24\xFE\x8A\x4C\x24\xFF\x00\xC1\x88\xC8\xC0\xE0\x01\x34"
CODE += b"\xFE\x00\xC8\xB1\x03\xF6\xE1\x04\x4D\xB1\x56\x88\x44\x24\xFE\xF6"
CODE += b"\xE1\x04\x24\x24\x46\xB1\x4B\xF6\xE1\xB1\xE7\x8A\x54\x24\xFE\x88"
CODE += b"\x44\x24\xFD\x88\xD0\xF6\xE1\x04\x76\x8A\x4C\x24\xFD\x00\xC8\xB1"
CODE += b"\x3A\x88\x44\x24\xFC\xF6\xE1\x04\xAF\x24\xF4\xB1\x63\x40\x8A\x74"
CODE += b"\x24\xFC\x88\x44\x24\xFB\x40\x88\xF0\xF6\xE1\x04\x2E\x8A\x4C\x24"
CODE += b"\xFB\x00\xC8\x88\xC1\xC0\xE1\x01\x80\xE1\x28\x28\xC1\xB0\x67\x88"
CODE += b"\x44\x24\xFA\x88\xC8\x8A\x4C\x24\xFA\xF6\xE1\x04\x0D\xB1\x2D\x88"
CODE += b"\x44\x24\xF9\xF6\xE1\xB1\xAE\x40\x8A\x7C\x24\xF9\x88\x44\x24\xF8"
CODE += b"\x40\x88\xF8\xF6\xE1\x0C\x22\xB1\xE5\xF6\xE1\x8A\x4C\x24\xF8\x00"
CODE += b"\xC8\xB1\xED\xF6\xE1\x04\xEF\xC3"
# Emulate the code
def emulate(ctx, pc):
while pc:
opcode = ctx.getConcreteMemoryAreaValue(pc, 16)
instruction = Instruction(pc, opcode)
ctx.processing(instruction)
print(instruction)
pc = ctx.getConcreteRegisterValue(ctx.registers.rip)
return
def main():
ctx = TritonContext(ARCH.X86_64)
ctx.setMode(MODE.ALIGNED_MEMORY, True)
ctx.setMode(MODE.CONSTANT_FOLDING, True)
ctx.setMode(MODE.AST_OPTIMIZATIONS, True)
# By reversing the code we know that the function works on DIL
ctx.symbolizeRegister(ctx.registers.dil, "x")
ctx.setConcreteMemoryAreaValue(0x1000, CODE)
emulate(ctx, 0x1000)
# Get the AST at the return of the function
al = ctx.getRegisterAst(ctx.registers.al)
ast = ctx.getAstContext()
# Print the obfuscated expression
print(f"In: {ast.unroll(al)}")
# Print the synthesized expression
print(f"Out: {ctx.synthesize(al)}")
if __name__ == '__main__':
sys.exit(main())
```
The result is the following:
```console
$ python emu.py
0x1000: mov al, dil
0x1003: add al, 0x81
0x1005: mov cl, 0xfe
0x1007: mov byte ptr [rsp - 1], al
0x100b: mov al, dil
0x100e: mul cl
0x1010: add al, 0xff
0x1012: and al, 0xfe
0x1014: mov cl, byte ptr [rsp - 1]
0x1018: add cl, al
0x101a: mov al, cl
0x101c: shl al, 1
0x101f: xor al, 0xfe
0x1021: add al, cl
0x1023: mov cl, 3
0x1025: mul cl
0x1027: add al, 0x4d
0x1029: mov cl, 0x56
0x102b: mov byte ptr [rsp - 2], al
0x102f: mul cl
0x1031: add al, 0x24
0x1033: and al, 0x46
0x1035: mov cl, 0x4b
0x1037: mul cl
0x1039: mov cl, 0xe7
0x103b: mov dl, byte ptr [rsp - 2]
0x103f: mov byte ptr [rsp - 3], al
0x1043: mov al, dl
0x1045: mul cl
0x1047: add al, 0x76
0x1049: mov cl, byte ptr [rsp - 3]
0x104d: add al, cl
0x104f: mov cl, 0x3a
0x1051: mov byte ptr [rsp - 4], al
0x1055: mul cl
0x1057: add al, 0xaf
0x1059: and al, 0xf4
0x105b: mov cl, 0x63
0x105d: mov sil, byte ptr [rsp - 4]
0x1062: mov byte ptr [rsp - 5], al
0x1066: mov al, sil
0x1069: mul cl
0x106b: add al, 0x2e
0x106d: mov cl, byte ptr [rsp - 5]
0x1071: add al, cl
0x1073: mov cl, al
0x1075: shl cl, 1
0x1078: and cl, 0x28
0x107b: sub cl, al
0x107d: mov al, 0x67
0x107f: mov byte ptr [rsp - 6], al
0x1083: mov al, cl
0x1085: mov cl, byte ptr [rsp - 6]
0x1089: mul cl
0x108b: add al, 0xd
0x108d: mov cl, 0x2d
0x108f: mov byte ptr [rsp - 7], al
0x1093: mul cl
0x1095: mov cl, 0xae
0x1097: mov dil, byte ptr [rsp - 7]
0x109c: mov byte ptr [rsp - 8], al
0x10a0: mov al, dil
0x10a3: mul cl
0x10a5: or al, 0x22
0x10a7: mov cl, 0xe5
0x10a9: mul cl
0x10ab: mov cl, byte ptr [rsp - 8]
0x10af: add al, cl
0x10b1: mov cl, 0xed
0x10b3: mul cl
0x10b5: add al, 0xef
0x10b7: ret
In: (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvor ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvsub (b
vand (bvshl (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x
(_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ z
ero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend
8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1
8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8)
)) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bv
add (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bv
add ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ ext
ract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (
_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_
bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv58 16))) (_ bv175 8)) (_ bv244 8))) (_ bv1 8)) (_ bv40 8)) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul (
(_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv2
54 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv1
18 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvan
d (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_
bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd
(bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (
_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (
_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (
bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0
) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv58 16))) (_ bv175 8)) (_ bv244 8))))) (_ bv103 16))
) (_ bv13 8))) (_ bv174 16))) (_ bv34 8))) (_ bv229 16))) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvsub (bvand (bvshl (bvadd (bvadd ((_ extract 7 0) (bvmul ((
_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul
((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv25
4 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8)
(bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand
(bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand
(bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvan
d (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_
bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extra
ct 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (b
vadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16)))))
(_ bv58 16))) (_ bv175 8)) (_ bv244 8))) (_ bv1 8)) (_ bv40 8)) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_
zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ b
v129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (b
vand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8)
x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16)
)) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (
bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8))
(_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract
7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extrac
t 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv2
55 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv58 16))) (_ bv175 8)) (_ bv244 8))))) (_ bv103 16))) (_ bv13 8))) (_ bv45 16))))) (_ bv237 16))) (_ bv2
39 8))
Out: (bvxor x (_ bv92 8))
```
As you can see, the result of the synthesis is: `(bvxor x (_ bv92 8))` (SMT syntax). If you prefer, you can set the Python syntax like below:
```python
>>> ctx.setAstRepresentationMode(AST_REPRESENTATION.PYTHON)
>>> print(f"Out: {ctx.synthesize(al)}")
Out: (x ^ 0x5c)
```
If you do not want to work on big expression at the end of the execution, you can also define a simplification callback that will be called each time an AST is assigned to a register or a memory cell during the execution (see below). Thus, you can perform a synthesis before each assignment. In other words, you synthesize the expression on the fly.
```python
def my_cb(ctx, node):
synth = ctx.synthesize(node, constant=True)
if synth:
return synth
return node
ctx = TritonContext(ARCH.X86_64)
ctx.addCallback(CALLBACK.SYMBOLIC_SIMPLIFICATION, my_cb)
```
## Into IDA
You can also use IDA and its API to extract opcodes and directly print results in the IDA console. For example, an IDA script could be like this:
```python
#!/usr/bin/env python3
## -*- coding: utf-8 -*-
import ida_funcs
import ida_kernwin
import ida_gdl
import ida_bytes
from triton import *
if __name__ == '__main__':
# Analyse all BB of the function
func = ida_funcs.get_func(ida_kernwin.get_screen_ea())
name = ida_funcs.get_func_name(func.start_ea)
bb = ida_gdl.FlowChart(func)[0]
pc = bb.start_ea
ctx = TritonContext(ARCH.X86_64)
ctx.symbolizeRegister(ctx.registers.dil, 'dil')
ctx.setAstRepresentationMode(AST_REPRESENTATION.PYTHON)
print(f"[+] Analyzing basic block at 0x{pc:x}")
while pc != 0:
opcode = idc.get_bytes(pc, 16)
inst = Instruction(pc, opcode)
ctx.processing(inst)
pc = ctx.getSymbolicRegisterValue(ctx.registers.rip)
al = ctx.getRegisterAst(ctx.registers.al)
print(f'Synthesis: {ctx.synthesize(al)}')
```
It provides the following result:

# Conclusion
We introduced a new engine which aims to synthesize expressions. It currently do constant synthesizing and two variables with one operator synthesizing. Synthesis is applied on root node and we do not yet go through the DAG to synthesize children branches. We let this job for the future. However, you can applied synthesis during the execution which synthesizes nodes at the construction which is pretty similar than going through the DAG when the full expression is built. In the future, oracle table may grow to support multiple operators and variables.
# Bibliography
[01] Surreptitious Software: Obfuscation, Watermarking, and Tamperproofing for Software Protection (book)
[02] https://github.com/JonathanSalwan/Tigress_protection
[03] http://shell-storm.org/talks/DIMVA2018-deobfuscation-salwan-bardin-potet.pdf
[04] http://shell-storm.org/talks/SSTIC2017_Deobfuscation_of_VM_based_software_protection.pdf
[05] http://shell-storm.org/talks/csaw2016-sos-rthomas-jsalwan.pdf
[06] http://shell-storm.org/talks/sthack2016-rthomas-jsalwan.pdf
[07] https://tel.archives-ouvertes.fr/tel-01623849/document
[08] https://www.usenix.org/conference/usenixsecurity17/technical-sessions/presentation/blazytko
[09] https://github.com/mrphrazer/msynth
[10] https://www.ndss-symposium.org/wp-content/uploads/2020/04/bar2020-23009.pdf | 1.0 | Introduction to a new engine: Synthesizing (obfuscated) expressions - # Introduction
Software are getting more and more protected against reverse engineering. Several software protections exist [1]. In the past we already attacked some of these protections with Triton using symbolic and taint analysis [2, 3, 4, 5, 6]. Some software protections (like Mixed Boolean-Arithmetic expression: MBA [7]) transform simple operation into a more complicated one by mixing arithmetic operators (e.g: `ADD`, `SUB`, `MUL`) with bit-wise operators (e.g: `AND`, `OR`, `XOR`, `ROL`). For example:
* `x + y == (x | y) + y - (~x & y)`
* `x ^ y == (x | y) - y + (~x & y)`
* `x ^ y == (x & ~y) | (~x & y)`
* `x | y == (x ^ y) + y - (~x & y)`
* `x & y == -(x | y) + y + x`
In this contribution we introduce a new engine which lay the foundation of expression synthesis and aims to attack such protections. Synthesis is a well known analysis when reversing obfuscated expressions [8, 9, 10] and tool like Qsynth [10] already relies on Triton for its analysis. That's why I thought it will be nice if we can add some program synthesis concepts in Triton.
# The engine and its components
We have added the engine `Synthesizer` into a new namespace: `triton::engines::synthesis::` and a new method has been added into the `API` to synthesize expressions. The engine is almost standalone, it only relies on the symbolic engine to create new symbolic variables but does not alters the symbolic state of your Triton context.
```cpp
triton::engines::synthesis::SynthesisResult API::synthesize(const triton::ast::SharedAbstractNode& node, bool constant) {
this->checkSymbolic();
triton::engines::synthesis::Synthesizer synth(this->symbolic);
return synth.synthesize(node, constant);
}
```
The `SynthesisResult` object contains the input AST (the obfuscated one), the output AST (the synthesized one), the time in milliseconds of the analysis and a flag `success` which is `true` if the input AST has been synthesized.
```cpp
class SynthesisResult {
[...]
public:
[...]
const triton::ast::SharedAbstractNode getInput(void);
const triton::ast::SharedAbstractNode getOutput(void);
triton::usize getTime(void);
bool successful(void);
}
```
## Oracle table with two variables
Program synthesis uses an oracle table to determine the behavior of obfuscated expressions. We consider the target as a black box and by seeing the result of a given input we can determine what the black box does. Our oracle table is located in `triton::engines::synthesis::oracleTable` and contains several entries. All these entries are used for analyzing an expression that contains two variables and one operator. For example, these following entries are used to synthesize a `bvadd` node.
```cpp
/* bvadd synthesis */
{
triton::ast::BVADD_NODE, {
OracleEntry(8, 0xab, 0xf4, 0x9f), OracleEntry(16, 0xd732, 0x4aef, 0x2221), OracleEntry(32, 0x469f7dd0, 0xb31b6eff, 0xf9baeccf), OracleEntry(64, 0x4228671b9260d25a, 0x5434951c42b9e695, 0x965cfc37d51ab8ef),
OracleEntry(8, 0x20, 0x08, 0x28), OracleEntry(16, 0x159a, 0x5ea1, 0x743b), OracleEntry(32, 0x2f9557f0, 0x661e61f5, 0x95b3b9e5), OracleEntry(64, 0x432e5bc7f37785fe, 0x98a0dea40c10db87, 0xdbcf3a6bff886185),
OracleEntry(8, 0x7a, 0x6b, 0xe5), OracleEntry(16, 0x23ad, 0x14e1, 0x388e), OracleEntry(32, 0xf9378199, 0x044faf6b, 0xfd873104), OracleEntry(64, 0x72b52744d832920b, 0x93a68be90bbefa87, 0x065bb32de3f18c92),
OracleEntry(8, 0xef, 0xb4, 0xa3), OracleEntry(16, 0x391a, 0x2b4f, 0x6469), OracleEntry(32, 0x938c6494, 0x38918999, 0xcc1dee2d), OracleEntry(64, 0x6f54a84153273cab, 0xa986855db460ed11, 0x18db2d9f078829bc),
OracleEntry(8, 0x40, 0x71, 0xb1), OracleEntry(16, 0xda3b, 0x821b, 0x5c56), OracleEntry(32, 0x8a99e28e, 0xa16daf8e, 0x2c07921c), OracleEntry(64, 0xf0fd090236cd156f, 0xb2828dd6dffe38a5, 0xa37f96d916cb4e14),
OracleEntry(8, 0x7d, 0xaa, 0x27), OracleEntry(16, 0x2cb0, 0xe80b, 0x14bb), OracleEntry(32, 0x41491ca5, 0x10698ef9, 0x51b2ab9e), OracleEntry(64, 0x0d7c0452a656cc4e, 0xf8916d8b06c25bd6, 0x060d71ddad192824),
OracleEntry(8, 0x04, 0xd9, 0xdd), OracleEntry(16, 0xa94d, 0x4f26, 0xf873), OracleEntry(32, 0xd43e3529, 0x50215e66, 0x245f938f), OracleEntry(64, 0x6080204088c69b8c, 0x7dfa4f93888843e2, 0xde7a6fd4114edf6e),
OracleEntry(8, 0xd3, 0xac, 0x7f), OracleEntry(16, 0x14ac, 0x4f23, 0x63cf), OracleEntry(32, 0x2736690b, 0xd07ef240, 0xf7b55b4b), OracleEntry(64, 0xe647b71edcd154ca, 0xeb318119771ced0d, 0xd179383853ee41d7),
OracleEntry(8, 0xda, 0xad, 0x87), OracleEntry(16, 0xb6ee, 0x4008, 0xf6f6), OracleEntry(32, 0x84559f32, 0xd2e90cde, 0x573eac10), OracleEntry(64, 0x95fe7d45035c1641, 0x70586d899571ae0d, 0x0656eace98cdc44e),
OracleEntry(8, 0xd9, 0x47, 0x20), OracleEntry(16, 0x8d36, 0x9497, 0x21cd), OracleEntry(32, 0x4a8e0eb5, 0xaa9f8e8f, 0xf52d9d44), OracleEntry(64, 0x9093d9c3bcc2f2fb, 0xa1a5835615c2033e, 0x32395d19d284f639),
}
},
```
An `OracleEntry` represents an entry in our oracle table. For example, the entry: `OracleEntry(8, 0xab, 0xf4, 0x9f)` is structured as follows:
* `8` is the size in bits of the expression
* `0xab` is the input value of the first variable (e.g: `x`)
* `0xf4` is the input value of the second variable (e.g: `y`)
* `0x9f` is the result value of the `bvadd` operator computation on those input values
It means that if we inject into our black box (the obfuscated expression) `0xab` and `0xfa` into arguments and if the result of the executed black box is `0x9f`, it means that the obfuscated expression might do an `ADD` operation. To be sure, we have to execute different entries. That's why in our oracle table we have multiple entries, with different values, on different sizes, and for all operators.
## Constant synthesis
The engine also supports constant synthesizing. Let's consider, for example, the following expression: `((z << 8) >> 16) << 8`, this expression contains only one variable and can be synthesized as follows: `z & 0xffff00`. To do that, the synthesizer uses the SMT quantifier `forall` and the constraint is expressed as follows: For all entries `z`, there exists a symbolic constant `C` such that `((z << 8) >> 16) << 8 == z <operator> C`. We have to request this constraint to the solver with all operators to find the good one and its constant.
* **Query 1**: `((z << 8) >> 16) << 8 == z & C`
* **Query 2**: `((z << 8) >> 16) << 8 == z ^ C`
* **Query 3**: `((z << 8) >> 16) << 8 == z | C`
* **Query 4**: `((z << 8) >> 16) << 8 == z * C`
* **Query 5**: `((z << 8) >> 16) << 8 == z + C`
* **Query 6**: `((z << 8) >> 16) << 8 == z - C`
* **Query 7**: `((z << 8) >> 16) << 8 == C - z`
Constant synthesis is more relying on SMT reasoning than pure synthesis concepts as it uses SMT solver to solve constraint. However it seemed good to me to add this feature in the synthesis analysis because constant obfuscation is a real thing used in modern software (see examples below).
# How to use the synthesizer
Ok let's talk about examples and how to use the synthesizer. Well, it's pretty simple, you just have to call `ctx.synthesize` on your obfuscated expression and if the synthesis succeed, you have a synthesized expression at return. You can work on standalone expressions as well as from an execution of obfuscated code.
## Working on standalone expressions
The code below deals with standalone expressions. We extracted/crafted our own obfuscated expressions and for each expression we call `ctx.synthesize`.
```python
import sys
from triton import *
# This following constant obfuscation comes from a modern software.
# This expression has been extracted from reverse engineering by ex
# colleagues at Quarkslab several years ago.
def x_xor_92_obfuscated(x):
a = 229 * x + 247
b = 237 * a + 214 + ((38 * a + 85) & 254)
c = (b + ((-(2 * b) + 255) & 254)) * 3 + 77
d = ((86 * c + 36) & 70) * 75 + 231 * c + 118
e = ((58 * d + 175) & 244) + 99 * d + 46
f = (e & 148)
g = (f - (e & 255) + f) * 103 + 13
R = (237 * (45 * g + (174 * g | 34) * 229 + 194 - 247) & 255)
return R
def main():
ctx = TritonContext(ARCH.X86_64)
ast = ctx.getAstContext()
ctx.setAstRepresentationMode(AST_REPRESENTATION.PYTHON)
x = ast.variable(ctx.newSymbolicVariable(8, 'x'))
y = ast.variable(ctx.newSymbolicVariable(8, 'y'))
z = ast.variable(ctx.newSymbolicVariable(32, 'z'))
# Some obfuscated expressions
obf_exprs = [
~x & 0xff,
-~x & 0xff,
(x | y) + y - (~x & y), # x + y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
(x | y) - y + (~x & y), # x ^ y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
(x & ~y) | (~x & y), # x ^ y (from ?)
(x ^ y) + y - (~x & y), # x | y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
-(x | y) + y + x, # x & y (from http://archive.bar/pdfs/bar2020-preprint9.pdf)
((z << 8) >> 16) << 8, # z & 0xffff00 (from https://blog.regehr.org/archives/1636)
(((x ^ y) + 2 * (x & y)) * 39 + 23) * 151 + 111, # x + y (from Ninon Eyrolle's thesis)
x_xor_92_obfuscated(x), # x ^ 92 (from reverse engineering)
]
for expr in obf_exprs:
(print('In: %s' %(expr)) if len(str(expr)) < 100 else print('In: %s ...' %(str(expr)[0:100])))
expr = ctx.synthesize(expr)
print('Out: %s' %(expr))
print()
return 0
if __name__ == '__main__':
sys.exit(main())
```
The result is the following:
```console
$ time python ./example.py
In: ((~(x) & 0xff) & 0xff)
Out: ((0xff - x) & 0xff)
In: ((-((~(x) & 0xff)) & 0xff) & 0xff)
Out: ((x + 0x1) & 0xff)
In: (((((x | y) + y) & 0xff) - ((~(x) & 0xff) & y)) & 0xff)
Out: ((x + y) & 0xff)
In: (((((x | y) - y) & 0xff) + ((~(x) & 0xff) & y)) & 0xff)
Out: (x ^ y)
In: ((x & (~(y) & 0xff)) | ((~(x) & 0xff) & y))
Out: (x ^ y)
In: (((((x ^ y) + y) & 0xff) - ((~(x) & 0xff) & y)) & 0xff)
Out: (x | y)
In: (((((-((x | y)) & 0xff) + y) & 0xff) + x) & 0xff)
Out: (y & x)
In: (((((z << 0x8) & 0xffffffff) >> 0x10) << 0x8) & 0xffffffff)
Out: (z & 0xffff00)
In: (((((((((((x ^ y) + ((0x2 * (x & y)) & 0xff)) & 0xff) * 0x27) & 0xff) + 0x17) & 0xff) * 0x97) & 0xff ...
Out: ((x + y) & 0xff)
In: (((0xed * ((((((((0x2d * ((((((((((((((((((0x3a * (((((((((((0x56 * ((((((((((((0xed * ((((0xe5 * x) ...
Out: (x ^ 0x5c)
python ./example.py 0.22s user 0.01s system 99% cpu 0.234 total
```
## Working on obfuscated trace (emulate the code)
I use Triton a lot of time when doing reverse engineering. I mainly start doing the reverse part and then when some parts of the code need better investment, I use Triton to emulate the piece of code that I'm working on. Thus, I can follow what instructions are executed, what data they use, taint data and follow them, define symbolic variables, asking for constraints, etc. It's mainly like a scriptable Python debugger but with a set of program analysis utilities. For example, let's go back with the constant obfuscation of the `(x ^ 0x5c)` operation from a modern software. You can easily extract the opcodes of the function to work on it. Then, you can define the input of the function as a symbolic variable, emulate the function and synthesize its return.
```python
#!/usr/bin/env python
## -*- coding: utf-8 -*-
import sys
from triton import *
# Extract of the obfuscated function
CODE = b"\x40\x88\xF8\x04\x81\xB1\xFE\x88\x44\x24\xFF\x40\x88\xF8\xF6\xE1"
CODE += b"\x04\xFF\x24\xFE\x8A\x4C\x24\xFF\x00\xC1\x88\xC8\xC0\xE0\x01\x34"
CODE += b"\xFE\x00\xC8\xB1\x03\xF6\xE1\x04\x4D\xB1\x56\x88\x44\x24\xFE\xF6"
CODE += b"\xE1\x04\x24\x24\x46\xB1\x4B\xF6\xE1\xB1\xE7\x8A\x54\x24\xFE\x88"
CODE += b"\x44\x24\xFD\x88\xD0\xF6\xE1\x04\x76\x8A\x4C\x24\xFD\x00\xC8\xB1"
CODE += b"\x3A\x88\x44\x24\xFC\xF6\xE1\x04\xAF\x24\xF4\xB1\x63\x40\x8A\x74"
CODE += b"\x24\xFC\x88\x44\x24\xFB\x40\x88\xF0\xF6\xE1\x04\x2E\x8A\x4C\x24"
CODE += b"\xFB\x00\xC8\x88\xC1\xC0\xE1\x01\x80\xE1\x28\x28\xC1\xB0\x67\x88"
CODE += b"\x44\x24\xFA\x88\xC8\x8A\x4C\x24\xFA\xF6\xE1\x04\x0D\xB1\x2D\x88"
CODE += b"\x44\x24\xF9\xF6\xE1\xB1\xAE\x40\x8A\x7C\x24\xF9\x88\x44\x24\xF8"
CODE += b"\x40\x88\xF8\xF6\xE1\x0C\x22\xB1\xE5\xF6\xE1\x8A\x4C\x24\xF8\x00"
CODE += b"\xC8\xB1\xED\xF6\xE1\x04\xEF\xC3"
# Emulate the code
def emulate(ctx, pc):
while pc:
opcode = ctx.getConcreteMemoryAreaValue(pc, 16)
instruction = Instruction(pc, opcode)
ctx.processing(instruction)
print(instruction)
pc = ctx.getConcreteRegisterValue(ctx.registers.rip)
return
def main():
ctx = TritonContext(ARCH.X86_64)
ctx.setMode(MODE.ALIGNED_MEMORY, True)
ctx.setMode(MODE.CONSTANT_FOLDING, True)
ctx.setMode(MODE.AST_OPTIMIZATIONS, True)
# By reversing the code we know that the function works on DIL
ctx.symbolizeRegister(ctx.registers.dil, "x")
ctx.setConcreteMemoryAreaValue(0x1000, CODE)
emulate(ctx, 0x1000)
# Get the AST at the return of the function
al = ctx.getRegisterAst(ctx.registers.al)
ast = ctx.getAstContext()
# Print the obfuscated expression
print(f"In: {ast.unroll(al)}")
# Print the synthesized expression
print(f"Out: {ctx.synthesize(al)}")
if __name__ == '__main__':
sys.exit(main())
```
The result is the following:
```console
$ python emu.py
0x1000: mov al, dil
0x1003: add al, 0x81
0x1005: mov cl, 0xfe
0x1007: mov byte ptr [rsp - 1], al
0x100b: mov al, dil
0x100e: mul cl
0x1010: add al, 0xff
0x1012: and al, 0xfe
0x1014: mov cl, byte ptr [rsp - 1]
0x1018: add cl, al
0x101a: mov al, cl
0x101c: shl al, 1
0x101f: xor al, 0xfe
0x1021: add al, cl
0x1023: mov cl, 3
0x1025: mul cl
0x1027: add al, 0x4d
0x1029: mov cl, 0x56
0x102b: mov byte ptr [rsp - 2], al
0x102f: mul cl
0x1031: add al, 0x24
0x1033: and al, 0x46
0x1035: mov cl, 0x4b
0x1037: mul cl
0x1039: mov cl, 0xe7
0x103b: mov dl, byte ptr [rsp - 2]
0x103f: mov byte ptr [rsp - 3], al
0x1043: mov al, dl
0x1045: mul cl
0x1047: add al, 0x76
0x1049: mov cl, byte ptr [rsp - 3]
0x104d: add al, cl
0x104f: mov cl, 0x3a
0x1051: mov byte ptr [rsp - 4], al
0x1055: mul cl
0x1057: add al, 0xaf
0x1059: and al, 0xf4
0x105b: mov cl, 0x63
0x105d: mov sil, byte ptr [rsp - 4]
0x1062: mov byte ptr [rsp - 5], al
0x1066: mov al, sil
0x1069: mul cl
0x106b: add al, 0x2e
0x106d: mov cl, byte ptr [rsp - 5]
0x1071: add al, cl
0x1073: mov cl, al
0x1075: shl cl, 1
0x1078: and cl, 0x28
0x107b: sub cl, al
0x107d: mov al, 0x67
0x107f: mov byte ptr [rsp - 6], al
0x1083: mov al, cl
0x1085: mov cl, byte ptr [rsp - 6]
0x1089: mul cl
0x108b: add al, 0xd
0x108d: mov cl, 0x2d
0x108f: mov byte ptr [rsp - 7], al
0x1093: mul cl
0x1095: mov cl, 0xae
0x1097: mov dil, byte ptr [rsp - 7]
0x109c: mov byte ptr [rsp - 8], al
0x10a0: mov al, dil
0x10a3: mul cl
0x10a5: or al, 0x22
0x10a7: mov cl, 0xe5
0x10a9: mul cl
0x10ab: mov cl, byte ptr [rsp - 8]
0x10af: add al, cl
0x10b1: mov cl, 0xed
0x10b3: mul cl
0x10b5: add al, 0xef
0x10b7: ret
In: (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvor ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvsub (b
vand (bvshl (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x
(_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ z
ero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend
8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1
8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8)
)) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bv
add (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bv
add ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ ext
ract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (
_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_
bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv58 16))) (_ bv175 8)) (_ bv244 8))) (_ bv1 8)) (_ bv40 8)) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul (
(_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv2
54 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv1
18 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvan
d (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_
bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd
(bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (
_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (
_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (
bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0
) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv58 16))) (_ bv175 8)) (_ bv244 8))))) (_ bv103 16))
) (_ bv13 8))) (_ bv174 16))) (_ bv34 8))) (_ bv229 16))) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvsub (bvand (bvshl (bvadd (bvadd ((_ extract 7 0) (bvmul ((
_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul
((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv25
4 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8)
(bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand
(bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand
(bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvan
d (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_
bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extra
ct 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (b
vadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16)))))
(_ bv58 16))) (_ bv175 8)) (_ bv244 8))) (_ bv1 8)) (_ bv40 8)) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_
zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ b
v129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract 7 0) (bvmul ((_ zero_extend 8) (b
vand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8)
x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16)
)) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv99 16))) (_ bv46 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (
bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8))
(_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv231 16))) (_ bv118 8)) ((_ extract
7 0) (bvmul ((_ zero_extend 8) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) (bvadd (bvxor (bvshl (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extrac
t 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv255 8)) (_ bv254 8))) (_ bv1 8)) (_ bv254 8)) (bvadd (bvadd x (_ bv129 8)) (bvand (bvadd ((_ extract 7 0) (bvmul ((_ zero_extend 8) x) (_ bv254 16))) (_ bv2
55 8)) (_ bv254 8))))) (_ bv3 16))) (_ bv77 8))) (_ bv86 16))) (_ bv36 8)) (_ bv70 8))) (_ bv75 16))))) (_ bv58 16))) (_ bv175 8)) (_ bv244 8))))) (_ bv103 16))) (_ bv13 8))) (_ bv45 16))))) (_ bv237 16))) (_ bv2
39 8))
Out: (bvxor x (_ bv92 8))
```
As you can see, the result of the synthesis is: `(bvxor x (_ bv92 8))` (SMT syntax). If you prefer, you can set the Python syntax like below:
```python
>>> ctx.setAstRepresentationMode(AST_REPRESENTATION.PYTHON)
>>> print(f"Out: {ctx.synthesize(al)}")
Out: (x ^ 0x5c)
```
If you do not want to work on big expression at the end of the execution, you can also define a simplification callback that will be called each time an AST is assigned to a register or a memory cell during the execution (see below). Thus, you can perform a synthesis before each assignment. In other words, you synthesize the expression on the fly.
```python
def my_cb(ctx, node):
synth = ctx.synthesize(node, constant=True)
if synth:
return synth
return node
ctx = TritonContext(ARCH.X86_64)
ctx.addCallback(CALLBACK.SYMBOLIC_SIMPLIFICATION, my_cb)
```
## Into IDA
You can also use IDA and its API to extract opcodes and directly print results in the IDA console. For example, an IDA script could be like this:
```python
#!/usr/bin/env python3
## -*- coding: utf-8 -*-
import ida_funcs
import ida_kernwin
import ida_gdl
import ida_bytes
from triton import *
if __name__ == '__main__':
# Analyse all BB of the function
func = ida_funcs.get_func(ida_kernwin.get_screen_ea())
name = ida_funcs.get_func_name(func.start_ea)
bb = ida_gdl.FlowChart(func)[0]
pc = bb.start_ea
ctx = TritonContext(ARCH.X86_64)
ctx.symbolizeRegister(ctx.registers.dil, 'dil')
ctx.setAstRepresentationMode(AST_REPRESENTATION.PYTHON)
print(f"[+] Analyzing basic block at 0x{pc:x}")
while pc != 0:
opcode = idc.get_bytes(pc, 16)
inst = Instruction(pc, opcode)
ctx.processing(inst)
pc = ctx.getSymbolicRegisterValue(ctx.registers.rip)
al = ctx.getRegisterAst(ctx.registers.al)
print(f'Synthesis: {ctx.synthesize(al)}')
```
It provides the following result:

# Conclusion
We introduced a new engine which aims to synthesize expressions. It currently do constant synthesizing and two variables with one operator synthesizing. Synthesis is applied on root node and we do not yet go through the DAG to synthesize children branches. We let this job for the future. However, you can applied synthesis during the execution which synthesizes nodes at the construction which is pretty similar than going through the DAG when the full expression is built. In the future, oracle table may grow to support multiple operators and variables.
# Bibliography
[01] Surreptitious Software: Obfuscation, Watermarking, and Tamperproofing for Software Protection (book)
[02] https://github.com/JonathanSalwan/Tigress_protection
[03] http://shell-storm.org/talks/DIMVA2018-deobfuscation-salwan-bardin-potet.pdf
[04] http://shell-storm.org/talks/SSTIC2017_Deobfuscation_of_VM_based_software_protection.pdf
[05] http://shell-storm.org/talks/csaw2016-sos-rthomas-jsalwan.pdf
[06] http://shell-storm.org/talks/sthack2016-rthomas-jsalwan.pdf
[07] https://tel.archives-ouvertes.fr/tel-01623849/document
[08] https://www.usenix.org/conference/usenixsecurity17/technical-sessions/presentation/blazytko
[09] https://github.com/mrphrazer/msynth
[10] https://www.ndss-symposium.org/wp-content/uploads/2020/04/bar2020-23009.pdf | non_main | introduction to a new engine synthesizing obfuscated expressions introduction software are getting more and more protected against reverse engineering several software protections exist in the past we already attacked some of these protections with triton using symbolic and taint analysis some software protections like mixed boolean arithmetic expression mba transform simple operation into a more complicated one by mixing arithmetic operators e g add sub mul with bit wise operators e g and or xor rol for example x y x y y x y x y x y y x y x y x y x y x y x y y x y x y x y y x in this contribution we introduce a new engine which lay the foundation of expression synthesis and aims to attack such protections synthesis is a well known analysis when reversing obfuscated expressions and tool like qsynth already relies on triton for its analysis that s why i thought it will be nice if we can add some program synthesis concepts in triton the engine and its components we have added the engine synthesizer into a new namespace triton engines synthesis and a new method has been added into the api to synthesize expressions the engine is almost standalone it only relies on the symbolic engine to create new symbolic variables but does not alters the symbolic state of your triton context cpp triton engines synthesis synthesisresult api synthesize const triton ast sharedabstractnode node bool constant this checksymbolic triton engines synthesis synthesizer synth this symbolic return synth synthesize node constant the synthesisresult object contains the input ast the obfuscated one the output ast the synthesized one the time in milliseconds of the analysis and a flag success which is true if the input ast has been synthesized cpp class synthesisresult public const triton ast sharedabstractnode getinput void const triton ast sharedabstractnode getoutput void triton usize gettime void bool successful void oracle table with two variables program synthesis uses an oracle table to determine the behavior of obfuscated expressions we consider the target as a black box and by seeing the result of a given input we can determine what the black box does our oracle table is located in triton engines synthesis oracletable and contains several entries all these entries are used for analyzing an expression that contains two variables and one operator for example these following entries are used to synthesize a bvadd node cpp bvadd synthesis triton ast bvadd node oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry oracleentry an oracleentry represents an entry in our oracle table for example the entry oracleentry is structured as follows is the size in bits of the expression is the input value of the first variable e g x is the input value of the second variable e g y is the result value of the bvadd operator computation on those input values it means that if we inject into our black box the obfuscated expression and into arguments and if the result of the executed black box is it means that the obfuscated expression might do an add operation to be sure we have to execute different entries that s why in our oracle table we have multiple entries with different values on different sizes and for all operators constant synthesis the engine also supports constant synthesizing let s consider for example the following expression z c we have to request this constraint to the solver with all operators to find the good one and its constant query z z c query z z c query z z c query z z c query z z c query z z c query z c z constant synthesis is more relying on smt reasoning than pure synthesis concepts as it uses smt solver to solve constraint however it seemed good to me to add this feature in the synthesis analysis because constant obfuscation is a real thing used in modern software see examples below how to use the synthesizer ok let s talk about examples and how to use the synthesizer well it s pretty simple you just have to call ctx synthesize on your obfuscated expression and if the synthesis succeed you have a synthesized expression at return you can work on standalone expressions as well as from an execution of obfuscated code working on standalone expressions the code below deals with standalone expressions we extracted crafted our own obfuscated expressions and for each expression we call ctx synthesize python import sys from triton import this following constant obfuscation comes from a modern software this expression has been extracted from reverse engineering by ex colleagues at quarkslab several years ago def x xor obfuscated x a x b a a c b b d c c e d d f e g f e f r g g return r def main ctx tritoncontext arch ast ctx getastcontext ctx setastrepresentationmode ast representation python x ast variable ctx newsymbolicvariable x y ast variable ctx newsymbolicvariable y z ast variable ctx newsymbolicvariable z some obfuscated expressions obf exprs x x x y y x y x y from x y y x y x y from x y x y x y from x y y x y x y from x y y x x y from z z from x y x y x y from ninon eyrolle s thesis x xor obfuscated x x from reverse engineering for expr in obf exprs print in s expr if len str expr else print in s str expr expr ctx synthesize expr print out s expr print return if name main sys exit main the result is the following console time python example py in x out x in x out x in x y y x y out x y in x y y x y out x y in x y x y out x y in x y y x y out x y in x y y x out y x in z out z in x y x y out x y in x out x python example py user system cpu total working on obfuscated trace emulate the code i use triton a lot of time when doing reverse engineering i mainly start doing the reverse part and then when some parts of the code need better investment i use triton to emulate the piece of code that i m working on thus i can follow what instructions are executed what data they use taint data and follow them define symbolic variables asking for constraints etc it s mainly like a scriptable python debugger but with a set of program analysis utilities for example let s go back with the constant obfuscation of the x operation from a modern software you can easily extract the opcodes of the function to work on it then you can define the input of the function as a symbolic variable emulate the function and synthesize its return python usr bin env python coding utf import sys from triton import extract of the obfuscated function code b xfe xff code b xff xfe xff code b xfe xfe code b xfe code b xfd xfd code b xfc xaf code b xfc xfb code b xfb code b xfa xfa code b xae code b code b xed xef emulate the code def emulate ctx pc while pc opcode ctx getconcretememoryareavalue pc instruction instruction pc opcode ctx processing instruction print instruction pc ctx getconcreteregistervalue ctx registers rip return def main ctx tritoncontext arch ctx setmode mode aligned memory true ctx setmode mode constant folding true ctx setmode mode ast optimizations true by reversing the code we know that the function works on dil ctx symbolizeregister ctx registers dil x ctx setconcretememoryareavalue code emulate ctx get the ast at the return of the function al ctx getregisterast ctx registers al ast ctx getastcontext print the obfuscated expression print f in ast unroll al print the synthesized expression print f out ctx synthesize al if name main sys exit main the result is the following console python emu py mov al dil add al mov cl mov byte ptr al mov al dil mul cl add al and al mov cl byte ptr add cl al mov al cl shl al xor al add al cl mov cl mul cl add al mov cl mov byte ptr al mul cl add al and al mov cl mul cl mov cl mov dl byte ptr mov byte ptr al mov al dl mul cl add al mov cl byte ptr add al cl mov cl mov byte ptr al mul cl add al and al mov cl mov sil byte ptr mov byte ptr al mov al sil mul cl add al mov cl byte ptr add al cl mov cl al shl cl and cl sub cl al mov al mov byte ptr al mov al cl mov cl byte ptr mul cl add al mov cl mov byte ptr al mul cl mov cl mov dil byte ptr mov byte ptr al mov al dil mul cl or al mov cl mul cl mov cl byte ptr add al cl mov cl mul cl add al ret in bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvor extract bvmul zero extend bvadd extract bvmul zero extend bvsub b vand bvshl bvadd bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul z ero extend x extract bvmul zero extend bvand bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x bvand bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bv add bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bv add extract bvmul zero extend x extract bvmul zero extend bvand bvadd ext ract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x extract bvmul zero extend bvand bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvan d bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x bvand bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x extract bvmul zero extend bvand bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x extract bvmul zero extend bvadd extract bvmul zero extend bvsub bvand bvshl bvadd bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x extract bvmul zero extend bvand bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x bvand bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvan d bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x extract bvmul zero extend bvand bvadd extract bvmul zero extend bvadd extra ct bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x b vadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x b bvand bvadd extract bvmul zero extend x extract bvmul zero extend b vand bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x bvand bvadd extract bvmul zero extend bvadd bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extract bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x extract bvmul zero extend bvand bvadd extract bvmul zero extend bvadd extract bvmul zero extend bvadd bvxor bvshl bvadd bvadd x bvand bvadd extrac t bvmul zero extend x bvadd bvadd x bvand bvadd extract bvmul zero extend x out bvxor x as you can see the result of the synthesis is bvxor x smt syntax if you prefer you can set the python syntax like below python ctx setastrepresentationmode ast representation python print f out ctx synthesize al out x if you do not want to work on big expression at the end of the execution you can also define a simplification callback that will be called each time an ast is assigned to a register or a memory cell during the execution see below thus you can perform a synthesis before each assignment in other words you synthesize the expression on the fly python def my cb ctx node synth ctx synthesize node constant true if synth return synth return node ctx tritoncontext arch ctx addcallback callback symbolic simplification my cb into ida you can also use ida and its api to extract opcodes and directly print results in the ida console for example an ida script could be like this python usr bin env coding utf import ida funcs import ida kernwin import ida gdl import ida bytes from triton import if name main analyse all bb of the function func ida funcs get func ida kernwin get screen ea name ida funcs get func name func start ea bb ida gdl flowchart func pc bb start ea ctx tritoncontext arch ctx symbolizeregister ctx registers dil dil ctx setastrepresentationmode ast representation python print f analyzing basic block at pc x while pc opcode idc get bytes pc inst instruction pc opcode ctx processing inst pc ctx getsymbolicregistervalue ctx registers rip al ctx getregisterast ctx registers al print f synthesis ctx synthesize al it provides the following result conclusion we introduced a new engine which aims to synthesize expressions it currently do constant synthesizing and two variables with one operator synthesizing synthesis is applied on root node and we do not yet go through the dag to synthesize children branches we let this job for the future however you can applied synthesis during the execution which synthesizes nodes at the construction which is pretty similar than going through the dag when the full expression is built in the future oracle table may grow to support multiple operators and variables bibliography surreptitious software obfuscation watermarking and tamperproofing for software protection book | 0 |
43,162 | 23,136,193,205 | IssuesEvent | 2022-07-28 14:30:35 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | opened | Dispatcher.Invoke() slows down Parallel.For performances on .NET 6 | tenet-performance | ### Description
When an Invoke() is called to update a UI object in the handler of a Threading.Timer, the execution time of a simple Parallel.For drastically increase. It takes about 2 seconds on simple operations that could be executed in a few milliseconds.
Here a small WPF sample to reproduce the issue:
```xaml
<Window x:Class="WpfAppNetCore.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfAppNetCore"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Label Name="Label1" Content="Label" HorizontalAlignment="Left" Margin="356,0,0,0" VerticalAlignment="Center"/>
</Grid>
</Window>
```
```csharp
public partial class MainWindow : Window
{
private System.Threading.Timer timer;
private int count = 0;
public MainWindow()
{
InitializeComponent();
}
protected override void OnContentRendered(EventArgs e)
{
timer = new Timer(TimerHandler, null, 0, 20);
for (int i = 0; i < 100; i++)
{
Stopwatch sw = Stopwatch.StartNew();
Parallel.For(0, 10, i =>
{
Thread.Sleep(1); // do some stuff
});
sw.Stop();
Debug.WriteLine("elapsed time: " + sw.ElapsedMilliseconds);
}
base.OnContentRendered(e);
}
public void TimerHandler(Object stateInfo)
{
count++;
Dispatcher.Invoke(() =>
{
Label1.Content = count;
});
}
}
```
### Configuration
.NET 6
Windows 11 version 21H2
### Regression?
The same application on .NET Framework doesn't produce so bad performance, the Parallel.For take about 150ms
### Data
Debug output on .NET 6:
```
elapsed time: 58
elapsed time: 16
elapsed time: 13
elapsed time: 19
elapsed time: 9
elapsed time: 2
elapsed time: 8
elapsed time: 12
elapsed time: 13
elapsed time: 13
elapsed time: 14
elapsed time: 13
elapsed time: 29
elapsed time: 27
elapsed time: 20
elapsed time: 20
elapsed time: 29
elapsed time: 44
elapsed time: 1620
elapsed time: 2037
elapsed time: 2032
elapsed time: 2031
elapsed time: 2011
elapsed time: 2020
elapsed time: 2019
```
| True | Dispatcher.Invoke() slows down Parallel.For performances on .NET 6 - ### Description
When an Invoke() is called to update a UI object in the handler of a Threading.Timer, the execution time of a simple Parallel.For drastically increase. It takes about 2 seconds on simple operations that could be executed in a few milliseconds.
Here a small WPF sample to reproduce the issue:
```xaml
<Window x:Class="WpfAppNetCore.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfAppNetCore"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Label Name="Label1" Content="Label" HorizontalAlignment="Left" Margin="356,0,0,0" VerticalAlignment="Center"/>
</Grid>
</Window>
```
```csharp
public partial class MainWindow : Window
{
private System.Threading.Timer timer;
private int count = 0;
public MainWindow()
{
InitializeComponent();
}
protected override void OnContentRendered(EventArgs e)
{
timer = new Timer(TimerHandler, null, 0, 20);
for (int i = 0; i < 100; i++)
{
Stopwatch sw = Stopwatch.StartNew();
Parallel.For(0, 10, i =>
{
Thread.Sleep(1); // do some stuff
});
sw.Stop();
Debug.WriteLine("elapsed time: " + sw.ElapsedMilliseconds);
}
base.OnContentRendered(e);
}
public void TimerHandler(Object stateInfo)
{
count++;
Dispatcher.Invoke(() =>
{
Label1.Content = count;
});
}
}
```
### Configuration
.NET 6
Windows 11 version 21H2
### Regression?
The same application on .NET Framework doesn't produce so bad performance, the Parallel.For take about 150ms
### Data
Debug output on .NET 6:
```
elapsed time: 58
elapsed time: 16
elapsed time: 13
elapsed time: 19
elapsed time: 9
elapsed time: 2
elapsed time: 8
elapsed time: 12
elapsed time: 13
elapsed time: 13
elapsed time: 14
elapsed time: 13
elapsed time: 29
elapsed time: 27
elapsed time: 20
elapsed time: 20
elapsed time: 29
elapsed time: 44
elapsed time: 1620
elapsed time: 2037
elapsed time: 2032
elapsed time: 2031
elapsed time: 2011
elapsed time: 2020
elapsed time: 2019
```
| non_main | dispatcher invoke slows down parallel for performances on net description when an invoke is called to update a ui object in the handler of a threading timer the execution time of a simple parallel for drastically increase it takes about seconds on simple operations that could be executed in a few milliseconds here a small wpf sample to reproduce the issue xaml window x class wpfappnetcore mainwindow xmlns xmlns x xmlns d xmlns mc xmlns local clr namespace wpfappnetcore mc ignorable d title mainwindow height width csharp public partial class mainwindow window private system threading timer timer private int count public mainwindow initializecomponent protected override void oncontentrendered eventargs e timer new timer timerhandler null for int i i i stopwatch sw stopwatch startnew parallel for i thread sleep do some stuff sw stop debug writeline elapsed time sw elapsedmilliseconds base oncontentrendered e public void timerhandler object stateinfo count dispatcher invoke content count configuration net windows version regression the same application on net framework doesn t produce so bad performance the parallel for take about data debug output on net elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time elapsed time | 0 |
337,389 | 10,217,212,432 | IssuesEvent | 2019-08-15 13:05:31 | antoinecarme/pyaf | https://api.github.com/repos/antoinecarme/pyaf | closed | FileNotFoundError: [WinError 2] "dot" not found in path. | class:devops priority:high status:in_progress | 1) I am getting the following error, "FileNotFoundError: [WinError 2] "dot" not found in path.", when running PyAF_Hierarchical_FrenchWineExportation.ipynb
The cell:
# create a model to plot the hierarchy.
import pyaf.HierarchicalForecastEngine as hautof
lEngine = hautof.cHierarchicalForecastEngine()
lSignalHierarchy = lEngine.plot_Hierarchy(French_Wine_Export_in_Euros_DF , "Month", "Signal", 1,
lHierarchy, None);
The output:
INFO:pyaf.std:START_HIERARCHICAL_PLOTTING
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in create(self, prog, format, encoding)
1914 arguments=arguments,
-> 1915 working_dir=tmp_dir,
1916 )
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in call_graphviz(program, arguments, working_dir, **kwargs)
135 stdout=subprocess.PIPE,
--> 136 **kwargs
137 )
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors)
708 errread, errwrite,
--> 709 restore_signals, start_new_session)
710 except:
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, unused_restore_signals, unused_start_new_session)
996 os.fspath(cwd) if cwd is not None else None,
--> 997 startupinfo)
998 finally:
FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
FileNotFoundError Traceback (most recent call last)
<ipython-input-19-c716ad2dbe2f> in <module>
5
6 lSignalHierarchy = lEngine.plot_Hierarchy(French_Wine_Export_in_Euros_DF , "Month", "Signal", 1,
----> 7 lHierarchy, None);
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pyaf\HierarchicalForecastEngine.py in plot_Hierarchy(self, iInputDS, iTime, iSignal, iHorizon, iHierarchy, iExogenousData)
86 lSignalHierarchy = self.create_signal_hierarchy(iInputDS, iTime, iSignal, iHorizon, iHierarchy, iExogenousData);
87 lSignalHierarchy.create_HierarchicalStructure();
---> 88 lSignalHierarchy.plot();
89 return lSignalHierarchy;
90
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pyaf\TS\SignalHierarchy.py in plot(self, name)
215 lProp = self.mAvgHistProp[signal][col1] * 100;
216 lAnnotations[str(signal) +"_" + col1] = ('%2.2f %%' % lProp)
--> 217 tsplot.plot_hierarchy(self.mStructure, lAnnotations, name)
218 lPlotTime = time.time() - start_time;
219 logger.info("END_HIERARCHICAL_PLOTTING_TIME_IN_SECONDS " + str(lPlotTime))
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pyaf\TS\Plots.py in plot_hierarchy(structure, iAnnotations, name)
235 else:
236 from IPython.display import Image, display
--> 237 plot1 = Image(graph.create_png())
238 display(plot1)
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in new_method(f, prog, encoding)
1721 """Refer to docstring of method `create`."""
1722 return self.create(
-> 1723 format=f, prog=prog, encoding=encoding)
1724 name = 'create_{fmt}'.format(fmt=frmt)
1725 self.__setattr__(name, new_method)
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in create(self, prog, format, encoding)
1920 args[1] = '"{prog}" not found in path.'.format(
1921 prog=prog)
-> 1922 raise OSError(*args)
1923 else:
1924 raise
FileNotFoundError: [WinError 2] "dot" not found in path.
## Output of script https://github.com/antoinecarme/pyaf/blob/master/tests/basic_checks/platform_info.py:
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('Cython_version', '0.29.4')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('keras_version', 'NOT_INSTALLED')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('matplotlib_version', '3.1.0')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('numpy_version', '1.16.4')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('pandas_version', '0.24.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('pip_version', '19.0.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('pydot_version', '1.4.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('python_implementation', 'CPython')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('python_version', '3.6.6')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('scipy_version', '1.1.0')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('setuptools_version', '41.0.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('sklearn_version', '0.20.2')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('sqlalchemy_version', '1.2.18')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('system_platform', 'Windows-10-10.0.17134-SP0')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('system_processor', 'Intel64 Family 6 Model 94 Stepping 3, GenuineIntel')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('system_uname', uname_result(system='Windows', node='XPS-VHP', release='10', version='10.0.17134', machine='AMD64', processor='Intel64 Family 6 Model 94 Stepping 3, GenuineIntel'))
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('xgboost_version', '0.82')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ALLUSERSPROFILE', 'C:\\ProgramData')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ANDROID_HOME', 'C:\\Users\\vhphan\\AppData\\Local\\Android\\Sdk')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('APPDATA', 'C:\\Users\\vhphan\\AppData\\Roaming')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CFLAGS', ' -MD -GL')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CHOCOLATEYINSTALL', 'C:\\ProgramData\\chocolatey')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CHOCOLATEYLASTPATHUPDATE', 'Mon Sep 11 23:39:51 2017')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CLICOLOR', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CMAKE_GENERATOR', 'Visual Studio 14 2015 Win64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMANDPROMPTTYPE', 'Native')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMONPROGRAMFILES', 'C:\\Program Files\\Common Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMONPROGRAMFILES(X86)', 'C:\\Program Files (x86)\\Common Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMONPROGRAMW6432', 'C:\\Program Files\\Common Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMPUTERNAME', 'XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMSPEC', 'C:\\WINDOWS\\system32\\cmd.exe')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_DEFAULT_ENV', 'ds2_clone')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_EXE', 'C:\\ProgramData\\Anaconda3\\Scripts\\conda.exe')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PREFIX', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PREFIX_1', 'C:\\ProgramData\\Anaconda3')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PROMPT_MODIFIER', '(ds2_clone) ')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PYTHON_EXE', 'C:\\ProgramData\\Anaconda3\\python.exe')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_SHLVL', '2')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CURDIR', 'C:\\Program Files (x86)\\Microsoft Visual C++ Build Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CURRENTDIR', 'C:\\Users\\vhphan\\PycharmProjects\\misc')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CXXFLAGS', ' -MD -GL')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('DISTUTILS_USE_SDK', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('DRIVERDATA', 'C:\\Windows\\System32\\Drivers\\DriverData')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FOLDER', 'x86')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FPS_BROWSER_APP_PROFILE_STRING', 'Internet Explorer')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FPS_BROWSER_USER_PROFILE_STRING', 'Default')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKDIR', 'C:\\WINDOWS\\Microsoft.NET\\Framework64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKDIR64', 'C:\\WINDOWS\\Microsoft.NET\\Framework64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKVERSION', 'v4.0.30319')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKVERSION64', 'v4.0.30319')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GDAL_DATA', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\share\\gdal')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GEOTIFF_CSV', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\share\\epsg_csv')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GIT_PAGER', 'cat')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GYP_MSVS_VERSION', '2015')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('HOMEDRIVE', 'C:')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('HOMEPATH', '\\Users\\vhphan')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('INCLUDE', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\INCLUDE;C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.10240.0\\ucrt;C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.6.1\\include\\um;C:\\Program Files (x86)\\Windows Kits\\8.1\\include\\shared;C:\\Program Files (x86)\\Windows Kits\\8.1\\include\\um;C:\\Program Files (x86)\\Windows Kits\\8.1\\include\\winrt;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('IPY_INTERRUPT_EVENT', '2992')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('JPY_INTERRUPT_EVENT', '2992')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('JPY_PARENT_PID', '3012')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LDFLAGS_SHARED', ' -LTCG ucrt.lib')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LIB', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\LIB\\amd64;C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.10240.0\\ucrt\\x64;C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.6.1\\lib\\um\\x64;C:\\Program Files (x86)\\Windows Kits\\8.1\\lib\\winv6.3\\um\\x64;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LIBPATH', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\LIB\\amd64;C:\\WINDOWS\\Microsoft.NET\\Framework64\\v4.0.30319;C:\\WINDOWS\\Microsoft.NET\\Framework64\\;References\\CommonConfiguration\\Neutral;\\Microsoft.VCLibs\\14.0\\References\\CommonConfiguration\\neutral;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LOCALAPPDATA', 'C:\\Users\\vhphan\\AppData\\Local')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LOGONSERVER', '\\\\XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MKL_THREADING_LAYER', 'GNU')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MOZ_PLUGIN_PATH', 'C:\\Program Files (x86)\\Foxit Software\\Foxit Reader\\plugins\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MPLBACKEND', 'module://ipykernel.pylab.backend_inline')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MSSDK', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MSYS2_ARG_CONV_EXCL', '/AI;/AL;/OUT;/out')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MSYS2_ENV_CONV_EXCL', 'CL')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('NETFXSDKDIR', 'C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.6.1\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('NUMBER_OF_PROCESSORS', '8')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ONEDRIVE', 'C:\\Users\\vhphan\\OneDrive')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ONEDRIVECONSUMER', 'C:\\Users\\vhphan\\OneDrive')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('OS', 'Windows_NT')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PAGER', 'cat')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PATH', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\bin;C:\\Program Files (x86)\\MSBuild\\14.0\\bin\\amd64;C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\amd64;C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\VCPackages;C:\\WINDOWS\\Microsoft.NET\\Framework64\\v4.0.30319;C:\\WINDOWS\\Microsoft.NET\\Framework64\\;C:\\Program Files (x86)\\Windows Kits\\8.1\\bin\\x64;C:\\Program Files (x86)\\Windows Kits\\8.1\\bin\\x86;C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.6.1 Tools\\x64\\;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\mingw-w64\\bin;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\usr\\bin;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\bin;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Scripts;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\bin;C:\\ProgramData\\Anaconda3\\condabin;C:\\ProgramData\\Oracle\\Java\\javapath;C:\\Program Files\\Dell\\DW WLAN Card;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0;C:\\Program Files\\WIDCOMM\\Bluetooth Software;C:\\Program Files\\WIDCOMM\\Bluetooth Software\\syswow64;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\wamp\\bin\\php\\php5.6.19;C:\\ProgramData\\ComposerSetup\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn;C:\\Program Files (x86)\\Google\\Google Apps Sync;C:\\Program Files (x86)\\Google\\Google Apps Migration;C:\\Program Files\\PuTTY;C:\\Program Files\\Git\\cmd;C:\\ProgramData\\chocolatey\\bin;C:\\ProgramData\\Anaconda3;C:\\Program Files (x86)\\Google\\Cloud SDK\\google-cloud-sdk\\bin;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\PostgreSQL\\10\\bin;C:\\ProgramData\\Anaconda3\\Lib\\site-packages\\osgeo;C:\\Program Files\\Google\\Google Apps Sync;C:\\Program Files\\Google\\Google Apps Migration;C:\\Program Files (x86)\\Graphviz2.38\\bin;C:\\ProgramData\\Anaconda3\\Library\\bin;C:\\Program Files\\nodejs;C:\\Program Files (x86)\\WinRAR;C:\\Program Files (x86)\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files (x86)\\Google\\Chrome\\Application;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v9.0\\bin;C:\\Users\\vhphan\\AppData\\Local\\JSONBuddy;C:\\Users\\vhphan\\AppData\\Roaming\\Composer\\vendor\\bin;C:\\Users\\vhphan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Program Files\\Heroku\\bin;C:\\Users\\vhphan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\vhphan\\Downloads\\VSCode-win32-x64-1.14.2\\bin;C:\\wamp\\bin\\php\\php7.0.4;C:\\Users\\vhphan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\OSGeo4W64\\bin;C:\\Users\\vhphan\\ogr2ogr\\bin\\gdal;C:\\Users\\vhphan\\ogr2ogr\\bin\\gdal-data;C:\\ProgramData\\Anaconda3\\Scripts;C:\\Program Files (x86)\\Graphviz2.38\\bin;C:\\ProgramData\\Anaconda3\\Library\\bin;C:\\Users\\vhphan\\AppData\\Roaming\\npm;C:\\Program Files (x86)\\WinRAR;C:\\Program Files\\JetBrains\\PhpStorm 2019.1.1\\bin;.;C:\\Program Files\\JetBrains\\PyCharm 2019.1.2\\bin;.;C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v9.0\\bin;.;C:\\ProgramData\\Anaconda3\\lib\\site-packages\\pywin32_system32;C:\\ProgramData\\Anaconda3\\lib\\site-packages\\pywin32_system32;c:\\programdata\\anaconda3\\lib\\site-packages\\pywin32_system32;c:\\programdata\\anaconda3\\lib\\site-packages\\pywin32_system32;C:\\ProgramData\\Anaconda3\\lib\\site-packages\\pywin32_system32;C:\\Program Files (x86)\\Windows Kits\\10\\bin\\\\x86;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\lib\\site-packages\\numpy\\.libs')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PATHEXT', '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PHPSTORM', 'C:\\Program Files\\JetBrains\\PhpStorm 2019.1.1\\bin;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PLATFORM', 'X64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('POSTGIS_ENABLE_OUTDB_RASTERS', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('POSTGIS_GDAL_ENABLED_DRIVERS', 'GTiff PNG JPEG GIF XYZ DTED USGSDEM AAIGrid')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_ARCHITECTURE', 'AMD64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_IDENTIFIER', 'Intel64 Family 6 Model 94 Stepping 3, GenuineIntel')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_LEVEL', '6')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_REVISION', '5e03')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMDATA', 'C:\\ProgramData')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMFILES', 'C:\\Program Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMFILES(X86)', 'C:\\Program Files (x86)')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMW6432', 'C:\\Program Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROJ_LIB', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\share')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROMPT', '(ds2_clone) $P$G')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PSMODULEPATH', 'C:\\Program Files (x86)\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Google\\Cloud SDK\\google-cloud-sdk\\platform\\PowerShell')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PUBLIC', 'C:\\Users\\Public')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PYCHARM', 'C:\\Program Files\\JetBrains\\PyCharm 2019.1.2\\bin;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PYTHON', 'C:\\ProgramData\\Anaconda3\\python.EXE')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PY_VCRUNTIME_REDIST', '\\vcruntime140.dll')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('SESSIONNAME', 'Console')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('SYSTEMDRIVE', 'C:')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('SYSTEMROOT', 'C:\\WINDOWS')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('TEMP', 'C:\\Users\\vhphan\\AppData\\Local\\Temp')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('TERM', 'xterm-color')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('TMP', 'C:\\Users\\vhphan\\AppData\\Local\\Temp')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('UCRTCONTENTROOT', 'C:\\Program Files (x86)\\Windows Kits\\10\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('UCRTVERSION', '10.0.10240.0')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('UNIVERSALCRTSDKDIR', 'C:\\Program Files (x86)\\Windows Kits\\10\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERDOMAIN', 'XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERDOMAIN_ROAMINGPROFILE', 'XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERNAME', 'vhphan')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERPROFILE', 'C:\\Users\\vhphan')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VBOX_MSI_INSTALL_PATH', 'C:\\Program Files\\Oracle\\VirtualBox\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VCINSTALLDIR', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VCTARGETSPATH', 'C:\\Program Files (x86)\\MSBuild\\Microsoft.Cpp\\v4.0\\V140\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS140COMNTOOLS', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VSINSTALLDIR', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VSREGKEY', 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\VisualStudio\\14.0')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS_MAJOR', '14')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS_VERSION', '14.0')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS_YEAR', '2015')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WIN', '10')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDIR', 'C:\\WINDOWS')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSLIBPATH', 'References\\CommonConfiguration\\Neutral')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDKDIR', 'C:\\Program Files (x86)\\Windows Kits\\8.1\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDKLIBVERSION', 'winv6.3\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDK_EXECUTABLEPATH_X64', 'C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.6.1 Tools\\x64\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDK_EXECUTABLEPATH_X86', 'C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.6.1 Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('_CONDA_SET_GDAL_DATA', 'C:\\Program Files\\PostgreSQL\\10\\gdal-data')
| 1.0 | FileNotFoundError: [WinError 2] "dot" not found in path. - 1) I am getting the following error, "FileNotFoundError: [WinError 2] "dot" not found in path.", when running PyAF_Hierarchical_FrenchWineExportation.ipynb
The cell:
# create a model to plot the hierarchy.
import pyaf.HierarchicalForecastEngine as hautof
lEngine = hautof.cHierarchicalForecastEngine()
lSignalHierarchy = lEngine.plot_Hierarchy(French_Wine_Export_in_Euros_DF , "Month", "Signal", 1,
lHierarchy, None);
The output:
INFO:pyaf.std:START_HIERARCHICAL_PLOTTING
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in create(self, prog, format, encoding)
1914 arguments=arguments,
-> 1915 working_dir=tmp_dir,
1916 )
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in call_graphviz(program, arguments, working_dir, **kwargs)
135 stdout=subprocess.PIPE,
--> 136 **kwargs
137 )
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors)
708 errread, errwrite,
--> 709 restore_signals, start_new_session)
710 except:
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, unused_restore_signals, unused_start_new_session)
996 os.fspath(cwd) if cwd is not None else None,
--> 997 startupinfo)
998 finally:
FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
FileNotFoundError Traceback (most recent call last)
<ipython-input-19-c716ad2dbe2f> in <module>
5
6 lSignalHierarchy = lEngine.plot_Hierarchy(French_Wine_Export_in_Euros_DF , "Month", "Signal", 1,
----> 7 lHierarchy, None);
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pyaf\HierarchicalForecastEngine.py in plot_Hierarchy(self, iInputDS, iTime, iSignal, iHorizon, iHierarchy, iExogenousData)
86 lSignalHierarchy = self.create_signal_hierarchy(iInputDS, iTime, iSignal, iHorizon, iHierarchy, iExogenousData);
87 lSignalHierarchy.create_HierarchicalStructure();
---> 88 lSignalHierarchy.plot();
89 return lSignalHierarchy;
90
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pyaf\TS\SignalHierarchy.py in plot(self, name)
215 lProp = self.mAvgHistProp[signal][col1] * 100;
216 lAnnotations[str(signal) +"_" + col1] = ('%2.2f %%' % lProp)
--> 217 tsplot.plot_hierarchy(self.mStructure, lAnnotations, name)
218 lPlotTime = time.time() - start_time;
219 logger.info("END_HIERARCHICAL_PLOTTING_TIME_IN_SECONDS " + str(lPlotTime))
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pyaf\TS\Plots.py in plot_hierarchy(structure, iAnnotations, name)
235 else:
236 from IPython.display import Image, display
--> 237 plot1 = Image(graph.create_png())
238 display(plot1)
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in new_method(f, prog, encoding)
1721 """Refer to docstring of method `create`."""
1722 return self.create(
-> 1723 format=f, prog=prog, encoding=encoding)
1724 name = 'create_{fmt}'.format(fmt=frmt)
1725 self.__setattr__(name, new_method)
C:\ProgramData\Anaconda3\envs\ds2_clone\lib\site-packages\pydot.py in create(self, prog, format, encoding)
1920 args[1] = '"{prog}" not found in path.'.format(
1921 prog=prog)
-> 1922 raise OSError(*args)
1923 else:
1924 raise
FileNotFoundError: [WinError 2] "dot" not found in path.
## Output of script https://github.com/antoinecarme/pyaf/blob/master/tests/basic_checks/platform_info.py:
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('Cython_version', '0.29.4')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('keras_version', 'NOT_INSTALLED')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('matplotlib_version', '3.1.0')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('numpy_version', '1.16.4')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('pandas_version', '0.24.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('pip_version', '19.0.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('pydot_version', '1.4.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('python_implementation', 'CPython')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('python_version', '3.6.6')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('scipy_version', '1.1.0')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('setuptools_version', '41.0.1')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('sklearn_version', '0.20.2')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('sqlalchemy_version', '1.2.18')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('system_platform', 'Windows-10-10.0.17134-SP0')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('system_processor', 'Intel64 Family 6 Model 94 Stepping 3, GenuineIntel')
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('system_uname', uname_result(system='Windows', node='XPS-VHP', release='10', version='10.0.17134', machine='AMD64', processor='Intel64 Family 6 Model 94 Stepping 3, GenuineIntel'))
PYAF_SYSTEM_DEPENDENT_VERSION_INFO ('xgboost_version', '0.82')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ALLUSERSPROFILE', 'C:\\ProgramData')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ANDROID_HOME', 'C:\\Users\\vhphan\\AppData\\Local\\Android\\Sdk')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('APPDATA', 'C:\\Users\\vhphan\\AppData\\Roaming')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CFLAGS', ' -MD -GL')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CHOCOLATEYINSTALL', 'C:\\ProgramData\\chocolatey')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CHOCOLATEYLASTPATHUPDATE', 'Mon Sep 11 23:39:51 2017')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CLICOLOR', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CMAKE_GENERATOR', 'Visual Studio 14 2015 Win64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMANDPROMPTTYPE', 'Native')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMONPROGRAMFILES', 'C:\\Program Files\\Common Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMONPROGRAMFILES(X86)', 'C:\\Program Files (x86)\\Common Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMMONPROGRAMW6432', 'C:\\Program Files\\Common Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMPUTERNAME', 'XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('COMSPEC', 'C:\\WINDOWS\\system32\\cmd.exe')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_DEFAULT_ENV', 'ds2_clone')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_EXE', 'C:\\ProgramData\\Anaconda3\\Scripts\\conda.exe')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PREFIX', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PREFIX_1', 'C:\\ProgramData\\Anaconda3')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PROMPT_MODIFIER', '(ds2_clone) ')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_PYTHON_EXE', 'C:\\ProgramData\\Anaconda3\\python.exe')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CONDA_SHLVL', '2')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CURDIR', 'C:\\Program Files (x86)\\Microsoft Visual C++ Build Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CURRENTDIR', 'C:\\Users\\vhphan\\PycharmProjects\\misc')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('CXXFLAGS', ' -MD -GL')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('DISTUTILS_USE_SDK', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('DRIVERDATA', 'C:\\Windows\\System32\\Drivers\\DriverData')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FOLDER', 'x86')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FPS_BROWSER_APP_PROFILE_STRING', 'Internet Explorer')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FPS_BROWSER_USER_PROFILE_STRING', 'Default')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKDIR', 'C:\\WINDOWS\\Microsoft.NET\\Framework64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKDIR64', 'C:\\WINDOWS\\Microsoft.NET\\Framework64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKVERSION', 'v4.0.30319')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('FRAMEWORKVERSION64', 'v4.0.30319')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GDAL_DATA', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\share\\gdal')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GEOTIFF_CSV', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\share\\epsg_csv')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GIT_PAGER', 'cat')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('GYP_MSVS_VERSION', '2015')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('HOMEDRIVE', 'C:')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('HOMEPATH', '\\Users\\vhphan')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('INCLUDE', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\INCLUDE;C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.10240.0\\ucrt;C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.6.1\\include\\um;C:\\Program Files (x86)\\Windows Kits\\8.1\\include\\shared;C:\\Program Files (x86)\\Windows Kits\\8.1\\include\\um;C:\\Program Files (x86)\\Windows Kits\\8.1\\include\\winrt;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('IPY_INTERRUPT_EVENT', '2992')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('JPY_INTERRUPT_EVENT', '2992')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('JPY_PARENT_PID', '3012')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LDFLAGS_SHARED', ' -LTCG ucrt.lib')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LIB', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\LIB\\amd64;C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.10240.0\\ucrt\\x64;C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.6.1\\lib\\um\\x64;C:\\Program Files (x86)\\Windows Kits\\8.1\\lib\\winv6.3\\um\\x64;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LIBPATH', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\LIB\\amd64;C:\\WINDOWS\\Microsoft.NET\\Framework64\\v4.0.30319;C:\\WINDOWS\\Microsoft.NET\\Framework64\\;References\\CommonConfiguration\\Neutral;\\Microsoft.VCLibs\\14.0\\References\\CommonConfiguration\\neutral;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LOCALAPPDATA', 'C:\\Users\\vhphan\\AppData\\Local')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('LOGONSERVER', '\\\\XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MKL_THREADING_LAYER', 'GNU')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MOZ_PLUGIN_PATH', 'C:\\Program Files (x86)\\Foxit Software\\Foxit Reader\\plugins\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MPLBACKEND', 'module://ipykernel.pylab.backend_inline')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MSSDK', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MSYS2_ARG_CONV_EXCL', '/AI;/AL;/OUT;/out')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('MSYS2_ENV_CONV_EXCL', 'CL')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('NETFXSDKDIR', 'C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.6.1\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('NUMBER_OF_PROCESSORS', '8')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ONEDRIVE', 'C:\\Users\\vhphan\\OneDrive')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('ONEDRIVECONSUMER', 'C:\\Users\\vhphan\\OneDrive')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('OS', 'Windows_NT')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PAGER', 'cat')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PATH', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\bin;C:\\Program Files (x86)\\MSBuild\\14.0\\bin\\amd64;C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\amd64;C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\VCPackages;C:\\WINDOWS\\Microsoft.NET\\Framework64\\v4.0.30319;C:\\WINDOWS\\Microsoft.NET\\Framework64\\;C:\\Program Files (x86)\\Windows Kits\\8.1\\bin\\x64;C:\\Program Files (x86)\\Windows Kits\\8.1\\bin\\x86;C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.6.1 Tools\\x64\\;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\mingw-w64\\bin;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\usr\\bin;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\bin;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Scripts;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\bin;C:\\ProgramData\\Anaconda3\\condabin;C:\\ProgramData\\Oracle\\Java\\javapath;C:\\Program Files\\Dell\\DW WLAN Card;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0;C:\\Program Files\\WIDCOMM\\Bluetooth Software;C:\\Program Files\\WIDCOMM\\Bluetooth Software\\syswow64;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\wamp\\bin\\php\\php5.6.19;C:\\ProgramData\\ComposerSetup\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn;C:\\Program Files (x86)\\Google\\Google Apps Sync;C:\\Program Files (x86)\\Google\\Google Apps Migration;C:\\Program Files\\PuTTY;C:\\Program Files\\Git\\cmd;C:\\ProgramData\\chocolatey\\bin;C:\\ProgramData\\Anaconda3;C:\\Program Files (x86)\\Google\\Cloud SDK\\google-cloud-sdk\\bin;C:\\WINDOWS\\System32\\OpenSSH;C:\\Program Files\\PostgreSQL\\10\\bin;C:\\ProgramData\\Anaconda3\\Lib\\site-packages\\osgeo;C:\\Program Files\\Google\\Google Apps Sync;C:\\Program Files\\Google\\Google Apps Migration;C:\\Program Files (x86)\\Graphviz2.38\\bin;C:\\ProgramData\\Anaconda3\\Library\\bin;C:\\Program Files\\nodejs;C:\\Program Files (x86)\\WinRAR;C:\\Program Files (x86)\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files (x86)\\Google\\Chrome\\Application;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v9.0\\bin;C:\\Users\\vhphan\\AppData\\Local\\JSONBuddy;C:\\Users\\vhphan\\AppData\\Roaming\\Composer\\vendor\\bin;C:\\Users\\vhphan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Program Files\\Heroku\\bin;C:\\Users\\vhphan\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\vhphan\\Downloads\\VSCode-win32-x64-1.14.2\\bin;C:\\wamp\\bin\\php\\php7.0.4;C:\\Users\\vhphan\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\OSGeo4W64\\bin;C:\\Users\\vhphan\\ogr2ogr\\bin\\gdal;C:\\Users\\vhphan\\ogr2ogr\\bin\\gdal-data;C:\\ProgramData\\Anaconda3\\Scripts;C:\\Program Files (x86)\\Graphviz2.38\\bin;C:\\ProgramData\\Anaconda3\\Library\\bin;C:\\Users\\vhphan\\AppData\\Roaming\\npm;C:\\Program Files (x86)\\WinRAR;C:\\Program Files\\JetBrains\\PhpStorm 2019.1.1\\bin;.;C:\\Program Files\\JetBrains\\PyCharm 2019.1.2\\bin;.;C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v9.0\\bin;.;C:\\ProgramData\\Anaconda3\\lib\\site-packages\\pywin32_system32;C:\\ProgramData\\Anaconda3\\lib\\site-packages\\pywin32_system32;c:\\programdata\\anaconda3\\lib\\site-packages\\pywin32_system32;c:\\programdata\\anaconda3\\lib\\site-packages\\pywin32_system32;C:\\ProgramData\\Anaconda3\\lib\\site-packages\\pywin32_system32;C:\\Program Files (x86)\\Windows Kits\\10\\bin\\\\x86;C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\lib\\site-packages\\numpy\\.libs')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PATHEXT', '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PHPSTORM', 'C:\\Program Files\\JetBrains\\PhpStorm 2019.1.1\\bin;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PLATFORM', 'X64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('POSTGIS_ENABLE_OUTDB_RASTERS', '1')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('POSTGIS_GDAL_ENABLED_DRIVERS', 'GTiff PNG JPEG GIF XYZ DTED USGSDEM AAIGrid')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_ARCHITECTURE', 'AMD64')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_IDENTIFIER', 'Intel64 Family 6 Model 94 Stepping 3, GenuineIntel')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_LEVEL', '6')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROCESSOR_REVISION', '5e03')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMDATA', 'C:\\ProgramData')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMFILES', 'C:\\Program Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMFILES(X86)', 'C:\\Program Files (x86)')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROGRAMW6432', 'C:\\Program Files')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROJ_LIB', 'C:\\ProgramData\\Anaconda3\\envs\\ds2_clone\\Library\\share')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PROMPT', '(ds2_clone) $P$G')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PSMODULEPATH', 'C:\\Program Files (x86)\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Google\\Cloud SDK\\google-cloud-sdk\\platform\\PowerShell')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PUBLIC', 'C:\\Users\\Public')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PYCHARM', 'C:\\Program Files\\JetBrains\\PyCharm 2019.1.2\\bin;')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PYTHON', 'C:\\ProgramData\\Anaconda3\\python.EXE')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('PY_VCRUNTIME_REDIST', '\\vcruntime140.dll')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('SESSIONNAME', 'Console')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('SYSTEMDRIVE', 'C:')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('SYSTEMROOT', 'C:\\WINDOWS')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('TEMP', 'C:\\Users\\vhphan\\AppData\\Local\\Temp')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('TERM', 'xterm-color')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('TMP', 'C:\\Users\\vhphan\\AppData\\Local\\Temp')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('UCRTCONTENTROOT', 'C:\\Program Files (x86)\\Windows Kits\\10\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('UCRTVERSION', '10.0.10240.0')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('UNIVERSALCRTSDKDIR', 'C:\\Program Files (x86)\\Windows Kits\\10\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERDOMAIN', 'XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERDOMAIN_ROAMINGPROFILE', 'XPS-VHP')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERNAME', 'vhphan')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('USERPROFILE', 'C:\\Users\\vhphan')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VBOX_MSI_INSTALL_PATH', 'C:\\Program Files\\Oracle\\VirtualBox\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VCINSTALLDIR', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VCTARGETSPATH', 'C:\\Program Files (x86)\\MSBuild\\Microsoft.Cpp\\v4.0\\V140\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS140COMNTOOLS', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VSINSTALLDIR', 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VSREGKEY', 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\VisualStudio\\14.0')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS_MAJOR', '14')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS_VERSION', '14.0')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('VS_YEAR', '2015')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WIN', '10')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDIR', 'C:\\WINDOWS')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSLIBPATH', 'References\\CommonConfiguration\\Neutral')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDKDIR', 'C:\\Program Files (x86)\\Windows Kits\\8.1\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDKLIBVERSION', 'winv6.3\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDK_EXECUTABLEPATH_X64', 'C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.6.1 Tools\\x64\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('WINDOWSSDK_EXECUTABLEPATH_X86', 'C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.6.1 Tools\\')
PYAF_SYSTEM_DEPENDENT_ENVIRONMENT_VARIABLE ('_CONDA_SET_GDAL_DATA', 'C:\\Program Files\\PostgreSQL\\10\\gdal-data')
| non_main | filenotfounderror dot not found in path i am getting the following error filenotfounderror dot not found in path when running pyaf hierarchical frenchwineexportation ipynb the cell create a model to plot the hierarchy import pyaf hierarchicalforecastengine as hautof lengine hautof chierarchicalforecastengine lsignalhierarchy lengine plot hierarchy french wine export in euros df month signal lhierarchy none the output info pyaf std start hierarchical plotting filenotfounderror traceback most recent call last c programdata envs clone lib site packages pydot py in create self prog format encoding arguments arguments working dir tmp dir c programdata envs clone lib site packages pydot py in call graphviz program arguments working dir kwargs stdout subprocess pipe kwargs c programdata envs clone lib subprocess py in init self args bufsize executable stdin stdout stderr preexec fn close fds shell cwd env universal newlines startupinfo creationflags restore signals start new session pass fds encoding errors errread errwrite restore signals start new session except c programdata envs clone lib subprocess py in execute child self args executable preexec fn close fds pass fds cwd env startupinfo creationflags shell errread errwrite unused restore signals unused start new session os fspath cwd if cwd is not none else none startupinfo finally filenotfounderror the system cannot find the file specified during handling of the above exception another exception occurred filenotfounderror traceback most recent call last in lsignalhierarchy lengine plot hierarchy french wine export in euros df month signal lhierarchy none c programdata envs clone lib site packages pyaf hierarchicalforecastengine py in plot hierarchy self iinputds itime isignal ihorizon ihierarchy iexogenousdata lsignalhierarchy self create signal hierarchy iinputds itime isignal ihorizon ihierarchy iexogenousdata lsignalhierarchy create hierarchicalstructure lsignalhierarchy plot return lsignalhierarchy c programdata envs clone lib site packages pyaf ts signalhierarchy py in plot self name lprop self mavghistprop lannotations lprop tsplot plot hierarchy self mstructure lannotations name lplottime time time start time logger info end hierarchical plotting time in seconds str lplottime c programdata envs clone lib site packages pyaf ts plots py in plot hierarchy structure iannotations name else from ipython display import image display image graph create png display c programdata envs clone lib site packages pydot py in new method f prog encoding refer to docstring of method create return self create format f prog prog encoding encoding name create fmt format fmt frmt self setattr name new method c programdata envs clone lib site packages pydot py in create self prog format encoding args prog not found in path format prog prog raise oserror args else raise filenotfounderror dot not found in path output of script pyaf system dependent version info cython version pyaf system dependent version info keras version not installed pyaf system dependent version info matplotlib version pyaf system dependent version info numpy version pyaf system dependent version info pandas version pyaf system dependent version info pip version pyaf system dependent version info pydot version pyaf system dependent version info python implementation cpython pyaf system dependent version info python version pyaf system dependent version info scipy version pyaf system dependent version info setuptools version pyaf system dependent version info sklearn version pyaf system dependent version info sqlalchemy version pyaf system dependent version info system platform windows pyaf system dependent version info system processor family model stepping genuineintel pyaf system dependent version info system uname uname result system windows node xps vhp release version machine processor family model stepping genuineintel pyaf system dependent version info xgboost version pyaf system dependent environment variable allusersprofile c programdata pyaf system dependent environment variable android home c users vhphan appdata local android sdk pyaf system dependent environment variable appdata c users vhphan appdata roaming pyaf system dependent environment variable cflags md gl pyaf system dependent environment variable chocolateyinstall c programdata chocolatey pyaf system dependent environment variable chocolateylastpathupdate mon sep pyaf system dependent environment variable clicolor pyaf system dependent environment variable cmake generator visual studio pyaf system dependent environment variable commandprompttype native pyaf system dependent environment variable commonprogramfiles c program files common files pyaf system dependent environment variable commonprogramfiles c program files common files pyaf system dependent environment variable c program files common files pyaf system dependent environment variable computername xps vhp pyaf system dependent environment variable comspec c windows cmd exe pyaf system dependent environment variable conda default env clone pyaf system dependent environment variable conda exe c programdata scripts conda exe pyaf system dependent environment variable conda prefix c programdata envs clone pyaf system dependent environment variable conda prefix c programdata pyaf system dependent environment variable conda prompt modifier clone pyaf system dependent environment variable conda python exe c programdata python exe pyaf system dependent environment variable conda shlvl pyaf system dependent environment variable curdir c program files microsoft visual c build tools pyaf system dependent environment variable currentdir c users vhphan pycharmprojects misc pyaf system dependent environment variable cxxflags md gl pyaf system dependent environment variable distutils use sdk pyaf system dependent environment variable driverdata c windows drivers driverdata pyaf system dependent environment variable folder pyaf system dependent environment variable fps browser app profile string internet explorer pyaf system dependent environment variable fps browser user profile string default pyaf system dependent environment variable frameworkdir c windows microsoft net pyaf system dependent environment variable c windows microsoft net pyaf system dependent environment variable frameworkversion pyaf system dependent environment variable pyaf system dependent environment variable gdal data c programdata envs clone library share gdal pyaf system dependent environment variable geotiff csv c programdata envs clone library share epsg csv pyaf system dependent environment variable git pager cat pyaf system dependent environment variable gyp msvs version pyaf system dependent environment variable homedrive c pyaf system dependent environment variable homepath users vhphan pyaf system dependent environment variable include c program files microsoft visual studio vc include c program files windows kits include ucrt c program files windows kits netfxsdk include um c program files windows kits include shared c program files windows kits include um c program files windows kits include winrt pyaf system dependent environment variable ipy interrupt event pyaf system dependent environment variable jpy interrupt event pyaf system dependent environment variable jpy parent pid pyaf system dependent environment variable ldflags shared ltcg ucrt lib pyaf system dependent environment variable lib c program files microsoft visual studio vc lib c program files windows kits lib ucrt c program files windows kits netfxsdk lib um c program files windows kits lib um pyaf system dependent environment variable libpath c program files microsoft visual studio vc lib c windows microsoft net c windows microsoft net references commonconfiguration neutral microsoft vclibs references commonconfiguration neutral pyaf system dependent environment variable localappdata c users vhphan appdata local pyaf system dependent environment variable logonserver xps vhp pyaf system dependent environment variable mkl threading layer gnu pyaf system dependent environment variable moz plugin path c program files foxit software foxit reader plugins pyaf system dependent environment variable mplbackend module ipykernel pylab backend inline pyaf system dependent environment variable mssdk pyaf system dependent environment variable arg conv excl ai al out out pyaf system dependent environment variable env conv excl cl pyaf system dependent environment variable netfxsdkdir c program files windows kits netfxsdk pyaf system dependent environment variable number of processors pyaf system dependent environment variable onedrive c users vhphan onedrive pyaf system dependent environment variable onedriveconsumer c users vhphan onedrive pyaf system dependent environment variable os windows nt pyaf system dependent environment variable pager cat pyaf system dependent environment variable path c programdata envs clone library bin c program files msbuild bin c program files microsoft visual studio vc bin c program files microsoft visual studio vc vcpackages c windows microsoft net c windows microsoft net c program files windows kits bin c program files windows kits bin c program files microsoft sdks windows bin netfx tools c programdata envs clone c programdata envs clone library mingw bin c programdata envs clone library usr bin c programdata envs clone library bin c programdata envs clone scripts c programdata envs clone bin c programdata condabin c programdata oracle java javapath c program files dell dw wlan card c windows c windows c windows wbem c windows windowspowershell c program files widcomm bluetooth software c program files widcomm bluetooth software c program files nvidia corporation physx common c wamp bin php c programdata composersetup bin c windows c windows c windows wbem c windows windowspowershell c program files microsoft sql server tools binn c program files google google apps sync c program files google google apps migration c program files putty c program files git cmd c programdata chocolatey bin c programdata c program files google cloud sdk google cloud sdk bin c windows openssh c program files postgresql bin c programdata lib site packages osgeo c program files google google apps sync c program files google google apps migration c program files bin c programdata library bin c program files nodejs c program files winrar c program files intel intel r management engine components dal c program files intel intel r management engine components dal c program files google chrome application c program files nvidia corporation nvidia nvdlisr c program files nvidia gpu computing toolkit cuda bin c users vhphan appdata local jsonbuddy c users vhphan appdata roaming composer vendor bin c users vhphan appdata local microsoft windowsapps c program files heroku bin c users vhphan appdata local microsoft windowsapps c users vhphan downloads vscode bin c wamp bin php c users vhphan appdata local programs microsoft vs code bin c bin c users vhphan bin gdal c users vhphan bin gdal data c programdata scripts c program files bin c programdata library bin c users vhphan appdata roaming npm c program files winrar c program files jetbrains phpstorm bin c program files jetbrains pycharm bin c program files nvidia gpu computing toolkit cuda bin c programdata lib site packages c programdata lib site packages c programdata lib site packages c programdata lib site packages c programdata lib site packages c program files windows kits bin c programdata envs clone lib site packages numpy libs pyaf system dependent environment variable pathext com exe bat cmd vbs vbe js jse wsf wsh msc pyaf system dependent environment variable phpstorm c program files jetbrains phpstorm bin pyaf system dependent environment variable platform pyaf system dependent environment variable postgis enable outdb rasters pyaf system dependent environment variable postgis gdal enabled drivers gtiff png jpeg gif xyz dted usgsdem aaigrid pyaf system dependent environment variable processor architecture pyaf system dependent environment variable processor identifier family model stepping genuineintel pyaf system dependent environment variable processor level pyaf system dependent environment variable processor revision pyaf system dependent environment variable programdata c programdata pyaf system dependent environment variable programfiles c program files pyaf system dependent environment variable programfiles c program files pyaf system dependent environment variable c program files pyaf system dependent environment variable proj lib c programdata envs clone library share pyaf system dependent environment variable prompt clone p g pyaf system dependent environment variable psmodulepath c program files windowspowershell modules c windows windowspowershell modules c program files google cloud sdk google cloud sdk platform powershell pyaf system dependent environment variable public c users public pyaf system dependent environment variable pycharm c program files jetbrains pycharm bin pyaf system dependent environment variable python c programdata python exe pyaf system dependent environment variable py vcruntime redist dll pyaf system dependent environment variable sessionname console pyaf system dependent environment variable systemdrive c pyaf system dependent environment variable systemroot c windows pyaf system dependent environment variable temp c users vhphan appdata local temp pyaf system dependent environment variable term xterm color pyaf system dependent environment variable tmp c users vhphan appdata local temp pyaf system dependent environment variable ucrtcontentroot c program files windows kits pyaf system dependent environment variable ucrtversion pyaf system dependent environment variable universalcrtsdkdir c program files windows kits pyaf system dependent environment variable userdomain xps vhp pyaf system dependent environment variable userdomain roamingprofile xps vhp pyaf system dependent environment variable username vhphan pyaf system dependent environment variable userprofile c users vhphan pyaf system dependent environment variable vbox msi install path c program files oracle virtualbox pyaf system dependent environment variable vcinstalldir c program files microsoft visual studio vc pyaf system dependent environment variable vctargetspath c program files msbuild microsoft cpp pyaf system dependent environment variable c program files microsoft visual studio tools pyaf system dependent environment variable vsinstalldir c program files microsoft visual studio tools pyaf system dependent environment variable vsregkey hkey local machine software microsoft visualstudio pyaf system dependent environment variable vs major pyaf system dependent environment variable vs version pyaf system dependent environment variable vs year pyaf system dependent environment variable win pyaf system dependent environment variable windir c windows pyaf system dependent environment variable windowslibpath references commonconfiguration neutral pyaf system dependent environment variable windowssdkdir c program files windows kits pyaf system dependent environment variable windowssdklibversion pyaf system dependent environment variable windowssdk executablepath c program files microsoft sdks windows bin netfx tools pyaf system dependent environment variable windowssdk executablepath c program files microsoft sdks windows bin netfx tools pyaf system dependent environment variable conda set gdal data c program files postgresql gdal data | 0 |
10,459 | 26,992,473,992 | IssuesEvent | 2023-02-09 21:08:58 | MicrosoftDocs/architecture-center | https://api.github.com/repos/MicrosoftDocs/architecture-center | closed | Add numbers to diagram | assigned-to-author triaged architecture-center/svc example-scenario/subsvc Pri1 | there is a numerical listing below the diagram, it would be helpful if the diagram showed the numbers so that the text descriptions could be more easily correlated.
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: d2c472ec-9be4-6e0e-eac6-0236e2e1044a
* Version Independent ID: d2c472ec-9be4-6e0e-eac6-0236e2e1044a
* Content: [Network-hardened web app - Azure Example Scenarios](https://docs.microsoft.com/en-us/azure/architecture/example-scenario/security/hardened-web-app)
* Content Source: [docs/example-scenario/security/hardened-web-app.yml](https://github.com/microsoftdocs/architecture-center/blob/main/docs/example-scenario/security/hardened-web-app.yml)
* Service: **architecture-center**
* Sub-service: **example-scenario**
* GitHub Login: @damaccar
* Microsoft Alias: **damaccar** | 1.0 | Add numbers to diagram - there is a numerical listing below the diagram, it would be helpful if the diagram showed the numbers so that the text descriptions could be more easily correlated.
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: d2c472ec-9be4-6e0e-eac6-0236e2e1044a
* Version Independent ID: d2c472ec-9be4-6e0e-eac6-0236e2e1044a
* Content: [Network-hardened web app - Azure Example Scenarios](https://docs.microsoft.com/en-us/azure/architecture/example-scenario/security/hardened-web-app)
* Content Source: [docs/example-scenario/security/hardened-web-app.yml](https://github.com/microsoftdocs/architecture-center/blob/main/docs/example-scenario/security/hardened-web-app.yml)
* Service: **architecture-center**
* Sub-service: **example-scenario**
* GitHub Login: @damaccar
* Microsoft Alias: **damaccar** | non_main | add numbers to diagram there is a numerical listing below the diagram it would be helpful if the diagram showed the numbers so that the text descriptions could be more easily correlated document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service architecture center sub service example scenario github login damaccar microsoft alias damaccar | 0 |
378,411 | 26,294,623,063 | IssuesEvent | 2023-01-08 20:39:17 | a5lab/tabr | https://api.github.com/repos/a5lab/tabr | closed | Make example/pattern to create 2 languages dictionary | documentation question | Make example/pattern to create 2 languages dictionary | 1.0 | Make example/pattern to create 2 languages dictionary - Make example/pattern to create 2 languages dictionary | non_main | make example pattern to create languages dictionary make example pattern to create languages dictionary | 0 |
1,746 | 6,574,930,271 | IssuesEvent | 2017-09-11 14:31:42 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | make hostname work on Virtuozzo / OpenVZ | affects_2.1 feature_idea waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Feature Idea
##### COMPONENT NAME
hostname
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.2.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
irrelevant
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
```
"ansible_distribution": "Virtuozzo",
"ansible_distribution_major_version": "7",
"ansible_distribution_release": "NA",
"ansible_distribution_version": "7.2",
"ansible_lsb": {
"codename": "n/a",
"description": "Virtuozzo Linux release 7.2",
"id": "Virtuozzo",
"major_release": "7",
"release": "7.2"
},
"ansible_os_family": "Virtuozzo",
```
##### SUMMARY
<!--- Explain the problem briefly -->
Module hostname should work also on Virtuozzo distribution, which is a systemd based CentOS-Fork
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
- name: set hostname
hostname: name=basic.hostname
when: basic is defined
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
hostname should be set according to given variable
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
fatal: [xyz]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_args": {"name": "basic.hostname"}, "module_name": "hostname"}, "msg": "hostname module cannot be used on platform Linux (Virtuozzo linux)"}
```
| True | make hostname work on Virtuozzo / OpenVZ - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Feature Idea
##### COMPONENT NAME
hostname
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.2.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
irrelevant
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
```
"ansible_distribution": "Virtuozzo",
"ansible_distribution_major_version": "7",
"ansible_distribution_release": "NA",
"ansible_distribution_version": "7.2",
"ansible_lsb": {
"codename": "n/a",
"description": "Virtuozzo Linux release 7.2",
"id": "Virtuozzo",
"major_release": "7",
"release": "7.2"
},
"ansible_os_family": "Virtuozzo",
```
##### SUMMARY
<!--- Explain the problem briefly -->
Module hostname should work also on Virtuozzo distribution, which is a systemd based CentOS-Fork
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
- name: set hostname
hostname: name=basic.hostname
when: basic is defined
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
hostname should be set according to given variable
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
fatal: [xyz]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_args": {"name": "basic.hostname"}, "module_name": "hostname"}, "msg": "hostname module cannot be used on platform Linux (Virtuozzo linux)"}
```
| main | make hostname work on virtuozzo openvz issue type feature idea component name hostname ansible version ansible configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables irrelevant os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific ansible distribution virtuozzo ansible distribution major version ansible distribution release na ansible distribution version ansible lsb codename n a description virtuozzo linux release id virtuozzo major release release ansible os family virtuozzo summary module hostname should work also on virtuozzo distribution which is a systemd based centos fork steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used name set hostname hostname name basic hostname when basic is defined expected results hostname should be set according to given variable actual results fatal failed changed false failed true invocation module args name basic hostname module name hostname msg hostname module cannot be used on platform linux virtuozzo linux | 1 |
164,702 | 13,959,138,849 | IssuesEvent | 2020-10-24 15:10:15 | hoga-it/leafdown | https://api.github.com/repos/hoga-it/leafdown | closed | Improve roxygen documentation | documentation | - [x] Explain in `$add_data` method that the data are not allowed to be reshuffled etc.
- [x] Specify `@return` statement in `check_join_map_levels_by` function
- [x] Format bullet points in `$drill_down()` and `$drill_up()`
- [x] remove "Every element must have a GID_1" from check_helpers "check_spdf_list" | 1.0 | Improve roxygen documentation - - [x] Explain in `$add_data` method that the data are not allowed to be reshuffled etc.
- [x] Specify `@return` statement in `check_join_map_levels_by` function
- [x] Format bullet points in `$drill_down()` and `$drill_up()`
- [x] remove "Every element must have a GID_1" from check_helpers "check_spdf_list" | non_main | improve roxygen documentation explain in add data method that the data are not allowed to be reshuffled etc specify return statement in check join map levels by function format bullet points in drill down and drill up remove every element must have a gid from check helpers check spdf list | 0 |
1,218 | 5,199,465,546 | IssuesEvent | 2017-01-23 20:57:56 | caskroom/homebrew-cask | https://api.github.com/repos/caskroom/homebrew-cask | closed | Feature request: Ability to specify that installers may be deleted from /usr/local/Caskroom | awaiting maintainer feedback discussion | ### Description of feature/enhancement
Currently, a large amount of software installed via Cask appears to retain its installers and such in /usr/local/Caskroom
e.g.
```bash
Fotiss-MBP:~ fots$ ls -lh /usr/local/Caskroom/microsoft-office/15.29.16120900/
total 3276488
-rw-r--r-- 1 fots staff 1.6G 10 Dec 01:48 Microsoft_Office_2016_15.29.16120900_Installer.pkg
```
In most cases where an uninstaller is not present, keeping these packages around is not required and can waste a lot of space.
I suggest that an additional call is added which Cask writers can make that specifies that the contents of the original package can be purged after installation has completed. The default would be the current behaviour as to not break existing Casks.
### Justification
Even today, storage on Macs is extremely expensive and in lower end MacBooks and MacBook Pros with 256 GB storage, this can really eat up a person's disk with no benefit.
### Example use case
e.g. in my case with many of my own casks added too
```bash
Fotiss-MBP:~ fots$ du -sh /usr/local/Caskroom
32G /usr/local/Caskroom
```
| True | Feature request: Ability to specify that installers may be deleted from /usr/local/Caskroom - ### Description of feature/enhancement
Currently, a large amount of software installed via Cask appears to retain its installers and such in /usr/local/Caskroom
e.g.
```bash
Fotiss-MBP:~ fots$ ls -lh /usr/local/Caskroom/microsoft-office/15.29.16120900/
total 3276488
-rw-r--r-- 1 fots staff 1.6G 10 Dec 01:48 Microsoft_Office_2016_15.29.16120900_Installer.pkg
```
In most cases where an uninstaller is not present, keeping these packages around is not required and can waste a lot of space.
I suggest that an additional call is added which Cask writers can make that specifies that the contents of the original package can be purged after installation has completed. The default would be the current behaviour as to not break existing Casks.
### Justification
Even today, storage on Macs is extremely expensive and in lower end MacBooks and MacBook Pros with 256 GB storage, this can really eat up a person's disk with no benefit.
### Example use case
e.g. in my case with many of my own casks added too
```bash
Fotiss-MBP:~ fots$ du -sh /usr/local/Caskroom
32G /usr/local/Caskroom
```
| main | feature request ability to specify that installers may be deleted from usr local caskroom description of feature enhancement currently a large amount of software installed via cask appears to retain its installers and such in usr local caskroom e g bash fotiss mbp fots ls lh usr local caskroom microsoft office total rw r r fots staff dec microsoft office installer pkg in most cases where an uninstaller is not present keeping these packages around is not required and can waste a lot of space i suggest that an additional call is added which cask writers can make that specifies that the contents of the original package can be purged after installation has completed the default would be the current behaviour as to not break existing casks justification even today storage on macs is extremely expensive and in lower end macbooks and macbook pros with gb storage this can really eat up a person s disk with no benefit example use case e g in my case with many of my own casks added too bash fotiss mbp fots du sh usr local caskroom usr local caskroom | 1 |
189,219 | 14,494,412,016 | IssuesEvent | 2020-12-11 09:47:38 | kalexmills/github-vet-tests-dec2020 | https://api.github.com/repos/kalexmills/github-vet-tests-dec2020 | closed | blugelabs/bluge: search/searcher/search_boolean_test.go; 34 LoC | fresh small test |
Found a possible issue in [blugelabs/bluge](https://www.github.com/blugelabs/bluge) at [search/searcher/search_boolean_test.go](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_boolean_test.go#L332-L365)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable test used in defer or goroutine at line 334
[Click here to see the code in its original context.](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_boolean_test.go#L332-L365)
<details>
<summary>Click here to show the 34 line(s) of Go which triggered the analyzer.</summary>
```go
for testIndex, test := range tests {
defer func() {
err := test.searcher.Close()
if err != nil {
t.Fatal(err)
}
}()
ctx := &search.Context{
DocumentMatchPool: search.NewDocumentMatchPool(test.searcher.DocumentMatchPoolSize(), 0),
}
next, err := test.searcher.Next(ctx)
i := 0
for err == nil && next != nil {
if i < len(test.results) {
if next.Number != test.results[i].Number {
t.Errorf("expected result %d to have number %d got %d for test %d", i, test.results[i].Number, next.Number, testIndex)
}
if !scoresCloseEnough(next.Score, test.results[i].Score) {
t.Errorf("expected result %d to have score %v got %v for test %d", i, test.results[i].Score, next.Score, testIndex)
t.Logf("scoring explanation: %s", next.Explanation)
}
}
ctx.DocumentMatchPool.Put(next)
next, err = test.searcher.Next(ctx)
i++
}
if err != nil {
t.Fatalf("error iterating searcher: %v for test %d", err, testIndex)
}
if len(test.results) != i {
t.Errorf("expected %d results got %d for test %d", len(test.results), i, testIndex)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: c304a6733af6b14a0e57acb8085f7e88bae98560
| 1.0 | blugelabs/bluge: search/searcher/search_boolean_test.go; 34 LoC -
Found a possible issue in [blugelabs/bluge](https://www.github.com/blugelabs/bluge) at [search/searcher/search_boolean_test.go](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_boolean_test.go#L332-L365)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable test used in defer or goroutine at line 334
[Click here to see the code in its original context.](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_boolean_test.go#L332-L365)
<details>
<summary>Click here to show the 34 line(s) of Go which triggered the analyzer.</summary>
```go
for testIndex, test := range tests {
defer func() {
err := test.searcher.Close()
if err != nil {
t.Fatal(err)
}
}()
ctx := &search.Context{
DocumentMatchPool: search.NewDocumentMatchPool(test.searcher.DocumentMatchPoolSize(), 0),
}
next, err := test.searcher.Next(ctx)
i := 0
for err == nil && next != nil {
if i < len(test.results) {
if next.Number != test.results[i].Number {
t.Errorf("expected result %d to have number %d got %d for test %d", i, test.results[i].Number, next.Number, testIndex)
}
if !scoresCloseEnough(next.Score, test.results[i].Score) {
t.Errorf("expected result %d to have score %v got %v for test %d", i, test.results[i].Score, next.Score, testIndex)
t.Logf("scoring explanation: %s", next.Explanation)
}
}
ctx.DocumentMatchPool.Put(next)
next, err = test.searcher.Next(ctx)
i++
}
if err != nil {
t.Fatalf("error iterating searcher: %v for test %d", err, testIndex)
}
if len(test.results) != i {
t.Errorf("expected %d results got %d for test %d", len(test.results), i, testIndex)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: c304a6733af6b14a0e57acb8085f7e88bae98560
| non_main | blugelabs bluge search searcher search boolean test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message range loop variable test used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for testindex test range tests defer func err test searcher close if err nil t fatal err ctx search context documentmatchpool search newdocumentmatchpool test searcher documentmatchpoolsize next err test searcher next ctx i for err nil next nil if i len test results if next number test results number t errorf expected result d to have number d got d for test d i test results number next number testindex if scorescloseenough next score test results score t errorf expected result d to have score v got v for test d i test results score next score testindex t logf scoring explanation s next explanation ctx documentmatchpool put next next err test searcher next ctx i if err nil t fatalf error iterating searcher v for test d err testindex if len test results i t errorf expected d results got d for test d len test results i testindex leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 0 |
2,047 | 6,901,202,316 | IssuesEvent | 2017-11-25 03:19:51 | caskroom/homebrew-cask | https://api.github.com/repos/caskroom/homebrew-cask | closed | Feature request: brew cask reset (zap without uninstall) | awaiting maintainer feedback | ### Description of feature/enhancement
It would be nice to be able to reset a package's data directories (like `zap` does) without uninstalling the original cask. I would suggest using the term `reset` (i.e. `brew cask reset android-studio`). It would take al the same parameters as `zap`
### Justification
The main reason for this would be to reset the preferences for an app to its default state.
Currently, this can be achieved by a combination of `zap` and `install`...but for large applications, this can involve redownloading the application during the install phase.
It can also be achieved by `brew cask cat <token>` and deleting stuff from the `zap` stanza manually. This, however, can be tedious as well.
### Example use case
One use case I have run into is with android-studio. Sometimes it gets in a "wonky" state, and cleaning up the SDK directory and its preferences will get it back to a working condition. Since the application is quite large, the second download is kind of painful.
Yes - if it's cached, it won't redownload, however, when using homebrew and homebrew-cask in an scripted environment to automate system deployment, it's nice to be able to get back to a "clean" starting point.
| True | Feature request: brew cask reset (zap without uninstall) - ### Description of feature/enhancement
It would be nice to be able to reset a package's data directories (like `zap` does) without uninstalling the original cask. I would suggest using the term `reset` (i.e. `brew cask reset android-studio`). It would take al the same parameters as `zap`
### Justification
The main reason for this would be to reset the preferences for an app to its default state.
Currently, this can be achieved by a combination of `zap` and `install`...but for large applications, this can involve redownloading the application during the install phase.
It can also be achieved by `brew cask cat <token>` and deleting stuff from the `zap` stanza manually. This, however, can be tedious as well.
### Example use case
One use case I have run into is with android-studio. Sometimes it gets in a "wonky" state, and cleaning up the SDK directory and its preferences will get it back to a working condition. Since the application is quite large, the second download is kind of painful.
Yes - if it's cached, it won't redownload, however, when using homebrew and homebrew-cask in an scripted environment to automate system deployment, it's nice to be able to get back to a "clean" starting point.
| main | feature request brew cask reset zap without uninstall description of feature enhancement it would be nice to be able to reset a package s data directories like zap does without uninstalling the original cask i would suggest using the term reset i e brew cask reset android studio it would take al the same parameters as zap justification the main reason for this would be to reset the preferences for an app to its default state currently this can be achieved by a combination of zap and install but for large applications this can involve redownloading the application during the install phase it can also be achieved by brew cask cat and deleting stuff from the zap stanza manually this however can be tedious as well example use case one use case i have run into is with android studio sometimes it gets in a wonky state and cleaning up the sdk directory and its preferences will get it back to a working condition since the application is quite large the second download is kind of painful yes if it s cached it won t redownload however when using homebrew and homebrew cask in an scripted environment to automate system deployment it s nice to be able to get back to a clean starting point | 1 |
92,804 | 11,711,663,545 | IssuesEvent | 2020-03-09 06:03:41 | JuliaRobotics/IncrementalInference.jl | https://api.github.com/repos/JuliaRobotics/IncrementalInference.jl | closed | Not fully robust to changes for solve when N not specified | decision design enhancement inference memory allocation standardization | `inferOverTree!(...)` without setting `N=?` results in error. | 1.0 | Not fully robust to changes for solve when N not specified - `inferOverTree!(...)` without setting `N=?` results in error. | non_main | not fully robust to changes for solve when n not specified inferovertree without setting n results in error | 0 |
4,351 | 21,965,492,344 | IssuesEvent | 2022-05-24 19:50:38 | PowerShell/PowerShell | https://api.github.com/repos/PowerShell/PowerShell | closed | Distribution Support Request - OpenSuse leap 15.3 | Distribution-Request Review - Maintainer | ### Name of the Distribution
openSUSE
### Version of the Distribution
Leap 15.3
### Package Types
- [ ] Deb
- [X] RPM
- [ ] Tar.gz
- [ ] Snap - Stop! Please file your issue in [PowerShell-Snap](https://github.com/powershell/powershell-snap) instead.
### Processor Architecture
amd64
### .NET Core Support
- [X] The version and architecture of the Distribution is [supported by .NET Core](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0-supported-os.md#linux).
### Distribution Requirements
- [X] The version of the Distribution is supported for at least one year.
- [X] The version of the Distribution is not an [interim release](https://ubuntu.com/about/release-cycle) or equivalent.
### Exemption Justification
_No response_
### Progress
- [x] An issue has been filed to create a Docker image in [PowerShell-Docker](https://github.com/powershell/powershell-docker)
### For PowerShell Team **ONLY**
- [ ] Docker image created
- [ ] Docker image published
- [ ] Distribution tested
- [ ] Update `packages.microsoft.com` deployment
- [ ] [Lifecycle](https://github.com/MicrosoftDocs/PowerShell-Docs/blob/staging/reference/docs-conceptual/PowerShell-Support-Lifecycle.md) updated
- [ ] Documentation Updated | True | Distribution Support Request - OpenSuse leap 15.3 - ### Name of the Distribution
openSUSE
### Version of the Distribution
Leap 15.3
### Package Types
- [ ] Deb
- [X] RPM
- [ ] Tar.gz
- [ ] Snap - Stop! Please file your issue in [PowerShell-Snap](https://github.com/powershell/powershell-snap) instead.
### Processor Architecture
amd64
### .NET Core Support
- [X] The version and architecture of the Distribution is [supported by .NET Core](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0-supported-os.md#linux).
### Distribution Requirements
- [X] The version of the Distribution is supported for at least one year.
- [X] The version of the Distribution is not an [interim release](https://ubuntu.com/about/release-cycle) or equivalent.
### Exemption Justification
_No response_
### Progress
- [x] An issue has been filed to create a Docker image in [PowerShell-Docker](https://github.com/powershell/powershell-docker)
### For PowerShell Team **ONLY**
- [ ] Docker image created
- [ ] Docker image published
- [ ] Distribution tested
- [ ] Update `packages.microsoft.com` deployment
- [ ] [Lifecycle](https://github.com/MicrosoftDocs/PowerShell-Docs/blob/staging/reference/docs-conceptual/PowerShell-Support-Lifecycle.md) updated
- [ ] Documentation Updated | main | distribution support request opensuse leap name of the distribution opensuse version of the distribution leap package types deb rpm tar gz snap stop please file your issue in instead processor architecture net core support the version and architecture of the distribution is distribution requirements the version of the distribution is supported for at least one year the version of the distribution is not an or equivalent exemption justification no response progress an issue has been filed to create a docker image in for powershell team only docker image created docker image published distribution tested update packages microsoft com deployment updated documentation updated | 1 |
567,194 | 16,850,133,787 | IssuesEvent | 2021-06-20 10:37:11 | Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2 | https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2 | closed | Anglo-saxon Mention | :beetle: bug :beetle: :exclamation: priority high :page_facing_up: localisation :pen: good first issue | <!--
**DO NOT REMOVE PRE-EXISTING LINES**
------------------------------------------------------------------------------------------------------------
-->
**Mod version:**
1.4.0
**Are you using any submods/mods? If so, which?**
Nope.
**Please explain your issue in as much detail as possible:**
This event mentions Anglo-saxons.
**Upload screenshots of the problem localization:**
<details>
<summary>Click to expand</summary>

</details> | 1.0 | Anglo-saxon Mention - <!--
**DO NOT REMOVE PRE-EXISTING LINES**
------------------------------------------------------------------------------------------------------------
-->
**Mod version:**
1.4.0
**Are you using any submods/mods? If so, which?**
Nope.
**Please explain your issue in as much detail as possible:**
This event mentions Anglo-saxons.
**Upload screenshots of the problem localization:**
<details>
<summary>Click to expand</summary>

</details> | non_main | anglo saxon mention do not remove pre existing lines mod version are you using any submods mods if so which nope please explain your issue in as much detail as possible this event mentions anglo saxons upload screenshots of the problem localization click to expand | 0 |
468,755 | 13,489,884,505 | IssuesEvent | 2020-09-11 14:25:55 | ansible/awx | https://api.github.com/repos/ansible/awx | closed | boot user to login page when auth cookie is expired or no longer authenticated | component:ui_next priority:medium type:bug | There's not a lot of great options here as far as I can tell. One approach we've discussed at some length is using one of the request / intercept hooks from `axios`. I don't like that this ties us to a particular http interface object. Plus, it doesn't cover session expiration.
I don't think there are any native event handlers we can tap into for cookie changes that are supported on all browsers.
...so I'm wondering if we should just _poll the cookie_ and give users the 👢 when it changes to a value other than `true` or if its expired?
I know it sounds gross but its also direct and easily replaced later. If you absolutely hate this idea: So do I, so please talk me out of it. | 1.0 | boot user to login page when auth cookie is expired or no longer authenticated - There's not a lot of great options here as far as I can tell. One approach we've discussed at some length is using one of the request / intercept hooks from `axios`. I don't like that this ties us to a particular http interface object. Plus, it doesn't cover session expiration.
I don't think there are any native event handlers we can tap into for cookie changes that are supported on all browsers.
...so I'm wondering if we should just _poll the cookie_ and give users the 👢 when it changes to a value other than `true` or if its expired?
I know it sounds gross but its also direct and easily replaced later. If you absolutely hate this idea: So do I, so please talk me out of it. | non_main | boot user to login page when auth cookie is expired or no longer authenticated there s not a lot of great options here as far as i can tell one approach we ve discussed at some length is using one of the request intercept hooks from axios i don t like that this ties us to a particular http interface object plus it doesn t cover session expiration i don t think there are any native event handlers we can tap into for cookie changes that are supported on all browsers so i m wondering if we should just poll the cookie and give users the 👢 when it changes to a value other than true or if its expired i know it sounds gross but its also direct and easily replaced later if you absolutely hate this idea so do i so please talk me out of it | 0 |
471,769 | 13,610,088,217 | IssuesEvent | 2020-09-23 06:45:12 | ChakirArdenne/findanumber | https://api.github.com/repos/ChakirArdenne/findanumber | opened | jeu offline par affichage de nombre | priority: high type: feature | 1. On lance l'application en donant 2 nombres x et y tel que x et >=0 et x < y
2. L'application tire au sort un nombre k dans [x,y]
3. L'application imprime le nombre k | 1.0 | jeu offline par affichage de nombre - 1. On lance l'application en donant 2 nombres x et y tel que x et >=0 et x < y
2. L'application tire au sort un nombre k dans [x,y]
3. L'application imprime le nombre k | non_main | jeu offline par affichage de nombre on lance l application en donant nombres x et y tel que x et et x y l application tire au sort un nombre k dans l application imprime le nombre k | 0 |
69,626 | 30,349,559,247 | IssuesEvent | 2023-07-11 17:51:39 | hashicorp/terraform-provider-azurerm | https://api.github.com/repos/hashicorp/terraform-provider-azurerm | closed | azurerm_kubernetes_cluster_extension: Missing resource provider registration | service/kubernetes-cluster | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Community Note
<!--- Please keep this note for the community --->
* Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the [contribution guide](https://github.com/hashicorp/terraform-provider-azurerm/blob/main/contributing/README.md) to help.
<!--- Thank you for keeping this note for the community --->
### Terraform Version
1.4.6
### AzureRM Provider Version
3.63.0
### Affected Resource(s)/Data Source(s)
azurerm_kubernetes_cluster_extension
### Terraform Configuration Files
```hcl
resource "azurerm_kubernetes_cluster_extension" "flux" {
name = "flux"
cluster_id = azurerm_kubernetes_cluster.main.id
extension_type = "microsoft.flux"
}
```
### Debug Output/Panic Output
```shell
│ Error: creating Extension (Subscription: "<hidden>"
│ Resource Group Name: "RG-M-AKS-felix-test"
│ Provider Name: "Microsoft.ContainerService"
│ Cluster Resource Name: "managedClusters"
│ Cluster Name: "felix-test"
│ Extension Name: "flux"): polling after Create: polling failed: the Azure API returned the following error:
│
│ Status: "Failed"
│ Code: "ExtensionOperationFailed"
│ Message: "The extension operation failed with the following error: Request failed to https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01. Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' with object id 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' does not have authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was recently granted, please refresh your credentials.\"}}."
│ Activity Id: ""
│
│ ---
│
│ API Response:
│
│ ----[start]----
│ {"id":"/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/ManagedClusters/felix-test/providers/Microsoft.KubernetesConfiguration/extensions/flux/operations/d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","name":"d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","status":"Failed","error":{"code":"ExtensionOperationFailed","message":"The extension operation failed with the following error: Request failed to https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01. Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client '<hidden>' with object id '<hidden>' does not have authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was recently granted, please refresh your credentials.\"}}.","additionalInfo":[]}}
│ -----[end]-----
│
│
│ with module.debug.azurerm_kubernetes_cluster_extension.flux[0],
│ on ../gitops.tf line 67, in resource "azurerm_kubernetes_cluster_extension" "flux":
│ 67: resource "azurerm_kubernetes_cluster_extension" "flux" {
│
│ creating Extension (Subscription: "<hidden>"
│ Resource Group Name: "RG-M-AKS-felix-test"
│ Provider Name: "Microsoft.ContainerService"
│ Cluster Resource Name: "managedClusters"
│ Cluster Name: "felix-test"
│ Extension Name: "flux"): polling after Create: polling failed: the Azure API returned the following error:
│
│ Status: "Failed"
│ Code: "ExtensionOperationFailed"
│ Message: "The extension operation failed with the following error: Request failed to
│ https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01.
│ Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client '<hidden>' with object id '<hidden>' does not have
│ authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope
│ '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was
│ recently granted, please refresh your credentials.\"}}."
│ Activity Id: ""
│
│ ---
│
│ API Response:
│
│ ----[start]----
│ {"id":"/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/ManagedClusters/felix-test/providers/Microsoft.KubernetesConfiguration/extensions/flux/operations/d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","name":"d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","status":"Failed","error":{"code":"ExtensionOperationFailed","message":"The
│ extension operation failed with the following error: Request failed to
│ https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01.
│ Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' with object id 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' does not have
│ authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope
│ '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was
│ recently granted, please refresh your credentials.\"}}.","additionalInfo":[]}}
│ -----[end]-----
```
### Expected Behaviour
Following Resouce Provider should automatically be registered when using the resource:
* `Microsoft.Kubernetes`
* `Microsoft.KubernetesConfiguration`
### Actual Behaviour
Resource provider keep unregistered
### Steps to Reproduce
1. unregister resource providers `Microsoft.Kubernetes` & `Microsoft.KubernetesConfiguration` (if already registered)
2. run `terraform apply` with provided resource configuration
3. ➡ error
### Important Factoids
_No response_
### References
_No response_ | 1.0 | azurerm_kubernetes_cluster_extension: Missing resource provider registration - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Community Note
<!--- Please keep this note for the community --->
* Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the [contribution guide](https://github.com/hashicorp/terraform-provider-azurerm/blob/main/contributing/README.md) to help.
<!--- Thank you for keeping this note for the community --->
### Terraform Version
1.4.6
### AzureRM Provider Version
3.63.0
### Affected Resource(s)/Data Source(s)
azurerm_kubernetes_cluster_extension
### Terraform Configuration Files
```hcl
resource "azurerm_kubernetes_cluster_extension" "flux" {
name = "flux"
cluster_id = azurerm_kubernetes_cluster.main.id
extension_type = "microsoft.flux"
}
```
### Debug Output/Panic Output
```shell
│ Error: creating Extension (Subscription: "<hidden>"
│ Resource Group Name: "RG-M-AKS-felix-test"
│ Provider Name: "Microsoft.ContainerService"
│ Cluster Resource Name: "managedClusters"
│ Cluster Name: "felix-test"
│ Extension Name: "flux"): polling after Create: polling failed: the Azure API returned the following error:
│
│ Status: "Failed"
│ Code: "ExtensionOperationFailed"
│ Message: "The extension operation failed with the following error: Request failed to https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01. Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' with object id 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' does not have authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was recently granted, please refresh your credentials.\"}}."
│ Activity Id: ""
│
│ ---
│
│ API Response:
│
│ ----[start]----
│ {"id":"/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/ManagedClusters/felix-test/providers/Microsoft.KubernetesConfiguration/extensions/flux/operations/d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","name":"d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","status":"Failed","error":{"code":"ExtensionOperationFailed","message":"The extension operation failed with the following error: Request failed to https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01. Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client '<hidden>' with object id '<hidden>' does not have authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was recently granted, please refresh your credentials.\"}}.","additionalInfo":[]}}
│ -----[end]-----
│
│
│ with module.debug.azurerm_kubernetes_cluster_extension.flux[0],
│ on ../gitops.tf line 67, in resource "azurerm_kubernetes_cluster_extension" "flux":
│ 67: resource "azurerm_kubernetes_cluster_extension" "flux" {
│
│ creating Extension (Subscription: "<hidden>"
│ Resource Group Name: "RG-M-AKS-felix-test"
│ Provider Name: "Microsoft.ContainerService"
│ Cluster Resource Name: "managedClusters"
│ Cluster Name: "felix-test"
│ Extension Name: "flux"): polling after Create: polling failed: the Azure API returned the following error:
│
│ Status: "Failed"
│ Code: "ExtensionOperationFailed"
│ Message: "The extension operation failed with the following error: Request failed to
│ https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01.
│ Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client '<hidden>' with object id '<hidden>' does not have
│ authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope
│ '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was
│ recently granted, please refresh your credentials.\"}}."
│ Activity Id: ""
│
│ ---
│
│ API Response:
│
│ ----[start]----
│ {"id":"/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/ManagedClusters/felix-test/providers/Microsoft.KubernetesConfiguration/extensions/flux/operations/d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","name":"d7c1f7d2-2fc6-4abc-ade3-dd527c05c511","status":"Failed","error":{"code":"ExtensionOperationFailed","message":"The
│ extension operation failed with the following error: Request failed to
│ https://management.azure.com/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux?api-version=2021-03-01.
│ Error code: Forbidden. Reason: Forbidden.{\"error\":{\"code\":\"AuthorizationFailed\",\"message\":\"The client 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' with object id 'e64b1a2c-694a-4ff8-aead-a4cde0b5f231' does not have
│ authorization to perform action 'Microsoft.ContainerService/managedclusters/extensionaddons/read' over scope
│ '/subscriptions/<hidden>/resourceGroups/RG-M-AKS-felix-test/providers/Microsoft.ContainerService/managedclusters/felix-test/extensionaddons/flux' or the scope is invalid. If access was
│ recently granted, please refresh your credentials.\"}}.","additionalInfo":[]}}
│ -----[end]-----
```
### Expected Behaviour
Following Resouce Provider should automatically be registered when using the resource:
* `Microsoft.Kubernetes`
* `Microsoft.KubernetesConfiguration`
### Actual Behaviour
Resource provider keep unregistered
### Steps to Reproduce
1. unregister resource providers `Microsoft.Kubernetes` & `Microsoft.KubernetesConfiguration` (if already registered)
2. run `terraform apply` with provided resource configuration
3. ➡ error
### Important Factoids
_No response_
### References
_No response_ | non_main | azurerm kubernetes cluster extension missing resource provider registration is there an existing issue for this i have searched the existing issues community note please vote on this issue by adding a thumbsup to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment and review the to help terraform version azurerm provider version affected resource s data source s azurerm kubernetes cluster extension terraform configuration files hcl resource azurerm kubernetes cluster extension flux name flux cluster id azurerm kubernetes cluster main id extension type microsoft flux debug output panic output shell │ error creating extension subscription │ resource group name rg m aks felix test │ provider name microsoft containerservice │ cluster resource name managedclusters │ cluster name felix test │ extension name flux polling after create polling failed the azure api returned the following error │ │ status failed │ code extensionoperationfailed │ message the extension operation failed with the following error request failed to error code forbidden reason forbidden error code authorizationfailed message the client aead with object id aead does not have authorization to perform action microsoft containerservice managedclusters extensionaddons read over scope subscriptions resourcegroups rg m aks felix test providers microsoft containerservice managedclusters felix test extensionaddons flux or the scope is invalid if access was recently granted please refresh your credentials │ activity id │ │ │ │ api response │ │ │ id subscriptions resourcegroups rg m aks felix test providers microsoft containerservice managedclusters felix test providers microsoft kubernetesconfiguration extensions flux operations name status failed error code extensionoperationfailed message the extension operation failed with the following error request failed to error code forbidden reason forbidden error code authorizationfailed message the client with object id does not have authorization to perform action microsoft containerservice managedclusters extensionaddons read over scope subscriptions resourcegroups rg m aks felix test providers microsoft containerservice managedclusters felix test extensionaddons flux or the scope is invalid if access was recently granted please refresh your credentials additionalinfo │ │ │ │ with module debug azurerm kubernetes cluster extension flux │ on gitops tf line in resource azurerm kubernetes cluster extension flux │ resource azurerm kubernetes cluster extension flux │ │ creating extension subscription │ resource group name rg m aks felix test │ provider name microsoft containerservice │ cluster resource name managedclusters │ cluster name felix test │ extension name flux polling after create polling failed the azure api returned the following error │ │ status failed │ code extensionoperationfailed │ message the extension operation failed with the following error request failed to │ │ error code forbidden reason forbidden error code authorizationfailed message the client with object id does not have │ authorization to perform action microsoft containerservice managedclusters extensionaddons read over scope │ subscriptions resourcegroups rg m aks felix test providers microsoft containerservice managedclusters felix test extensionaddons flux or the scope is invalid if access was │ recently granted please refresh your credentials │ activity id │ │ │ │ api response │ │ │ id subscriptions resourcegroups rg m aks felix test providers microsoft containerservice managedclusters felix test providers microsoft kubernetesconfiguration extensions flux operations name status failed error code extensionoperationfailed message the │ extension operation failed with the following error request failed to │ │ error code forbidden reason forbidden error code authorizationfailed message the client aead with object id aead does not have │ authorization to perform action microsoft containerservice managedclusters extensionaddons read over scope │ subscriptions resourcegroups rg m aks felix test providers microsoft containerservice managedclusters felix test extensionaddons flux or the scope is invalid if access was │ recently granted please refresh your credentials additionalinfo │ expected behaviour following resouce provider should automatically be registered when using the resource microsoft kubernetes microsoft kubernetesconfiguration actual behaviour resource provider keep unregistered steps to reproduce unregister resource providers microsoft kubernetes microsoft kubernetesconfiguration if already registered run terraform apply with provided resource configuration ➡ error important factoids no response references no response | 0 |
238,114 | 19,699,806,655 | IssuesEvent | 2022-01-12 15:36:14 | JanusGraph/janusgraph | https://api.github.com/repos/JanusGraph/janusgraph | opened | Flaky cache expiration test: ExpirationCacheTest.testExpiration | testing/flaky | ## Flaky Test
I saw the test fail already for two Dependabot PRs (both targeted on master) but it worked when I ran the test locally and also when I restarted the GH action.
* **Test Name:** ExpirationCacheTest.testExpiration
* **Link:** https://github.com/JanusGraph/janusgraph/blob/a60e92815b3a51a4cc020a7c7cb2bce9f414887a/janusgraph-test/src/test/java/org/janusgraph/diskstorage/cache/ExpirationCacheTest.java#L57
* **Branch:** master
* **Notes:** I'll create PR to mark it as flaky.
### Stack Trace
```
Error: Failures:
Error: ExpirationCacheTest.testExpiration:58->testExpiration:86->verifyResults:151 expected: <6> but was: <5>
```
| 1.0 | Flaky cache expiration test: ExpirationCacheTest.testExpiration - ## Flaky Test
I saw the test fail already for two Dependabot PRs (both targeted on master) but it worked when I ran the test locally and also when I restarted the GH action.
* **Test Name:** ExpirationCacheTest.testExpiration
* **Link:** https://github.com/JanusGraph/janusgraph/blob/a60e92815b3a51a4cc020a7c7cb2bce9f414887a/janusgraph-test/src/test/java/org/janusgraph/diskstorage/cache/ExpirationCacheTest.java#L57
* **Branch:** master
* **Notes:** I'll create PR to mark it as flaky.
### Stack Trace
```
Error: Failures:
Error: ExpirationCacheTest.testExpiration:58->testExpiration:86->verifyResults:151 expected: <6> but was: <5>
```
| non_main | flaky cache expiration test expirationcachetest testexpiration flaky test i saw the test fail already for two dependabot prs both targeted on master but it worked when i ran the test locally and also when i restarted the gh action test name expirationcachetest testexpiration link branch master notes i ll create pr to mark it as flaky stack trace error failures error expirationcachetest testexpiration testexpiration verifyresults expected but was | 0 |
4,863 | 25,013,798,133 | IssuesEvent | 2022-11-03 17:06:32 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | opened | "Today" in date picker is confusing in the context of the Record Selector | type: bug work: frontend status: ready restricted: maintainers | ## Steps to reproduce
1. Go to the Table Page for a table with a Date column.
1. Edit a Date cell, clicking "Today" to set the value to today's date.

1. Open the Record Selector for the same table.
1. Focus on the search input for the Date column, opening the date-picker.
1. Expect to see an _absolute_ "Today" button, as you did when entering a cell value.
1. Instead, observe a _relative_ "Today" button (which functions a bit differently).

1. Click that "Today" button.
1. Expect to see today's date entered into the search field.
1. Instead, observe the text "today" entered into the search field.
1. Expect to see the results filtered by this search value.
1. Instead, observe the same results as before clicking "Today"
| True | "Today" in date picker is confusing in the context of the Record Selector - ## Steps to reproduce
1. Go to the Table Page for a table with a Date column.
1. Edit a Date cell, clicking "Today" to set the value to today's date.

1. Open the Record Selector for the same table.
1. Focus on the search input for the Date column, opening the date-picker.
1. Expect to see an _absolute_ "Today" button, as you did when entering a cell value.
1. Instead, observe a _relative_ "Today" button (which functions a bit differently).

1. Click that "Today" button.
1. Expect to see today's date entered into the search field.
1. Instead, observe the text "today" entered into the search field.
1. Expect to see the results filtered by this search value.
1. Instead, observe the same results as before clicking "Today"
| main | today in date picker is confusing in the context of the record selector steps to reproduce go to the table page for a table with a date column edit a date cell clicking today to set the value to today s date open the record selector for the same table focus on the search input for the date column opening the date picker expect to see an absolute today button as you did when entering a cell value instead observe a relative today button which functions a bit differently click that today button expect to see today s date entered into the search field instead observe the text today entered into the search field expect to see the results filtered by this search value instead observe the same results as before clicking today | 1 |
195,311 | 22,317,810,788 | IssuesEvent | 2022-06-14 01:07:01 | masterclass363/Python-Sample-Application | https://api.github.com/repos/masterclass363/Python-Sample-Application | opened | Jinja2-2.7.3.tar.gz: 3 vulnerabilities (highest severity is: 8.6) | security vulnerability | <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p></summary>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
</details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2019-10906](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10906) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 8.6 | Jinja2-2.7.3.tar.gz | Direct | 2.10.1 | ❌ |
| [CVE-2016-10745](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10745) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 8.6 | Jinja2-2.7.3.tar.gz | Direct | 2.8.1 | ❌ |
| [CVE-2020-28493](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28493) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.3 | Jinja2-2.7.3.tar.gz | Direct | Jinja2 - 2.11.3 | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2019-10906</summary>
### Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **Jinja2-2.7.3.tar.gz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Pallets Jinja before 2.10.1, str.format_map allows a sandbox escape.
<p>Publish Date: 2019-04-07
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10906>CVE-2019-10906</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>8.6</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10906">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10906</a></p>
<p>Release Date: 2020-08-24</p>
<p>Fix Resolution: 2.10.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2016-10745</summary>
### Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **Jinja2-2.7.3.tar.gz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Pallets Jinja before 2.8.1, str.format allows a sandbox escape.
<p>Publish Date: 2019-04-08
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10745>CVE-2016-10745</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>8.6</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10745">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10745</a></p>
<p>Release Date: 2019-04-08</p>
<p>Fix Resolution: 2.8.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-28493</summary>
### Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **Jinja2-2.7.3.tar.gz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
This affects the package jinja2 from 0.0.0 and before 2.11.3. The ReDoS vulnerability is mainly due to the `_punctuation_re regex` operator and its use of multiple wildcards. The last wildcard is the most exploitable as it searches for trailing punctuation. This issue can be mitigated by Markdown to format user content instead of the urlize filter, or by implementing request timeouts and limiting process memory.
<p>Publish Date: 2021-02-01
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28493>CVE-2020-28493</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>5.3</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28493">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28493</a></p>
<p>Release Date: 2021-02-01</p>
<p>Fix Resolution: Jinja2 - 2.11.3</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details> | True | Jinja2-2.7.3.tar.gz: 3 vulnerabilities (highest severity is: 8.6) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p></summary>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
</details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2019-10906](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10906) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 8.6 | Jinja2-2.7.3.tar.gz | Direct | 2.10.1 | ❌ |
| [CVE-2016-10745](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10745) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 8.6 | Jinja2-2.7.3.tar.gz | Direct | 2.8.1 | ❌ |
| [CVE-2020-28493](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28493) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.3 | Jinja2-2.7.3.tar.gz | Direct | Jinja2 - 2.11.3 | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2019-10906</summary>
### Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **Jinja2-2.7.3.tar.gz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Pallets Jinja before 2.10.1, str.format_map allows a sandbox escape.
<p>Publish Date: 2019-04-07
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10906>CVE-2019-10906</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>8.6</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10906">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10906</a></p>
<p>Release Date: 2020-08-24</p>
<p>Fix Resolution: 2.10.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2016-10745</summary>
### Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **Jinja2-2.7.3.tar.gz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Pallets Jinja before 2.8.1, str.format allows a sandbox escape.
<p>Publish Date: 2019-04-08
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10745>CVE-2016-10745</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>8.6</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10745">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10745</a></p>
<p>Release Date: 2019-04-08</p>
<p>Fix Resolution: 2.8.1</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-28493</summary>
### Vulnerable Library - <b>Jinja2-2.7.3.tar.gz</b></p>
<p>A very fast and expressive template engine.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz">https://files.pythonhosted.org/packages/b0/73/eab0bca302d6d6a0b5c402f47ad1760dc9cb2dd14bbc1873ad48db258e4d/Jinja2-2.7.3.tar.gz</a></p>
<p>Path to dependency file: /requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt,/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **Jinja2-2.7.3.tar.gz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
This affects the package jinja2 from 0.0.0 and before 2.11.3. The ReDoS vulnerability is mainly due to the `_punctuation_re regex` operator and its use of multiple wildcards. The last wildcard is the most exploitable as it searches for trailing punctuation. This issue can be mitigated by Markdown to format user content instead of the urlize filter, or by implementing request timeouts and limiting process memory.
<p>Publish Date: 2021-02-01
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28493>CVE-2020-28493</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>5.3</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28493">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28493</a></p>
<p>Release Date: 2021-02-01</p>
<p>Fix Resolution: Jinja2 - 2.11.3</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details> | non_main | tar gz vulnerabilities highest severity is vulnerable library tar gz a very fast and expressive template engine library home page a href path to dependency file requirements txt path to vulnerable library requirements txt requirements txt vulnerabilities cve severity cvss dependency type fixed in remediation available high tar gz direct high tar gz direct medium tar gz direct details cve vulnerable library tar gz a very fast and expressive template engine library home page a href path to dependency file requirements txt path to vulnerable library requirements txt requirements txt dependency hierarchy x tar gz vulnerable library found in base branch master vulnerability details in pallets jinja before str format map allows a sandbox escape publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope changed impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend cve vulnerable library tar gz a very fast and expressive template engine library home page a href path to dependency file requirements txt path to vulnerable library requirements txt requirements txt dependency hierarchy x tar gz vulnerable library found in base branch master vulnerability details in pallets jinja before str format allows a sandbox escape publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope changed impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend cve vulnerable library tar gz a very fast and expressive template engine library home page a href path to dependency file requirements txt path to vulnerable library requirements txt requirements txt dependency hierarchy x tar gz vulnerable library found in base branch master vulnerability details this affects the package from and before the redos vulnerability is mainly due to the punctuation re regex operator and its use of multiple wildcards the last wildcard is the most exploitable as it searches for trailing punctuation this issue can be mitigated by markdown to format user content instead of the urlize filter or by implementing request timeouts and limiting process memory publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
458,332 | 13,173,486,694 | IssuesEvent | 2020-08-11 20:24:52 | AbsaOSS/enceladus | https://api.github.com/repos/AbsaOSS/enceladus | closed | Indexes for MongoDB performance | Menas feature priority: high | ## Background
Menas makes some nonperforming queries causing production load
## Feature
Create MongoDB indexes for the more frequently slow queries.
# Proposed Solution
Solution Ideas
1. For run_v1, dataset and datasetVersion
2. For schema_v1, name and version should work
| 1.0 | Indexes for MongoDB performance - ## Background
Menas makes some nonperforming queries causing production load
## Feature
Create MongoDB indexes for the more frequently slow queries.
# Proposed Solution
Solution Ideas
1. For run_v1, dataset and datasetVersion
2. For schema_v1, name and version should work
| non_main | indexes for mongodb performance background menas makes some nonperforming queries causing production load feature create mongodb indexes for the more frequently slow queries proposed solution solution ideas for run dataset and datasetversion for schema name and version should work | 0 |
262,880 | 27,989,472,316 | IssuesEvent | 2023-03-27 01:34:25 | AkshayMukkavilli/Analyzing-the-Significance-of-Structure-in-Amazon-Review-Data-Using-Machine-Learning-Approaches | https://api.github.com/repos/AkshayMukkavilli/Analyzing-the-Significance-of-Structure-in-Amazon-Review-Data-Using-Machine-Learning-Approaches | opened | CVE-2023-25672 (High) detected in tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl | Mend: dependency security vulnerability | ## CVE-2023-25672 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>TensorFlow is an open source machine learning framework for everyone.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: /FinalProject/requirements.txt</p>
<p>Path to vulnerable library: /teSource-ArchiveExtractor_8b9e071c-3b11-4aa9-ba60-cdeb60d053b7/20190525011350_65403/20190525011256_depth_0/9/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64/tensorflow-1.13.1.data/purelib/tensorflow</p>
<p>
Dependency Hierarchy:
- :x: **tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
TensorFlow is an open source platform for machine learning. The function `tf.raw_ops.LookupTableImportV2` cannot handle scalars in the `values` parameter and gives an NPE. A fix is included in TensorFlow version 2.12.0 and version 2.11.1.
<p>Publish Date: 2023-03-24
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-25672>CVE-2023-25672</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-94mm-g2mv-8p7r">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-94mm-g2mv-8p7r</a></p>
<p>Release Date: 2023-03-24</p>
<p>Fix Resolution: tensorflow - 2.11.1,2.12.0, tensorflow-cpu - 2.11.1,2.12.0, tensorflow-gpu - 2.11.1,2.12.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2023-25672 (High) detected in tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl - ## CVE-2023-25672 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>TensorFlow is an open source machine learning framework for everyone.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/d2/ea/ab2c8c0e81bd051cc1180b104c75a865ab0fc66c89be992c4b20bbf6d624/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: /FinalProject/requirements.txt</p>
<p>Path to vulnerable library: /teSource-ArchiveExtractor_8b9e071c-3b11-4aa9-ba60-cdeb60d053b7/20190525011350_65403/20190525011256_depth_0/9/tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64/tensorflow-1.13.1.data/purelib/tensorflow</p>
<p>
Dependency Hierarchy:
- :x: **tensorflow-1.13.1-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
TensorFlow is an open source platform for machine learning. The function `tf.raw_ops.LookupTableImportV2` cannot handle scalars in the `values` parameter and gives an NPE. A fix is included in TensorFlow version 2.12.0 and version 2.11.1.
<p>Publish Date: 2023-03-24
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-25672>CVE-2023-25672</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-94mm-g2mv-8p7r">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-94mm-g2mv-8p7r</a></p>
<p>Release Date: 2023-03-24</p>
<p>Fix Resolution: tensorflow - 2.11.1,2.12.0, tensorflow-cpu - 2.11.1,2.12.0, tensorflow-gpu - 2.11.1,2.12.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_main | cve high detected in tensorflow whl cve high severity vulnerability vulnerable library tensorflow whl tensorflow is an open source machine learning framework for everyone library home page a href path to dependency file finalproject requirements txt path to vulnerable library tesource archiveextractor depth tensorflow tensorflow data purelib tensorflow dependency hierarchy x tensorflow whl vulnerable library vulnerability details tensorflow is an open source platform for machine learning the function tf raw ops cannot handle scalars in the values parameter and gives an npe a fix is included in tensorflow version and version publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tensorflow tensorflow cpu tensorflow gpu step up your open source security game with mend | 0 |
2,557 | 8,700,133,486 | IssuesEvent | 2018-12-05 07:39:30 | arcticicestudio/nord-docs | https://api.github.com/repos/arcticicestudio/nord-docs | opened | Base Media Query Setup | context-ui scope-configurability scope-maintainability scope-ux type-feature | <p align="center"><img src="https://user-images.githubusercontent.com/7836623/49325616-f1053900-f545-11e8-9725-0b8f5af8d1e2.png" width="20%" /></p>
> Associated epic: #52
To start implementing components with responsive styled through media queries, a basic setup must be created based on the [“Responsive Web Design” design concept][gh-52].
## Media Query Generator
To simplify the usage of [media queries][mdn-mq] with [styled-components][gh-51], a utility function to generate [media templates][stc-docs-mqt] will be implemented. It'll use the `min-width` parameter to fulfill the used _mobile-first_ approach. The base size that'll be used has been implemented as theme property in [#54][gh-55-diff-r49].
## Initial Media Queries
Like documented in the #52, _Nord Docs_ uses the _mobile-first_ pattern and follows the great [“Google Developer Responsive Web Design” guidelines][gdev-web-fund-rwd]. The recommended way is to create media queries not based on any device sizes but individually based on the content which is unique for each project. This is the best practice and, contrary to most popular CSS framework like Bootstrap, the correct way since each site is different and there are thousands of devices and in the future new sizes will appear.
> Always adjust media queries to the content individually and not vice-versa.
[gdev-web-fund-rwd]: https://developers.google.com/web/fundamentals/design-and-ux/responsive
[gh-51]: https://github.com/arcticicestudio/nord-docs/issues/51
[gh-52]: https://github.com/arcticicestudio/nord-docs/issues/52
[gh-55-diff-r49]: https://github.com/arcticicestudio/nord-docs/pull/55/files#diff-90a2aa45c339ce4720a7fbbd23c65e3eR49
[mdn-mq]: https://developer.mozilla.org/de/docs/Web/CSS/Media_Queries/Using_media_queries
[stc-docs-mqt]: https://www.styled-components.com/docs/advanced#media-templates
| True | Base Media Query Setup - <p align="center"><img src="https://user-images.githubusercontent.com/7836623/49325616-f1053900-f545-11e8-9725-0b8f5af8d1e2.png" width="20%" /></p>
> Associated epic: #52
To start implementing components with responsive styled through media queries, a basic setup must be created based on the [“Responsive Web Design” design concept][gh-52].
## Media Query Generator
To simplify the usage of [media queries][mdn-mq] with [styled-components][gh-51], a utility function to generate [media templates][stc-docs-mqt] will be implemented. It'll use the `min-width` parameter to fulfill the used _mobile-first_ approach. The base size that'll be used has been implemented as theme property in [#54][gh-55-diff-r49].
## Initial Media Queries
Like documented in the #52, _Nord Docs_ uses the _mobile-first_ pattern and follows the great [“Google Developer Responsive Web Design” guidelines][gdev-web-fund-rwd]. The recommended way is to create media queries not based on any device sizes but individually based on the content which is unique for each project. This is the best practice and, contrary to most popular CSS framework like Bootstrap, the correct way since each site is different and there are thousands of devices and in the future new sizes will appear.
> Always adjust media queries to the content individually and not vice-versa.
[gdev-web-fund-rwd]: https://developers.google.com/web/fundamentals/design-and-ux/responsive
[gh-51]: https://github.com/arcticicestudio/nord-docs/issues/51
[gh-52]: https://github.com/arcticicestudio/nord-docs/issues/52
[gh-55-diff-r49]: https://github.com/arcticicestudio/nord-docs/pull/55/files#diff-90a2aa45c339ce4720a7fbbd23c65e3eR49
[mdn-mq]: https://developer.mozilla.org/de/docs/Web/CSS/Media_Queries/Using_media_queries
[stc-docs-mqt]: https://www.styled-components.com/docs/advanced#media-templates
| main | base media query setup associated epic to start implementing components with responsive styled through media queries a basic setup must be created based on the media query generator to simplify the usage of with a utility function to generate will be implemented it ll use the min width parameter to fulfill the used mobile first approach the base size that ll be used has been implemented as theme property in initial media queries like documented in the nord docs uses the mobile first pattern and follows the great the recommended way is to create media queries not based on any device sizes but individually based on the content which is unique for each project this is the best practice and contrary to most popular css framework like bootstrap the correct way since each site is different and there are thousands of devices and in the future new sizes will appear always adjust media queries to the content individually and not vice versa | 1 |
898 | 4,559,831,477 | IssuesEvent | 2016-09-14 04:49:59 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | Doc: ec2_vpc_route_table_facts: example for VPC ID filter has error | affects_2.1 aws cloud docs_report waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Documentation Report
##### COMPONENT NAME
ec2_vpc_route_table_facts
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.1.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
##### SUMMARY
At [this URL](https://docs.ansible.com/ansible/ec2_vpc_route_table_facts_module.html) it says:
```
# Gather facts about any VPC route table within VPC with ID vpc-abcdef00
- ec2_vpc_route_table_facts:
filters:
vpc-id: vpc-abcdef00
```
However, the actual filter expression should be as follows (confirmed this thru coding):
```
vpc_id: vpc-abcdef00
```
Note the underscore vs. the dash.
| True | Doc: ec2_vpc_route_table_facts: example for VPC ID filter has error - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Documentation Report
##### COMPONENT NAME
ec2_vpc_route_table_facts
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.1.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
##### SUMMARY
At [this URL](https://docs.ansible.com/ansible/ec2_vpc_route_table_facts_module.html) it says:
```
# Gather facts about any VPC route table within VPC with ID vpc-abcdef00
- ec2_vpc_route_table_facts:
filters:
vpc-id: vpc-abcdef00
```
However, the actual filter expression should be as follows (confirmed this thru coding):
```
vpc_id: vpc-abcdef00
```
Note the underscore vs. the dash.
| main | doc vpc route table facts example for vpc id filter has error issue type documentation report component name vpc route table facts ansible version ansible configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific summary at it says gather facts about any vpc route table within vpc with id vpc vpc route table facts filters vpc id vpc however the actual filter expression should be as follows confirmed this thru coding vpc id vpc note the underscore vs the dash | 1 |
5,600 | 28,047,650,751 | IssuesEvent | 2023-03-29 01:14:10 | ipfs/kubo | https://api.github.com/repos/ipfs/kubo | opened | CAR import should not pin roots by default (ipfs dag import --pin-roots=false) | kind/bug topic/commands P1 need/maintainers-input topic/pinning dif/easy | ## Problem
We are working on Graph API for HTTP Gateways to enable `?format=car` that returns a subset of a DAG and/or parent nodes of a sub-path.
As part of this work, we have to decide, if returned CAR stream includes root CIDs in CAR header, and anticipate what happens, when Kubo user tries to import such "bag of blocks" into local Kubo node using `ipfs dag import.
Ref. https://github.com/ipfs/bifrost-gateway/pull/61#discussion_r1147052249 for more details.
### Current state
The current default behavior of Kubo's `ipfs dag import` defaults to `--pin-roots=true`, which will RECURSIVELY pin every CID from the CAR header.
If any DAG blocks are not in the CAR, it will either fail due to pinning being in offline mode (this was the behavior last time I checked) OR if someone refactors it at some point, a network fetch may be triggered, overfetching often absurd amount of data (export single wiki article, overfetch 350GiB).
This is an unfortunate legacy behavior, but we can't ignore it. Kubo is used by the majority of IPFS ecosystem outside PL, and the majority of "partial/path CARs" fetched from Rhea/Saturn will be consumed by Kubo's `dag import` at some point.
Also, pinning by default is inconsistent with `ipfs dag put` (which does not pin by default).
## Proposed change
Change `dag import` default to not pin (`--pin-roots=false`)
This will make `dag import` compatible with the vision of "CAR being just a bag of blocks",
and make graph operations such as pinning DAG root recursively an opt-in.
cc @rvagg @ribasushi @aschmahmann – does this sound sensible?
| True | CAR import should not pin roots by default (ipfs dag import --pin-roots=false) - ## Problem
We are working on Graph API for HTTP Gateways to enable `?format=car` that returns a subset of a DAG and/or parent nodes of a sub-path.
As part of this work, we have to decide, if returned CAR stream includes root CIDs in CAR header, and anticipate what happens, when Kubo user tries to import such "bag of blocks" into local Kubo node using `ipfs dag import.
Ref. https://github.com/ipfs/bifrost-gateway/pull/61#discussion_r1147052249 for more details.
### Current state
The current default behavior of Kubo's `ipfs dag import` defaults to `--pin-roots=true`, which will RECURSIVELY pin every CID from the CAR header.
If any DAG blocks are not in the CAR, it will either fail due to pinning being in offline mode (this was the behavior last time I checked) OR if someone refactors it at some point, a network fetch may be triggered, overfetching often absurd amount of data (export single wiki article, overfetch 350GiB).
This is an unfortunate legacy behavior, but we can't ignore it. Kubo is used by the majority of IPFS ecosystem outside PL, and the majority of "partial/path CARs" fetched from Rhea/Saturn will be consumed by Kubo's `dag import` at some point.
Also, pinning by default is inconsistent with `ipfs dag put` (which does not pin by default).
## Proposed change
Change `dag import` default to not pin (`--pin-roots=false`)
This will make `dag import` compatible with the vision of "CAR being just a bag of blocks",
and make graph operations such as pinning DAG root recursively an opt-in.
cc @rvagg @ribasushi @aschmahmann – does this sound sensible?
| main | car import should not pin roots by default ipfs dag import pin roots false problem we are working on graph api for http gateways to enable format car that returns a subset of a dag and or parent nodes of a sub path as part of this work we have to decide if returned car stream includes root cids in car header and anticipate what happens when kubo user tries to import such bag of blocks into local kubo node using ipfs dag import ref for more details current state the current default behavior of kubo s ipfs dag import defaults to pin roots true which will recursively pin every cid from the car header if any dag blocks are not in the car it will either fail due to pinning being in offline mode this was the behavior last time i checked or if someone refactors it at some point a network fetch may be triggered overfetching often absurd amount of data export single wiki article overfetch this is an unfortunate legacy behavior but we can t ignore it kubo is used by the majority of ipfs ecosystem outside pl and the majority of partial path cars fetched from rhea saturn will be consumed by kubo s dag import at some point also pinning by default is inconsistent with ipfs dag put which does not pin by default proposed change change dag import default to not pin pin roots false this will make dag import compatible with the vision of car being just a bag of blocks and make graph operations such as pinning dag root recursively an opt in cc rvagg ribasushi aschmahmann – does this sound sensible | 1 |
391,513 | 11,574,949,562 | IssuesEvent | 2020-02-21 08:42:29 | fxi/AccessMod_shiny | https://api.github.com/repos/fxi/AccessMod_shiny | closed | Interactive map: Not possible to see the map without Raster or health facilities once a dataset has been selected | Priority 3 enhancement solved | ### Current Behavior
Once you have selected a Raster and/or health facilities layer it is then not possible to remove these layers from the map unless you refresh the browser but in this case all the fields are back to empty
### Expected Behavior
You can see the map without the raster or the health facilities layer that has been selected
### Possible Solution
Add a "None" category in the "Select layer to use (raster)" and "Select facilities to use ( vector )" fields
### Steps to Reproduce
1. Select a raster layer
2. select a health facilities layer
3. Try to remove one of them
| 1.0 | Interactive map: Not possible to see the map without Raster or health facilities once a dataset has been selected - ### Current Behavior
Once you have selected a Raster and/or health facilities layer it is then not possible to remove these layers from the map unless you refresh the browser but in this case all the fields are back to empty
### Expected Behavior
You can see the map without the raster or the health facilities layer that has been selected
### Possible Solution
Add a "None" category in the "Select layer to use (raster)" and "Select facilities to use ( vector )" fields
### Steps to Reproduce
1. Select a raster layer
2. select a health facilities layer
3. Try to remove one of them
| non_main | interactive map not possible to see the map without raster or health facilities once a dataset has been selected current behavior once you have selected a raster and or health facilities layer it is then not possible to remove these layers from the map unless you refresh the browser but in this case all the fields are back to empty expected behavior you can see the map without the raster or the health facilities layer that has been selected possible solution add a none category in the select layer to use raster and select facilities to use vector fields steps to reproduce select a raster layer select a health facilities layer try to remove one of them | 0 |
1,775 | 6,575,800,590 | IssuesEvent | 2017-09-11 17:22:36 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | Wrong requirements for docker_container module | affects_2.1 cloud docker docs_report waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Documentation Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
docker_container
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.2.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
On remote host (akl0mw643) docker-py 1.7.2 is installed.
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
Ansible side: RHEL 7.2
Remote host: RHEL 7.2 with docker-py-1.7.2 library
##### SUMMARY
<!--- Explain the problem briefly -->
In case of any limits update (cpu__, cpuset__) , a docker_container module calls docker-py API function with name "container_update". This function was introduced in docker-py-1.8.0 for the first time. So requirements should be "docker-py >= 1.8.0".
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
docker_container:
name: docker-py-test
image: test
cpu_quota: "1000"
hostname: dockertest
Or one of others limits:
cpuset_cpus: "0,1"
cpuset_mems: "0,1"
cpu_shares: 100
cpu_period: 1000
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
TASK [Ensure that X containers are started] *********************************
changed: [akl0mw643]
PLAY RECAP *********************************************************************
akl0mw643 : ok=2 changed=1 unreachable=0 failed=0
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
fatal: [akl0mw643]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_name": "docker_container"}, "module_stderr": "", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1928, in <module>\r\n main()\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1921, in main\r\n cm = ContainerManager(client)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1583, in __init__\r\n self.present(state)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1626, in present\r\n container = self.update_limits(container)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1687, in update_limits\r\n self.container_update(container.Id, self.parameters.update_parameters)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1804, in container_update\r\n if not self.check_mode and callable(getattr(self.client, 'update_container')):\r\nAttributeError: 'AnsibleDockerClient' object has no attribute 'update_container'\r\n", "msg": "MODULE FAILURE"}
```
| True | Wrong requirements for docker_container module - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Documentation Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
docker_container
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.1.2.0
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
On remote host (akl0mw643) docker-py 1.7.2 is installed.
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
Ansible side: RHEL 7.2
Remote host: RHEL 7.2 with docker-py-1.7.2 library
##### SUMMARY
<!--- Explain the problem briefly -->
In case of any limits update (cpu__, cpuset__) , a docker_container module calls docker-py API function with name "container_update". This function was introduced in docker-py-1.8.0 for the first time. So requirements should be "docker-py >= 1.8.0".
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
```
docker_container:
name: docker-py-test
image: test
cpu_quota: "1000"
hostname: dockertest
Or one of others limits:
cpuset_cpus: "0,1"
cpuset_mems: "0,1"
cpu_shares: 100
cpu_period: 1000
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
TASK [Ensure that X containers are started] *********************************
changed: [akl0mw643]
PLAY RECAP *********************************************************************
akl0mw643 : ok=2 changed=1 unreachable=0 failed=0
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
fatal: [akl0mw643]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_name": "docker_container"}, "module_stderr": "", "module_stdout": "Traceback (most recent call last):\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1928, in <module>\r\n main()\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1921, in main\r\n cm = ContainerManager(client)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1583, in __init__\r\n self.present(state)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1626, in present\r\n container = self.update_limits(container)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1687, in update_limits\r\n self.container_update(container.Id, self.parameters.update_parameters)\r\n File \"/tmp/ansible_i94B2c/ansible_module_docker_container.py\", line 1804, in container_update\r\n if not self.check_mode and callable(getattr(self.client, 'update_container')):\r\nAttributeError: 'AnsibleDockerClient' object has no attribute 'update_container'\r\n", "msg": "MODULE FAILURE"}
```
| main | wrong requirements for docker container module issue type documentation report component name docker container ansible version ansible configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables on remote host docker py is installed os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific ansible side rhel remote host rhel with docker py library summary in case of any limits update cpu cpuset a docker container module calls docker py api function with name container update this function was introduced in docker py for the first time so requirements should be docker py steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used docker container name docker py test image test cpu quota hostname dockertest or one of others limits cpuset cpus cpuset mems cpu shares cpu period expected results task changed play recap ok changed unreachable failed actual results fatal failed changed false failed true invocation module name docker container module stderr module stdout traceback most recent call last r n file tmp ansible ansible module docker container py line in r n main r n file tmp ansible ansible module docker container py line in main r n cm containermanager client r n file tmp ansible ansible module docker container py line in init r n self present state r n file tmp ansible ansible module docker container py line in present r n container self update limits container r n file tmp ansible ansible module docker container py line in update limits r n self container update container id self parameters update parameters r n file tmp ansible ansible module docker container py line in container update r n if not self check mode and callable getattr self client update container r nattributeerror ansibledockerclient object has no attribute update container r n msg module failure | 1 |
219,214 | 24,464,565,340 | IssuesEvent | 2022-10-07 14:00:46 | samqws-marketing/box_mojito | https://api.github.com/repos/samqws-marketing/box_mojito | opened | CVE-2022-41853 (High) detected in hsqldb-2.5.1.jar | security vulnerability | ## CVE-2022-41853 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>hsqldb-2.5.1.jar</b></p></summary>
<p>HSQLDB - Lightweight 100% Java SQL Database Engine</p>
<p>Library home page: <a href="http://hsqldb.org">http://hsqldb.org</a></p>
<p>Path to dependency file: /webapp/pom.xml</p>
<p>Path to vulnerable library: /repository/org/hsqldb/hsqldb/2.5.1/hsqldb-2.5.1.jar</p>
<p>
Dependency Hierarchy:
- :x: **hsqldb-2.5.1.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/samqws-marketing/box_mojito/commit/65290aeb818102fa2443a637efdccebebfed1eb9">65290aeb818102fa2443a637efdccebebfed1eb9</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Those using java.sql.Statement or java.sql.PreparedStatement in hsqldb (HyperSQL DataBase) to process untrusted input may be vulnerable to a remote code execution attack. By default it is allowed to call any static method of any Java class in the classpath resulting in code execution. The issue can be prevented by updating to 2.7.1 or by setting the system property "hsqldb.method_class_names" to classes which are allowed to be called. For example, System.setProperty("hsqldb.method_class_names", "abc") or Java argument -Dhsqldb.method_class_names="abc" can be used. From version 2.7.1 all classes by default are not accessible except those in java.lang.Math and need to be manually enabled.
<p>Publish Date: 2022-10-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-41853>CVE-2022-41853</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.0</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: Low
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
| True | CVE-2022-41853 (High) detected in hsqldb-2.5.1.jar - ## CVE-2022-41853 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>hsqldb-2.5.1.jar</b></p></summary>
<p>HSQLDB - Lightweight 100% Java SQL Database Engine</p>
<p>Library home page: <a href="http://hsqldb.org">http://hsqldb.org</a></p>
<p>Path to dependency file: /webapp/pom.xml</p>
<p>Path to vulnerable library: /repository/org/hsqldb/hsqldb/2.5.1/hsqldb-2.5.1.jar</p>
<p>
Dependency Hierarchy:
- :x: **hsqldb-2.5.1.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/samqws-marketing/box_mojito/commit/65290aeb818102fa2443a637efdccebebfed1eb9">65290aeb818102fa2443a637efdccebebfed1eb9</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Those using java.sql.Statement or java.sql.PreparedStatement in hsqldb (HyperSQL DataBase) to process untrusted input may be vulnerable to a remote code execution attack. By default it is allowed to call any static method of any Java class in the classpath resulting in code execution. The issue can be prevented by updating to 2.7.1 or by setting the system property "hsqldb.method_class_names" to classes which are allowed to be called. For example, System.setProperty("hsqldb.method_class_names", "abc") or Java argument -Dhsqldb.method_class_names="abc" can be used. From version 2.7.1 all classes by default are not accessible except those in java.lang.Math and need to be manually enabled.
<p>Publish Date: 2022-10-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-41853>CVE-2022-41853</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.0</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: Low
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
| non_main | cve high detected in hsqldb jar cve high severity vulnerability vulnerable library hsqldb jar hsqldb lightweight java sql database engine library home page a href path to dependency file webapp pom xml path to vulnerable library repository org hsqldb hsqldb hsqldb jar dependency hierarchy x hsqldb jar vulnerable library found in head commit a href found in base branch master vulnerability details those using java sql statement or java sql preparedstatement in hsqldb hypersql database to process untrusted input may be vulnerable to a remote code execution attack by default it is allowed to call any static method of any java class in the classpath resulting in code execution the issue can be prevented by updating to or by setting the system property hsqldb method class names to classes which are allowed to be called for example system setproperty hsqldb method class names abc or java argument dhsqldb method class names abc can be used from version all classes by default are not accessible except those in java lang math and need to be manually enabled publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required low user interaction required scope changed impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href | 0 |
1,347 | 5,731,804,508 | IssuesEvent | 2017-04-21 13:24:08 | caskroom/homebrew-cask | https://api.github.com/repos/caskroom/homebrew-cask | closed | metasploit install fails when linking binary | awaiting maintainer feedback | #### General troubleshooting steps
- [x] I have checked the instructions for [reporting bugs](https://github.com/caskroom/homebrew-cask#reporting-bugs) (or [making requests](https://github.com/caskroom/homebrew-cask#requests)) before opening the issue.
- [x] None of the templates was appropriate for my issue, or I’m not sure.
- [x] I ran `brew update-reset && brew update` and retried my command.
- [x] I ran `brew doctor`, fixed as many issues as possible and retried my command.
- [x] I understand that [if I ignore these instructions, my issue may be closed without review](https://github.com/caskroom/homebrew-cask/blob/master/doc/faq/closing_issues_without_review.md).
#### Description of issue
[metasploit](https://github.com/caskroom/homebrew-cask/blob/master/Casks/metasploit.rb) install fails when `Linking Binary` errors with `Operation not permitted`.
`brew cask install metasploit --verbose --debug` fails with the same error on two computers (10.12.4 - CLT 8.3 and 10.12.3 - CLT 8.2) with up to date HB and in new VM (10.12.4 - CLT 8.3) with fresh HB install.
The cask itself is less than two weeks old and installed without error for me about a week ago.
I've manually installed the first version of this cask #31311 and the newest version from rapid7 [metasploit-framework-4.14.8+20170404092313-1rapid7-1.pkg](https://osx.metasploit.com/metasploit-framework-4.14.8%2B20170404092313-1rapid7-1.pkg) and the permissions after install appear to be the same. I've included the permissions at the end.
Outputs below are from the VM.
#### Output of your command with `--verbose --debug`
```
$ brew cask install metasploit --verbose --debug
==> Tapping caskroom/cask
git clone https://github.com/caskroom/homebrew-cask /usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask --depth=1
Cloning into '/usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask'...
remote: Counting objects: 3734, done.
remote: Compressing objects: 100% (3718/3718), done.
remote: Total 3734 (delta 36), reused 376 (delta 12), pack-reused 0
Receiving objects: 100% (3734/3734), 1.25 MiB | 1.20 MiB/s, done.
Resolving deltas: 100% (36/36), done.
Tapped 0 formulae (3,743 files, 3.9MB)
git config --local --replace-all homebrew.private false
==> Creating Cache at /Users/commitay/Library/Caches/Homebrew/Cask
==> Creating Caskroom at /usr/local/Caskroom
==> We'll set permissions properly so we won't need sudo in the future
==> Executing: ["/usr/bin/sudo", "-E", "--", "/bin/mkdir", "-p", "/usr/local/Caskroom"]
Password:
==> Executing: ["/usr/bin/sudo", "-E", "--", "/bin/chmod", "g+rwx", "/usr/local/Caskroom"]
==> Executing: ["/usr/bin/sudo", "-E", "--", "/usr/sbin/chown", "commitay", "/usr/local/Caskroom"]
==> Executing: ["/usr/bin/sudo", "-E", "--", "/usr/bin/chgrp", "admin", "/usr/local/Caskroom"]
==> Hbc::Installer#install
==> Printing caveats
==> Hbc::Installer#fetch
==> Satisfying dependencies
==> Installing Formula dependencies from Homebrew
nmap ... ==> Executing: ["/usr/local/bin/brew", "list", "--versions", "nmap"]
==> Executing: ["/usr/local/bin/brew", "install", "nmap"]
done
postgresql ... ==> Executing: ["/usr/local/bin/brew", "list", "--versions", "postgresql"]
==> Executing: ["/usr/local/bin/brew", "install", "postgresql"]
done
complete
==> Downloading
==> Downloading https://osx.metasploit.com/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg
==> Calling curl with args ["https://osx.metasploit.com/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg", "-C", "0", "-o", "#<Pathname:/Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg.incomplete>"]
/usr/bin/curl --remote-time --location --user-agent Homebrew/1.1.12 (Macintosh; Intel macOS 10.12.4) curl/7.51.0 --fail https://osx.metasploit.com/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg -C 0 -o /Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg.incomplete
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 154M 100 154M 0 0 939k 0 0:02:48 0:02:48 --:--:-- 1006k
==> Downloaded to -> /Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg
==> Verifying download
==> Determining which verifications to run for Cask metasploit
==> Checking for verification class Hbc::Verify::Checksum
==> 1 verifications defined
Hbc::Verify::Checksum
==> Running verification of class Hbc::Verify::Checksum
==> Verifying checksum for Cask metasploit
==> SHA256 checksums match
==> Hbc::Installer#stage
==> Extracting primary container
==> Determining which containers to use based on filetype
==> Checking container class Hbc::Container::Pkg
==> Using container class Hbc::Container::Pkg for /Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg
==> Executing: ["/usr/bin/ditto", "--", "/Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg", "/usr/local/Caskroom/metasploit/4.14.6,20170331092309/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg"]
==> Creating metadata directory /usr/local/Caskroom/metasploit/.metadata/4.14.6,20170331092309/20170404201719.818
==> Creating metadata subdirectory /usr/local/Caskroom/metasploit/.metadata/4.14.6,20170331092309/20170404201719.818/Casks
==> Installing artifacts
==> Determining which artifacts are present in Cask metasploit
==> 3 artifact/s defined
#<Hbc::Artifact::Pkg:0x007fc666722958>
#<Hbc::Artifact::Binary:0x007fc6667228e0>
#<Hbc::Artifact::Uninstall:0x007fc666722868>
==> Installing artifact of class Hbc::Artifact::Pkg
==> Running installer for metasploit; your password may be necessary.
==> Package installers may write to any location; options such as --appdir are ignored.
==> Executing: ["/usr/bin/sudo", "-E", "--", "/usr/sbin/installer", "-pkg", "/usr/local/Caskroom/metasploit/4.14.6,20170331092309/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg", "-target", "/", "-verboseR"]
==> installer: Package name is Metasploit-framework
==> installer: Installing at base path /
==> installer:PHASE:Preparing for installation…
==> installer:PHASE:Preparing the disk…
==> installer:PHASE:Preparing Metasploit-framework…
==> installer:PHASE:Waiting for other installations to complete…
==> installer:PHASE:Configuring the installation…
==> installer:STATUS:
==> installer:%4.493373
==> installer:PHASE:Writing files…
==> installer:%6.587818
==> installer:PHASE:Writing files…
==> installer:%9.224563
==> installer:PHASE:Writing files…
==> installer:%10.542936
==> installer:PHASE:Writing files…
==> installer:%11.861309
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%13.179682
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%14.498055
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%15.816427
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%22.408291
==> installer:PHASE:Writing files…
==> installer:%26.363410
==> installer:PHASE:Writing files…
==> installer:%30.318528
==> installer:PHASE:Writing files…
==> installer:%31.636901
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%32.955274
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%35.592019
==> installer:PHASE:Writing files…
==> installer:%38.228765
==> installer:PHASE:Writing files…
==> installer:%40.865510
==> installer:PHASE:Writing files…
==> installer:%42.183883
==> installer:PHASE:Writing files…
==> installer:%43.502256
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%44.820629
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%46.139001
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%48.775747
==> installer:PHASE:Writing files…
==> installer:%50.094120
==> installer:PHASE:Writing files…
==> installer:%51.412493
==> installer:PHASE:Writing files…
==> installer:%52.730865
==> installer:PHASE:Writing files…
==> installer:%54.049238
==> installer:PHASE:Writing files…
==> installer:%55.367611
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%81.753238
==> installer:PHASE:Writing package receipts…
==> installer:%82.405864
==> installer:PHASE:Writing package receipts…
==> installer:%83.067902
==> installer:PHASE:Writing package receipts…
==> installer:PHASE:Validating packages…
==> installer:%97.750000
==> installer:STATUS:Running installer actions…
==> installer:STATUS:
==> installer:PHASE:Finishing the Installation…
==> installer:STATUS:
==> installer:%100.000000
==> installer:PHASE:The software was successfully installed.
==> installer: The install was successful.
==> Installing artifact of class Hbc::Artifact::Binary
==> Linking Binary 'metasploit-aggregator' to '/usr/local/bin/metasploit-aggregator'.
==> Executing: ["/bin/ln", "-h", "-f", "-s", "--", "/opt/metasploit-framework/bin/metasploit-aggregator", "/usr/local/bin/metasploit-aggregator"]
==> Purging files for version 4.14.6,20170331092309 of Cask metasploit
Error: Operation not permitted - /opt/metasploit-framework/bin/metasploit-aggregator
Follow the instructions here:
https://github.com/caskroom/homebrew-cask#reporting-bugs
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:1333:in `chmod'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:1333:in `chmod'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:975:in `block in chmod'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:974:in `each'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:974:in `chmod'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/binary.rb:12:in `link'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb:48:in `block in each_artifact'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/set.rb:232:in `each_key'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/set.rb:232:in `each'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb:46:in `each_artifact'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/symlinked.rb:15:in `install_phase'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/binary.rb:7:in `install_phase'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:144:in `block in install_artifacts'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:141:in `each'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:141:in `install_artifacts'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:87:in `install'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:25:in `block in install_casks'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:19:in `each'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:19:in `install_casks'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:10:in `run'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:115:in `run_command'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:158:in `process'
/usr/local/Homebrew/Library/Homebrew/cmd/cask.rb:8:in `cask'
/usr/local/Homebrew/Library/Homebrew/brew.rb:91:in `<main>'
Error: Kernel.exit
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:169:in `exit'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:169:in `rescue in process'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:149:in `process'
/usr/local/Homebrew/Library/Homebrew/cmd/cask.rb:8:in `cask'
/usr/local/Homebrew/Library/Homebrew/brew.rb:91:in `<main>'
```
#### Output of `brew cask doctor`
```
==> Homebrew-Cask Version
Homebrew-Cask 1.1.12
caskroom/homebrew-cask (git revision 4472; last commit 2017-04-04)
==> Homebrew-Cask Install Location
<NONE>
==> Homebrew-Cask Staging Location
/usr/local/Caskroom
==> Homebrew-Cask Cached Downloads
~/Library/Caches/Homebrew/Cask (1 files, 154.4MB)
==> Homebrew-Cask Taps:
/usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask (3629 casks)
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core (0 casks)
==> Contents of $LOAD_PATH
/usr/local/Homebrew/Library/Homebrew/cask/lib
/usr/local/Homebrew/Library/Homebrew
/Library/Ruby/Site/2.0.0
/Library/Ruby/Site/2.0.0/x86_64-darwin16
/Library/Ruby/Site/2.0.0/universal-darwin16
/Library/Ruby/Site
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby/2.0.0
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby/2.0.0/x86_64-darwin16
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby/2.0.0/universal-darwin16
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/x86_64-darwin16
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin16
==> Environment Variables
LANG="en_AU.UTF-8"
PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/Homebrew/Library/Homebrew/shims/scm"
SHELL="/bin/bash"
```
#### Output of `brew doctor`
```
Your system is ready to brew.
```
#### Output of `brew config`
```
HOMEBREW_VERSION: 1.1.12
ORIGIN: https://github.com/Homebrew/brew
HEAD: 8ea778f7c7ea790694485030d105a92a9416ef33
Last commit: 2 days ago
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core
Core tap HEAD: 5ed21bf15977a02a7bb6ac6b80c38a0c393dbee5
Core tap last commit: 53 minutes ago
HOMEBREW_PREFIX: /usr/local
HOMEBREW_REPOSITORY: /usr/local/Homebrew
HOMEBREW_CELLAR: /usr/local/Cellar
HOMEBREW_BOTTLE_DOMAIN: https://homebrew.bintray.com
CPU: dual-core 64-bit sandybridge
Homebrew Ruby: 2.0.0-p648
Clang: 8.1 build 802
Git: 2.11.0 => /Library/Developer/CommandLineTools/usr/bin/git
Perl: /usr/bin/perl
Python: /usr/bin/python
Ruby: /usr/bin/ruby => /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
Java: N/A
macOS: 10.12.4-x86_64
Xcode: N/A
CLT: 8.3.0.0.1.1490382677
X11: N/A
```
#### File permissions
##### current metasploit cask
```
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 metasploit-aggregator
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfbinscan
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfconsole
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfd
-rwxr-xr-x 1 root wheel 586B 31 Mar 19:38 msfdb
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfelfscan
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfmachscan
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfpescan
-rwxr-xr-x 1 root wheel 1.1K 31 Mar 19:38 msfremove
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfrop
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfrpc
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfrpcd
-rwxr-xr-x 1 root wheel 5.3K 31 Mar 19:38 msfupdate
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfvenom
```
##### original metasploit cask
```
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 metasploit-aggregator
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfbinscan
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfconsole
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfd
-rwxr-xr-x 1 root wheel 586B 25 Mar 19:37 msfdb
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfelfscan
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfmachscan
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfpescan
-rwxr-xr-x 1 root wheel 1.1K 25 Mar 19:37 msfremove
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfrop
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfrpc
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfrpcd
-rwxr-xr-x 1 root wheel 5.3K 25 Mar 19:37 msfupdate
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfvenom
```
##### newest metasploit version
```
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 metasploit-aggregator
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfbinscan
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfconsole
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfd
-rwxr-xr-x 1 root wheel 586B 4 Apr 19:38 msfdb
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfelfscan
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfmachscan
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfpescan
-rwxr-xr-x 1 root wheel 1.1K 4 Apr 19:38 msfremove
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfrop
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfrpc
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfrpcd
-rwxr-xr-x 1 root wheel 5.3K 4 Apr 19:38 msfupdate
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfvenom
``` | True | metasploit install fails when linking binary - #### General troubleshooting steps
- [x] I have checked the instructions for [reporting bugs](https://github.com/caskroom/homebrew-cask#reporting-bugs) (or [making requests](https://github.com/caskroom/homebrew-cask#requests)) before opening the issue.
- [x] None of the templates was appropriate for my issue, or I’m not sure.
- [x] I ran `brew update-reset && brew update` and retried my command.
- [x] I ran `brew doctor`, fixed as many issues as possible and retried my command.
- [x] I understand that [if I ignore these instructions, my issue may be closed without review](https://github.com/caskroom/homebrew-cask/blob/master/doc/faq/closing_issues_without_review.md).
#### Description of issue
[metasploit](https://github.com/caskroom/homebrew-cask/blob/master/Casks/metasploit.rb) install fails when `Linking Binary` errors with `Operation not permitted`.
`brew cask install metasploit --verbose --debug` fails with the same error on two computers (10.12.4 - CLT 8.3 and 10.12.3 - CLT 8.2) with up to date HB and in new VM (10.12.4 - CLT 8.3) with fresh HB install.
The cask itself is less than two weeks old and installed without error for me about a week ago.
I've manually installed the first version of this cask #31311 and the newest version from rapid7 [metasploit-framework-4.14.8+20170404092313-1rapid7-1.pkg](https://osx.metasploit.com/metasploit-framework-4.14.8%2B20170404092313-1rapid7-1.pkg) and the permissions after install appear to be the same. I've included the permissions at the end.
Outputs below are from the VM.
#### Output of your command with `--verbose --debug`
```
$ brew cask install metasploit --verbose --debug
==> Tapping caskroom/cask
git clone https://github.com/caskroom/homebrew-cask /usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask --depth=1
Cloning into '/usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask'...
remote: Counting objects: 3734, done.
remote: Compressing objects: 100% (3718/3718), done.
remote: Total 3734 (delta 36), reused 376 (delta 12), pack-reused 0
Receiving objects: 100% (3734/3734), 1.25 MiB | 1.20 MiB/s, done.
Resolving deltas: 100% (36/36), done.
Tapped 0 formulae (3,743 files, 3.9MB)
git config --local --replace-all homebrew.private false
==> Creating Cache at /Users/commitay/Library/Caches/Homebrew/Cask
==> Creating Caskroom at /usr/local/Caskroom
==> We'll set permissions properly so we won't need sudo in the future
==> Executing: ["/usr/bin/sudo", "-E", "--", "/bin/mkdir", "-p", "/usr/local/Caskroom"]
Password:
==> Executing: ["/usr/bin/sudo", "-E", "--", "/bin/chmod", "g+rwx", "/usr/local/Caskroom"]
==> Executing: ["/usr/bin/sudo", "-E", "--", "/usr/sbin/chown", "commitay", "/usr/local/Caskroom"]
==> Executing: ["/usr/bin/sudo", "-E", "--", "/usr/bin/chgrp", "admin", "/usr/local/Caskroom"]
==> Hbc::Installer#install
==> Printing caveats
==> Hbc::Installer#fetch
==> Satisfying dependencies
==> Installing Formula dependencies from Homebrew
nmap ... ==> Executing: ["/usr/local/bin/brew", "list", "--versions", "nmap"]
==> Executing: ["/usr/local/bin/brew", "install", "nmap"]
done
postgresql ... ==> Executing: ["/usr/local/bin/brew", "list", "--versions", "postgresql"]
==> Executing: ["/usr/local/bin/brew", "install", "postgresql"]
done
complete
==> Downloading
==> Downloading https://osx.metasploit.com/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg
==> Calling curl with args ["https://osx.metasploit.com/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg", "-C", "0", "-o", "#<Pathname:/Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg.incomplete>"]
/usr/bin/curl --remote-time --location --user-agent Homebrew/1.1.12 (Macintosh; Intel macOS 10.12.4) curl/7.51.0 --fail https://osx.metasploit.com/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg -C 0 -o /Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg.incomplete
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 154M 100 154M 0 0 939k 0 0:02:48 0:02:48 --:--:-- 1006k
==> Downloaded to -> /Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg
==> Verifying download
==> Determining which verifications to run for Cask metasploit
==> Checking for verification class Hbc::Verify::Checksum
==> 1 verifications defined
Hbc::Verify::Checksum
==> Running verification of class Hbc::Verify::Checksum
==> Verifying checksum for Cask metasploit
==> SHA256 checksums match
==> Hbc::Installer#stage
==> Extracting primary container
==> Determining which containers to use based on filetype
==> Checking container class Hbc::Container::Pkg
==> Using container class Hbc::Container::Pkg for /Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg
==> Executing: ["/usr/bin/ditto", "--", "/Users/commitay/Library/Caches/Homebrew/Cask/metasploit--4.14.6,20170331092309.pkg", "/usr/local/Caskroom/metasploit/4.14.6,20170331092309/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg"]
==> Creating metadata directory /usr/local/Caskroom/metasploit/.metadata/4.14.6,20170331092309/20170404201719.818
==> Creating metadata subdirectory /usr/local/Caskroom/metasploit/.metadata/4.14.6,20170331092309/20170404201719.818/Casks
==> Installing artifacts
==> Determining which artifacts are present in Cask metasploit
==> 3 artifact/s defined
#<Hbc::Artifact::Pkg:0x007fc666722958>
#<Hbc::Artifact::Binary:0x007fc6667228e0>
#<Hbc::Artifact::Uninstall:0x007fc666722868>
==> Installing artifact of class Hbc::Artifact::Pkg
==> Running installer for metasploit; your password may be necessary.
==> Package installers may write to any location; options such as --appdir are ignored.
==> Executing: ["/usr/bin/sudo", "-E", "--", "/usr/sbin/installer", "-pkg", "/usr/local/Caskroom/metasploit/4.14.6,20170331092309/metasploit-framework-4.14.6+20170331092309-1rapid7-1.pkg", "-target", "/", "-verboseR"]
==> installer: Package name is Metasploit-framework
==> installer: Installing at base path /
==> installer:PHASE:Preparing for installation…
==> installer:PHASE:Preparing the disk…
==> installer:PHASE:Preparing Metasploit-framework…
==> installer:PHASE:Waiting for other installations to complete…
==> installer:PHASE:Configuring the installation…
==> installer:STATUS:
==> installer:%4.493373
==> installer:PHASE:Writing files…
==> installer:%6.587818
==> installer:PHASE:Writing files…
==> installer:%9.224563
==> installer:PHASE:Writing files…
==> installer:%10.542936
==> installer:PHASE:Writing files…
==> installer:%11.861309
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%13.179682
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%14.498055
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%15.816427
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%22.408291
==> installer:PHASE:Writing files…
==> installer:%26.363410
==> installer:PHASE:Writing files…
==> installer:%30.318528
==> installer:PHASE:Writing files…
==> installer:%31.636901
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%32.955274
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%35.592019
==> installer:PHASE:Writing files…
==> installer:%38.228765
==> installer:PHASE:Writing files…
==> installer:%40.865510
==> installer:PHASE:Writing files…
==> installer:%42.183883
==> installer:PHASE:Writing files…
==> installer:%43.502256
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%44.820629
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%46.139001
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%48.775747
==> installer:PHASE:Writing files…
==> installer:%50.094120
==> installer:PHASE:Writing files…
==> installer:%51.412493
==> installer:PHASE:Writing files…
==> installer:%52.730865
==> installer:PHASE:Writing files…
==> installer:%54.049238
==> installer:PHASE:Writing files…
==> installer:%55.367611
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:PHASE:Writing files…
==> installer:%81.753238
==> installer:PHASE:Writing package receipts…
==> installer:%82.405864
==> installer:PHASE:Writing package receipts…
==> installer:%83.067902
==> installer:PHASE:Writing package receipts…
==> installer:PHASE:Validating packages…
==> installer:%97.750000
==> installer:STATUS:Running installer actions…
==> installer:STATUS:
==> installer:PHASE:Finishing the Installation…
==> installer:STATUS:
==> installer:%100.000000
==> installer:PHASE:The software was successfully installed.
==> installer: The install was successful.
==> Installing artifact of class Hbc::Artifact::Binary
==> Linking Binary 'metasploit-aggregator' to '/usr/local/bin/metasploit-aggregator'.
==> Executing: ["/bin/ln", "-h", "-f", "-s", "--", "/opt/metasploit-framework/bin/metasploit-aggregator", "/usr/local/bin/metasploit-aggregator"]
==> Purging files for version 4.14.6,20170331092309 of Cask metasploit
Error: Operation not permitted - /opt/metasploit-framework/bin/metasploit-aggregator
Follow the instructions here:
https://github.com/caskroom/homebrew-cask#reporting-bugs
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:1333:in `chmod'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:1333:in `chmod'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:975:in `block in chmod'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:974:in `each'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/fileutils.rb:974:in `chmod'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/binary.rb:12:in `link'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb:48:in `block in each_artifact'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/set.rb:232:in `each_key'
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/set.rb:232:in `each'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb:46:in `each_artifact'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/symlinked.rb:15:in `install_phase'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/artifact/binary.rb:7:in `install_phase'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:144:in `block in install_artifacts'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:141:in `each'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:141:in `install_artifacts'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/installer.rb:87:in `install'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:25:in `block in install_casks'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:19:in `each'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:19:in `install_casks'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli/install.rb:10:in `run'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:115:in `run_command'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:158:in `process'
/usr/local/Homebrew/Library/Homebrew/cmd/cask.rb:8:in `cask'
/usr/local/Homebrew/Library/Homebrew/brew.rb:91:in `<main>'
Error: Kernel.exit
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:169:in `exit'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:169:in `rescue in process'
/usr/local/Homebrew/Library/Homebrew/cask/lib/hbc/cli.rb:149:in `process'
/usr/local/Homebrew/Library/Homebrew/cmd/cask.rb:8:in `cask'
/usr/local/Homebrew/Library/Homebrew/brew.rb:91:in `<main>'
```
#### Output of `brew cask doctor`
```
==> Homebrew-Cask Version
Homebrew-Cask 1.1.12
caskroom/homebrew-cask (git revision 4472; last commit 2017-04-04)
==> Homebrew-Cask Install Location
<NONE>
==> Homebrew-Cask Staging Location
/usr/local/Caskroom
==> Homebrew-Cask Cached Downloads
~/Library/Caches/Homebrew/Cask (1 files, 154.4MB)
==> Homebrew-Cask Taps:
/usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask (3629 casks)
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core (0 casks)
==> Contents of $LOAD_PATH
/usr/local/Homebrew/Library/Homebrew/cask/lib
/usr/local/Homebrew/Library/Homebrew
/Library/Ruby/Site/2.0.0
/Library/Ruby/Site/2.0.0/x86_64-darwin16
/Library/Ruby/Site/2.0.0/universal-darwin16
/Library/Ruby/Site
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby/2.0.0
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby/2.0.0/x86_64-darwin16
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby/2.0.0/universal-darwin16
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/vendor_ruby
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/x86_64-darwin16
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin16
==> Environment Variables
LANG="en_AU.UTF-8"
PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/Homebrew/Library/Homebrew/shims/scm"
SHELL="/bin/bash"
```
#### Output of `brew doctor`
```
Your system is ready to brew.
```
#### Output of `brew config`
```
HOMEBREW_VERSION: 1.1.12
ORIGIN: https://github.com/Homebrew/brew
HEAD: 8ea778f7c7ea790694485030d105a92a9416ef33
Last commit: 2 days ago
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core
Core tap HEAD: 5ed21bf15977a02a7bb6ac6b80c38a0c393dbee5
Core tap last commit: 53 minutes ago
HOMEBREW_PREFIX: /usr/local
HOMEBREW_REPOSITORY: /usr/local/Homebrew
HOMEBREW_CELLAR: /usr/local/Cellar
HOMEBREW_BOTTLE_DOMAIN: https://homebrew.bintray.com
CPU: dual-core 64-bit sandybridge
Homebrew Ruby: 2.0.0-p648
Clang: 8.1 build 802
Git: 2.11.0 => /Library/Developer/CommandLineTools/usr/bin/git
Perl: /usr/bin/perl
Python: /usr/bin/python
Ruby: /usr/bin/ruby => /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
Java: N/A
macOS: 10.12.4-x86_64
Xcode: N/A
CLT: 8.3.0.0.1.1490382677
X11: N/A
```
#### File permissions
##### current metasploit cask
```
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 metasploit-aggregator
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfbinscan
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfconsole
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfd
-rwxr-xr-x 1 root wheel 586B 31 Mar 19:38 msfdb
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfelfscan
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfmachscan
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfpescan
-rwxr-xr-x 1 root wheel 1.1K 31 Mar 19:38 msfremove
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfrop
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfrpc
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfrpcd
-rwxr-xr-x 1 root wheel 5.3K 31 Mar 19:38 msfupdate
-rwxr-xr-x 1 root wheel 2.9K 31 Mar 19:38 msfvenom
```
##### original metasploit cask
```
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 metasploit-aggregator
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfbinscan
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfconsole
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfd
-rwxr-xr-x 1 root wheel 586B 25 Mar 19:37 msfdb
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfelfscan
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfmachscan
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfpescan
-rwxr-xr-x 1 root wheel 1.1K 25 Mar 19:37 msfremove
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfrop
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfrpc
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfrpcd
-rwxr-xr-x 1 root wheel 5.3K 25 Mar 19:37 msfupdate
-rwxr-xr-x 1 root wheel 2.9K 25 Mar 19:37 msfvenom
```
##### newest metasploit version
```
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 metasploit-aggregator
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfbinscan
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfconsole
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfd
-rwxr-xr-x 1 root wheel 586B 4 Apr 19:38 msfdb
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfelfscan
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfmachscan
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfpescan
-rwxr-xr-x 1 root wheel 1.1K 4 Apr 19:38 msfremove
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfrop
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfrpc
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfrpcd
-rwxr-xr-x 1 root wheel 5.3K 4 Apr 19:38 msfupdate
-rwxr-xr-x 1 root wheel 2.9K 4 Apr 19:38 msfvenom
``` | main | metasploit install fails when linking binary general troubleshooting steps i have checked the instructions for or before opening the issue none of the templates was appropriate for my issue or i’m not sure i ran brew update reset brew update and retried my command i ran brew doctor fixed as many issues as possible and retried my command i understand that description of issue install fails when linking binary errors with operation not permitted brew cask install metasploit verbose debug fails with the same error on two computers clt and clt with up to date hb and in new vm clt with fresh hb install the cask itself is less than two weeks old and installed without error for me about a week ago i ve manually installed the first version of this cask and the newest version from and the permissions after install appear to be the same i ve included the permissions at the end outputs below are from the vm output of your command with verbose debug brew cask install metasploit verbose debug tapping caskroom cask git clone usr local homebrew library taps caskroom homebrew cask depth cloning into usr local homebrew library taps caskroom homebrew cask remote counting objects done remote compressing objects done remote total delta reused delta pack reused receiving objects mib mib s done resolving deltas done tapped formulae files git config local replace all homebrew private false creating cache at users commitay library caches homebrew cask creating caskroom at usr local caskroom we ll set permissions properly so we won t need sudo in the future executing password executing executing executing hbc installer install printing caveats hbc installer fetch satisfying dependencies installing formula dependencies from homebrew nmap executing executing done postgresql executing executing done complete downloading downloading calling curl with args usr bin curl remote time location user agent homebrew macintosh intel macos curl fail c o users commitay library caches homebrew cask metasploit pkg incomplete total received xferd average speed time time time current dload upload total spent left speed downloaded to users commitay library caches homebrew cask metasploit pkg verifying download determining which verifications to run for cask metasploit checking for verification class hbc verify checksum verifications defined hbc verify checksum running verification of class hbc verify checksum verifying checksum for cask metasploit checksums match hbc installer stage extracting primary container determining which containers to use based on filetype checking container class hbc container pkg using container class hbc container pkg for users commitay library caches homebrew cask metasploit pkg executing creating metadata directory usr local caskroom metasploit metadata creating metadata subdirectory usr local caskroom metasploit metadata casks installing artifacts determining which artifacts are present in cask metasploit artifact s defined installing artifact of class hbc artifact pkg running installer for metasploit your password may be necessary package installers may write to any location options such as appdir are ignored executing installer package name is metasploit framework installer installing at base path installer phase preparing for installation… installer phase preparing the disk… installer phase preparing metasploit framework… installer phase waiting for other installations to complete… installer phase configuring the installation… installer status installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer phase writing files… installer installer phase writing files… installer phase writing files… installer installer phase writing files… installer phase writing files… installer installer phase writing files… installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer phase writing files… installer phase writing files… installer installer phase writing files… installer phase writing files… installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer phase writing files… installer installer phase writing files… installer phase writing files… installer phase writing files… installer phase writing files… installer phase writing files… installer phase writing files… installer installer phase writing files… installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer installer phase writing files… installer phase writing files… installer phase writing files… installer phase writing files… installer installer phase writing package receipts… installer installer phase writing package receipts… installer installer phase writing package receipts… installer phase validating packages… installer installer status running installer actions… installer status installer phase finishing the installation… installer status installer installer phase the software was successfully installed installer the install was successful installing artifact of class hbc artifact binary linking binary metasploit aggregator to usr local bin metasploit aggregator executing purging files for version of cask metasploit error operation not permitted opt metasploit framework bin metasploit aggregator follow the instructions here system library frameworks ruby framework versions usr lib ruby fileutils rb in chmod system library frameworks ruby framework versions usr lib ruby fileutils rb in chmod system library frameworks ruby framework versions usr lib ruby fileutils rb in block in chmod system library frameworks ruby framework versions usr lib ruby fileutils rb in each system library frameworks ruby framework versions usr lib ruby fileutils rb in chmod usr local homebrew library homebrew cask lib hbc artifact binary rb in link usr local homebrew library homebrew cask lib hbc artifact relocated rb in block in each artifact system library frameworks ruby framework versions usr lib ruby set rb in each key system library frameworks ruby framework versions usr lib ruby set rb in each usr local homebrew library homebrew cask lib hbc artifact relocated rb in each artifact usr local homebrew library homebrew cask lib hbc artifact symlinked rb in install phase usr local homebrew library homebrew cask lib hbc artifact binary rb in install phase usr local homebrew library homebrew cask lib hbc installer rb in block in install artifacts usr local homebrew library homebrew cask lib hbc installer rb in each usr local homebrew library homebrew cask lib hbc installer rb in install artifacts usr local homebrew library homebrew cask lib hbc installer rb in install usr local homebrew library homebrew cask lib hbc cli install rb in block in install casks usr local homebrew library homebrew cask lib hbc cli install rb in each usr local homebrew library homebrew cask lib hbc cli install rb in install casks usr local homebrew library homebrew cask lib hbc cli install rb in run usr local homebrew library homebrew cask lib hbc cli rb in run command usr local homebrew library homebrew cask lib hbc cli rb in process usr local homebrew library homebrew cmd cask rb in cask usr local homebrew library homebrew brew rb in error kernel exit usr local homebrew library homebrew cask lib hbc cli rb in exit usr local homebrew library homebrew cask lib hbc cli rb in rescue in process usr local homebrew library homebrew cask lib hbc cli rb in process usr local homebrew library homebrew cmd cask rb in cask usr local homebrew library homebrew brew rb in output of brew cask doctor homebrew cask version homebrew cask caskroom homebrew cask git revision last commit homebrew cask install location homebrew cask staging location usr local caskroom homebrew cask cached downloads library caches homebrew cask files homebrew cask taps usr local homebrew library taps caskroom homebrew cask casks usr local homebrew library taps homebrew homebrew core casks contents of load path usr local homebrew library homebrew cask lib usr local homebrew library homebrew library ruby site library ruby site library ruby site universal library ruby site system library frameworks ruby framework versions usr lib ruby vendor ruby system library frameworks ruby framework versions usr lib ruby vendor ruby system library frameworks ruby framework versions usr lib ruby vendor ruby universal system library frameworks ruby framework versions usr lib ruby vendor ruby system library frameworks ruby framework versions usr lib ruby system library frameworks ruby framework versions usr lib ruby system library frameworks ruby framework versions usr lib ruby universal environment variables lang en au utf path usr local bin usr bin bin usr sbin sbin usr local homebrew library homebrew shims scm shell bin bash output of brew doctor your system is ready to brew output of brew config homebrew version origin head last commit days ago core tap origin core tap head core tap last commit minutes ago homebrew prefix usr local homebrew repository usr local homebrew homebrew cellar usr local cellar homebrew bottle domain cpu dual core bit sandybridge homebrew ruby clang build git library developer commandlinetools usr bin git perl usr bin perl python usr bin python ruby usr bin ruby system library frameworks ruby framework versions usr bin ruby java n a macos xcode n a clt n a file permissions current metasploit cask rwxr xr x root wheel mar metasploit aggregator rwxr xr x root wheel mar msfbinscan rwxr xr x root wheel mar msfconsole rwxr xr x root wheel mar msfd rwxr xr x root wheel mar msfdb rwxr xr x root wheel mar msfelfscan rwxr xr x root wheel mar msfmachscan rwxr xr x root wheel mar msfpescan rwxr xr x root wheel mar msfremove rwxr xr x root wheel mar msfrop rwxr xr x root wheel mar msfrpc rwxr xr x root wheel mar msfrpcd rwxr xr x root wheel mar msfupdate rwxr xr x root wheel mar msfvenom original metasploit cask rwxr xr x root wheel mar metasploit aggregator rwxr xr x root wheel mar msfbinscan rwxr xr x root wheel mar msfconsole rwxr xr x root wheel mar msfd rwxr xr x root wheel mar msfdb rwxr xr x root wheel mar msfelfscan rwxr xr x root wheel mar msfmachscan rwxr xr x root wheel mar msfpescan rwxr xr x root wheel mar msfremove rwxr xr x root wheel mar msfrop rwxr xr x root wheel mar msfrpc rwxr xr x root wheel mar msfrpcd rwxr xr x root wheel mar msfupdate rwxr xr x root wheel mar msfvenom newest metasploit version rwxr xr x root wheel apr metasploit aggregator rwxr xr x root wheel apr msfbinscan rwxr xr x root wheel apr msfconsole rwxr xr x root wheel apr msfd rwxr xr x root wheel apr msfdb rwxr xr x root wheel apr msfelfscan rwxr xr x root wheel apr msfmachscan rwxr xr x root wheel apr msfpescan rwxr xr x root wheel apr msfremove rwxr xr x root wheel apr msfrop rwxr xr x root wheel apr msfrpc rwxr xr x root wheel apr msfrpcd rwxr xr x root wheel apr msfupdate rwxr xr x root wheel apr msfvenom | 1 |
4,682 | 24,188,944,061 | IssuesEvent | 2022-09-23 15:36:01 | centerofci/mathesar | https://api.github.com/repos/centerofci/mathesar | opened | Improve performance when syncing Django objects with reflected db objects | type: enhancement work: backend status: ready restricted: maintainers | ## Problem
Reflecting and syncing up db objects into the Mathesar Django database leads to a lot of queries(around 28 queries on Django and 300 queries on the user database)
## Proposed solution
Fetch and updates objects in bulk instead of a single query for each object
## Additional context
<!-- Add any other context or screenshots about the feature request here.-->
| True | Improve performance when syncing Django objects with reflected db objects - ## Problem
Reflecting and syncing up db objects into the Mathesar Django database leads to a lot of queries(around 28 queries on Django and 300 queries on the user database)
## Proposed solution
Fetch and updates objects in bulk instead of a single query for each object
## Additional context
<!-- Add any other context or screenshots about the feature request here.-->
| main | improve performance when syncing django objects with reflected db objects problem reflecting and syncing up db objects into the mathesar django database leads to a lot of queries around queries on django and queries on the user database proposed solution fetch and updates objects in bulk instead of a single query for each object additional context | 1 |
4,985 | 25,593,822,863 | IssuesEvent | 2022-12-01 14:50:55 | precice/precice | https://api.github.com/repos/precice/precice | closed | Change default symbol visibility to hidden | enhancement maintainability | To reduce the symbol visibility to the actual API, we should change the default visibility to `hidden`.
This has some upsides:
1. We adapt the default on Windows platforms
2. We reduce binary size
3. We reduce shared object load time
Downsides are:
1. We have to explicitly mark API functions (CMake can generate export headers)
2. We cannot use the shared library for the unit tests anymore.
We need to add an object library target that compiles the sources.
References:
* [GCC wiki on visibility](https://gcc.gnu.org/wiki/Visibility)
* [CMake generate export header](https://cmake.org/cmake/help/v3.10/module/GenerateExportHeader.html)
* [CMake visibilty preset](https://cmake.org/cmake/help/v3.10/prop_tgt/LANG_VISIBILITY_PRESET.html)
* [CMake inline visibility preset](https://cmake.org/cmake/help/v3.10/prop_tgt/VISIBILITY_INLINES_HIDDEN.html)
* [CMake add_library(OBJECT)](https://cmake.org/cmake/help/v3.10/command/add_library.html?highlight=add_library#object-libraries)
Related to #200
| True | Change default symbol visibility to hidden - To reduce the symbol visibility to the actual API, we should change the default visibility to `hidden`.
This has some upsides:
1. We adapt the default on Windows platforms
2. We reduce binary size
3. We reduce shared object load time
Downsides are:
1. We have to explicitly mark API functions (CMake can generate export headers)
2. We cannot use the shared library for the unit tests anymore.
We need to add an object library target that compiles the sources.
References:
* [GCC wiki on visibility](https://gcc.gnu.org/wiki/Visibility)
* [CMake generate export header](https://cmake.org/cmake/help/v3.10/module/GenerateExportHeader.html)
* [CMake visibilty preset](https://cmake.org/cmake/help/v3.10/prop_tgt/LANG_VISIBILITY_PRESET.html)
* [CMake inline visibility preset](https://cmake.org/cmake/help/v3.10/prop_tgt/VISIBILITY_INLINES_HIDDEN.html)
* [CMake add_library(OBJECT)](https://cmake.org/cmake/help/v3.10/command/add_library.html?highlight=add_library#object-libraries)
Related to #200
| main | change default symbol visibility to hidden to reduce the symbol visibility to the actual api we should change the default visibility to hidden this has some upsides we adapt the default on windows platforms we reduce binary size we reduce shared object load time downsides are we have to explicitly mark api functions cmake can generate export headers we cannot use the shared library for the unit tests anymore we need to add an object library target that compiles the sources references related to | 1 |
5,679 | 29,833,368,866 | IssuesEvent | 2023-06-18 14:40:03 | Windham-High-School/CubeServer | https://api.github.com/repos/Windham-High-School/CubeServer | closed | Migrate logging destination | duplicate maintainability | Change docker compose logging destination to file or something... Getting weird problems and hard to grep logs | True | Migrate logging destination - Change docker compose logging destination to file or something... Getting weird problems and hard to grep logs | main | migrate logging destination change docker compose logging destination to file or something getting weird problems and hard to grep logs | 1 |
4,304 | 21,681,193,646 | IssuesEvent | 2022-05-09 06:47:28 | svengreb/wand | https://api.github.com/repos/svengreb/wand | closed | Update to `tmpl-go` template repository version `0.12.0` | type-improvement context-techstack scope-compatibility scope-maintainability | Update to [`tmpl-go` version `0.12.0`][1] which…
1. [updated to the `tmpl` template repository version `0.11.0`][2].
This will also include changes required for any linter matches.
See the [full `tmpl-go` version `0.12.0` changelog][1] for all details.
[1]: https://github.com/svengreb/tmpl-go/releases/tag/v0.12.0
[2]: https://github.com/svengreb/tmpl-go/issues/91
| True | Update to `tmpl-go` template repository version `0.12.0` - Update to [`tmpl-go` version `0.12.0`][1] which…
1. [updated to the `tmpl` template repository version `0.11.0`][2].
This will also include changes required for any linter matches.
See the [full `tmpl-go` version `0.12.0` changelog][1] for all details.
[1]: https://github.com/svengreb/tmpl-go/releases/tag/v0.12.0
[2]: https://github.com/svengreb/tmpl-go/issues/91
| main | update to tmpl go template repository version update to which… this will also include changes required for any linter matches see the for all details | 1 |
2,991 | 10,852,237,792 | IssuesEvent | 2019-11-13 12:24:04 | precice/precice | https://api.github.com/repos/precice/precice | opened | Remove MasterSlave | enhancement maintainability | To fully support multiple instances of the SolverInterface in one executable, we need to get rid of some `static` state.
The communicator internal to the participant [`utils::MasterSlave`](https://xgm.de/precice/docs/develop/classprecice_1_1utils_1_1MasterSlave.html) should become member of the participant itself. And passed as context to all components relying on it.
This design decision will make our components easier to test too.
Moving it would also be a good opportunity to give it a more expressive name.
Related to #378 and #385 | True | Remove MasterSlave - To fully support multiple instances of the SolverInterface in one executable, we need to get rid of some `static` state.
The communicator internal to the participant [`utils::MasterSlave`](https://xgm.de/precice/docs/develop/classprecice_1_1utils_1_1MasterSlave.html) should become member of the participant itself. And passed as context to all components relying on it.
This design decision will make our components easier to test too.
Moving it would also be a good opportunity to give it a more expressive name.
Related to #378 and #385 | main | remove masterslave to fully support multiple instances of the solverinterface in one executable we need to get rid of some static state the communicator internal to the participant should become member of the participant itself and passed as context to all components relying on it this design decision will make our components easier to test too moving it would also be a good opportunity to give it a more expressive name related to and | 1 |
1,180 | 5,096,339,470 | IssuesEvent | 2017-01-03 17:53:03 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | mount module feature request: allow to mount without adding to fstab | affects_2.3 feature_idea waiting_on_maintainer | Hello,
For temporary need, it should be possible to mount a filesystem without adding it to fstab
http://docs.ansible.com/ansible/mount_module.html
The state values should be updated
present
absent
mounted (just mount)
mountedandpresent (mount+fstab)
unmounted (unmount)
unmountedandpresent (unmount but keep in fstab; ex: with opts noauto - only manual usage)
My main use case is using ansible for mass forensics collections and try to minimize as much as possible modifications to the system
Thanks
| True | mount module feature request: allow to mount without adding to fstab - Hello,
For temporary need, it should be possible to mount a filesystem without adding it to fstab
http://docs.ansible.com/ansible/mount_module.html
The state values should be updated
present
absent
mounted (just mount)
mountedandpresent (mount+fstab)
unmounted (unmount)
unmountedandpresent (unmount but keep in fstab; ex: with opts noauto - only manual usage)
My main use case is using ansible for mass forensics collections and try to minimize as much as possible modifications to the system
Thanks
| main | mount module feature request allow to mount without adding to fstab hello for temporary need it should be possible to mount a filesystem without adding it to fstab the state values should be updated present absent mounted just mount mountedandpresent mount fstab unmounted unmount unmountedandpresent unmount but keep in fstab ex with opts noauto only manual usage my main use case is using ansible for mass forensics collections and try to minimize as much as possible modifications to the system thanks | 1 |
22,616 | 3,670,898,877 | IssuesEvent | 2016-02-22 02:26:07 | gperftools/gperftools | https://api.github.com/repos/gperftools/gperftools | closed | SEGV following NULL pointer in SLL_PopRange() related to std::ostringstream memory | Priority-Medium Status-New Type-Defect | Originally reported on Google Code with ID 570
```
What steps will reproduce the problem?
1. I don't have a simple testcase, but my large multi-threaded application consistently
shows this bug.
2. To cause it, I just add a std::stringstream member variable to one class and call
str("") on that variable a few times. If I omit the call to str(""), I can make it
go away.
3. Somehow the std::ostringstream memory is getting corrupted.
What is the expected output? What do you see instead?
I get a SEGV, should not happen.
What version of the product are you using? On what operating system?
v2.1 of gperftools on Centos4 32 bit system.
Please provide any additional information below.
#0 SLL_PopRange (this=0x85f48d8, src=0x85f4a38, cl=27, N=9) at src/linked_list.h:80
#1 PopRange (this=0x85f48d8, src=0x85f4a38, cl=27, N=9) at src/thread_cache.h:228
#2 tcmalloc::ThreadCache::ReleaseToCentralCache (this=0x85f48d8, src=0x85f4a38, cl=27,
N=9) at src/thread_cache.cc:229
#3 0x08425650 in tcmalloc::ThreadCache::ListTooLong (this=0x85f48d8, list=0x85f4a38,
cl=27) at src/thread_cache.cc:191
#4 0x0841acd3 in do_free_helper (ptr=0x8d9d400, invalid_free_fn=0x84177b0 <(anonymous
namespace)::InvalidFree(void*)>) at src/thread_cache.h:389
#5 (anonymous namespace)::do_free_with_callback (ptr=0x8d9d400, invalid_free_fn=0x84177b0
<(anonymous namespace)::InvalidFree(void*)>) at src/tcmalloc.cc:1210
#6 0x0843add1 in do_free (p=0x8d9d400) at src/tcmalloc.cc:1219
#7 tc_delete (p=0x8d9d400) at src/tcmalloc.cc:1619
#8 0x00181d6f in std::basic_string<char, std::char_traits<char>, std::allocator<char>
>::_Rep::_M_destroy(std::allocator<char> const&) () from /usr/lib/libstdc++.so.6
#9 0x00181ff2 in std::basic_string<char, std::char_traits<char>, std::allocator<char>
>::~basic_string() () from /usr/lib/libstdc++.so.6
#10 0x0017bb8f in std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char>
>::~basic_stringbuf() () from /usr/lib/libstdc++.so.6
#11 0x0017d5da in std::basic_stringstream<char, std::char_traits<char>, std::allocator<char>
>::~basic_stringstream() () from /usr/lib/libstdc++.so.6
#12 0x08120ce1 in (anonymous namespace)::finalMessage::~finalMessage (this=0xbfffec6c,
__in_chrg=<value optimized out>, __vtt_parm=<value optimized out>) at opApplication.cpp:564
#13 0x0811d68e in mainApplicationClient (logStream=..., argc=19, argv=0xbffff0e4, envp=0x8d84000)
at opApplication.cpp:3737
#14 0x0811d70d in opApplication (argc=19, argv=0xbffff0e4, envp=0x8d84000) at opApplication.cpp:3612
#15 0x08115cbb in main (argc=19, argv=0xbffff0e4, envp=0x8d84000) at application.cpp:96
#16 0x00ab4eb3 in __libc_start_main () from /lib/tls/libc.so.6
#17 0x08115a21 in _start ()
I have a member variable of type std::ostringstream called log. If I call
std::ostringstream log; // This is member variable of one of my classes.
log.str(""); // Commenting this line out makes the bug go away, the log member is
only used here.
I ran Valgrind and did not find any memory corruption other than the NULL pointer traversal
that is causing the SEGV.
```
Reported by `WilliamKF` on 2013-09-11 22:15:38
| 1.0 | SEGV following NULL pointer in SLL_PopRange() related to std::ostringstream memory - Originally reported on Google Code with ID 570
```
What steps will reproduce the problem?
1. I don't have a simple testcase, but my large multi-threaded application consistently
shows this bug.
2. To cause it, I just add a std::stringstream member variable to one class and call
str("") on that variable a few times. If I omit the call to str(""), I can make it
go away.
3. Somehow the std::ostringstream memory is getting corrupted.
What is the expected output? What do you see instead?
I get a SEGV, should not happen.
What version of the product are you using? On what operating system?
v2.1 of gperftools on Centos4 32 bit system.
Please provide any additional information below.
#0 SLL_PopRange (this=0x85f48d8, src=0x85f4a38, cl=27, N=9) at src/linked_list.h:80
#1 PopRange (this=0x85f48d8, src=0x85f4a38, cl=27, N=9) at src/thread_cache.h:228
#2 tcmalloc::ThreadCache::ReleaseToCentralCache (this=0x85f48d8, src=0x85f4a38, cl=27,
N=9) at src/thread_cache.cc:229
#3 0x08425650 in tcmalloc::ThreadCache::ListTooLong (this=0x85f48d8, list=0x85f4a38,
cl=27) at src/thread_cache.cc:191
#4 0x0841acd3 in do_free_helper (ptr=0x8d9d400, invalid_free_fn=0x84177b0 <(anonymous
namespace)::InvalidFree(void*)>) at src/thread_cache.h:389
#5 (anonymous namespace)::do_free_with_callback (ptr=0x8d9d400, invalid_free_fn=0x84177b0
<(anonymous namespace)::InvalidFree(void*)>) at src/tcmalloc.cc:1210
#6 0x0843add1 in do_free (p=0x8d9d400) at src/tcmalloc.cc:1219
#7 tc_delete (p=0x8d9d400) at src/tcmalloc.cc:1619
#8 0x00181d6f in std::basic_string<char, std::char_traits<char>, std::allocator<char>
>::_Rep::_M_destroy(std::allocator<char> const&) () from /usr/lib/libstdc++.so.6
#9 0x00181ff2 in std::basic_string<char, std::char_traits<char>, std::allocator<char>
>::~basic_string() () from /usr/lib/libstdc++.so.6
#10 0x0017bb8f in std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char>
>::~basic_stringbuf() () from /usr/lib/libstdc++.so.6
#11 0x0017d5da in std::basic_stringstream<char, std::char_traits<char>, std::allocator<char>
>::~basic_stringstream() () from /usr/lib/libstdc++.so.6
#12 0x08120ce1 in (anonymous namespace)::finalMessage::~finalMessage (this=0xbfffec6c,
__in_chrg=<value optimized out>, __vtt_parm=<value optimized out>) at opApplication.cpp:564
#13 0x0811d68e in mainApplicationClient (logStream=..., argc=19, argv=0xbffff0e4, envp=0x8d84000)
at opApplication.cpp:3737
#14 0x0811d70d in opApplication (argc=19, argv=0xbffff0e4, envp=0x8d84000) at opApplication.cpp:3612
#15 0x08115cbb in main (argc=19, argv=0xbffff0e4, envp=0x8d84000) at application.cpp:96
#16 0x00ab4eb3 in __libc_start_main () from /lib/tls/libc.so.6
#17 0x08115a21 in _start ()
I have a member variable of type std::ostringstream called log. If I call
std::ostringstream log; // This is member variable of one of my classes.
log.str(""); // Commenting this line out makes the bug go away, the log member is
only used here.
I ran Valgrind and did not find any memory corruption other than the NULL pointer traversal
that is causing the SEGV.
```
Reported by `WilliamKF` on 2013-09-11 22:15:38
| non_main | segv following null pointer in sll poprange related to std ostringstream memory originally reported on google code with id what steps will reproduce the problem i don t have a simple testcase but my large multi threaded application consistently shows this bug to cause it i just add a std stringstream member variable to one class and call str on that variable a few times if i omit the call to str i can make it go away somehow the std ostringstream memory is getting corrupted what is the expected output what do you see instead i get a segv should not happen what version of the product are you using on what operating system of gperftools on bit system please provide any additional information below sll poprange this src cl n at src linked list h poprange this src cl n at src thread cache h tcmalloc threadcache releasetocentralcache this src cl n at src thread cache cc in tcmalloc threadcache listtoolong this list cl at src thread cache cc in do free helper ptr invalid free fn anonymous namespace invalidfree void at src thread cache h anonymous namespace do free with callback ptr invalid free fn at src tcmalloc cc in do free p at src tcmalloc cc tc delete p at src tcmalloc cc in std basic string std allocator rep m destroy std allocator const from usr lib libstdc so in std basic string std allocator basic string from usr lib libstdc so in std basic stringbuf std allocator basic stringbuf from usr lib libstdc so in std basic stringstream std allocator basic stringstream from usr lib libstdc so in anonymous namespace finalmessage finalmessage this in chrg vtt parm at opapplication cpp in mainapplicationclient logstream argc argv envp at opapplication cpp in opapplication argc argv envp at opapplication cpp in main argc argv envp at application cpp in libc start main from lib tls libc so in start i have a member variable of type std ostringstream called log if i call std ostringstream log this is member variable of one of my classes log str commenting this line out makes the bug go away the log member is only used here i ran valgrind and did not find any memory corruption other than the null pointer traversal that is causing the segv reported by williamkf on | 0 |
143,697 | 5,521,861,213 | IssuesEvent | 2017-03-19 18:56:01 | JosefAssad/SeMaWi | https://api.github.com/repos/JosefAssad/SeMaWi | closed | Analyser | enhancement high priority balk | Vi laver ofte analyser for andre centre med personfølsomme data . Det bliver større krav til dokumentationen til sådanne analyser i fremtiden, så vi overvejer at oprette en analyse kategori.
Props:
Modtager af analyse | 1.0 | Analyser - Vi laver ofte analyser for andre centre med personfølsomme data . Det bliver større krav til dokumentationen til sådanne analyser i fremtiden, så vi overvejer at oprette en analyse kategori.
Props:
Modtager af analyse | non_main | analyser vi laver ofte analyser for andre centre med personfølsomme data det bliver større krav til dokumentationen til sådanne analyser i fremtiden så vi overvejer at oprette en analyse kategori props modtager af analyse | 0 |
394,264 | 11,634,263,554 | IssuesEvent | 2020-02-28 10:01:47 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.google.com - see bug description | browser-firefox-mobile engine-gecko priority-critical | <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/49214 -->
**URL**: https://www.google.com/search?q=amphorn&ie=utf-8&oe=utf-8&client=firefox-b-m
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: language changes to thai with no way to change back to engltsh
**Steps to Reproduce**:
switched to thai language
<details><summary>View the screenshot</summary><img alt='Screenshot' src='https://webcompat.com/uploads/2020/2/ba1d66f5-81f0-441a-ac90-e3f85db77e0b.jpeg'></details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200220160940</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/2/ce16f252-50eb-4142-9b6f-e84a92feec81)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.google.com - see bug description - <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/49214 -->
**URL**: https://www.google.com/search?q=amphorn&ie=utf-8&oe=utf-8&client=firefox-b-m
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: language changes to thai with no way to change back to engltsh
**Steps to Reproduce**:
switched to thai language
<details><summary>View the screenshot</summary><img alt='Screenshot' src='https://webcompat.com/uploads/2020/2/ba1d66f5-81f0-441a-ac90-e3f85db77e0b.jpeg'></details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200220160940</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/2/ce16f252-50eb-4142-9b6f-e84a92feec81)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_main | see bug description url browser version firefox mobile operating system android tested another browser no problem type something else description language changes to thai with no way to change back to engltsh steps to reproduce switched to thai language view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 0 |
1,384 | 6,011,580,406 | IssuesEvent | 2017-06-06 15:28:44 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | win_chocolatey upgrade successfully even when the package with required version is missing. | affects_2.1 feature_idea waiting_on_maintainer windows | ##### ISSUE TYPE
- Feature Idea
##### COMPONENT NAME
win_chocolatey
##### ANSIBLE VERSION
```
ansible 2.1.0.0
```
##### SUMMARY
Upgrade task successfully even when the package with required version is missing.
##### STEPS TO REPRODUCE
```
win_chocolatey:
name: testpack
version: 0.2
source: http://example.com
upgrade: yes
```
In this example, currently installed version 0.1 and package with version 0.2 is absent on source repo.
##### EXPECTED RESULTS
In most cases, the task should stop with an error.
##### ACTUAL RESULTS
Task successfully.
--failonunfound key for choco upgrade command can help.
It can be implemented as a module option or to make the default.
| True | win_chocolatey upgrade successfully even when the package with required version is missing. - ##### ISSUE TYPE
- Feature Idea
##### COMPONENT NAME
win_chocolatey
##### ANSIBLE VERSION
```
ansible 2.1.0.0
```
##### SUMMARY
Upgrade task successfully even when the package with required version is missing.
##### STEPS TO REPRODUCE
```
win_chocolatey:
name: testpack
version: 0.2
source: http://example.com
upgrade: yes
```
In this example, currently installed version 0.1 and package with version 0.2 is absent on source repo.
##### EXPECTED RESULTS
In most cases, the task should stop with an error.
##### ACTUAL RESULTS
Task successfully.
--failonunfound key for choco upgrade command can help.
It can be implemented as a module option or to make the default.
| main | win chocolatey upgrade successfully even when the package with required version is missing issue type feature idea component name win chocolatey ansible version ansible summary upgrade task successfully even when the package with required version is missing steps to reproduce win chocolatey name testpack version source upgrade yes in this example currently installed version and package with version is absent on source repo expected results in most cases the task should stop with an error actual results task successfully failonunfound key for choco upgrade command can help it can be implemented as a module option or to make the default | 1 |
1,244 | 5,308,974,982 | IssuesEvent | 2017-02-12 04:00:40 | ansible/ansible-modules-extras | https://api.github.com/repos/ansible/ansible-modules-extras | closed | vmware_guest: machine deployment without templates | affects_2.2 cloud feature_idea vmware waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Feature Idea
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
vmware_guest
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.2.0.0
```
##### SUMMARY
<!--- Explain the problem briefly -->
Can you please add feature to create VM without any templates specified? We used this scenario with old _vsphere_guest_ module previously, and by default new VMs booted from network and rest of the deployment was automated by kickstart. With vmware_guest module this is no longer possible as it is required to specify template for new VM deployment. | True | vmware_guest: machine deployment without templates - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Feature Idea
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
vmware_guest
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.2.0.0
```
##### SUMMARY
<!--- Explain the problem briefly -->
Can you please add feature to create VM without any templates specified? We used this scenario with old _vsphere_guest_ module previously, and by default new VMs booted from network and rest of the deployment was automated by kickstart. With vmware_guest module this is no longer possible as it is required to specify template for new VM deployment. | main | vmware guest machine deployment without templates issue type feature idea component name vmware guest ansible version ansible summary can you please add feature to create vm without any templates specified we used this scenario with old vsphere guest module previously and by default new vms booted from network and rest of the deployment was automated by kickstart with vmware guest module this is no longer possible as it is required to specify template for new vm deployment | 1 |
15,928 | 10,417,723,169 | IssuesEvent | 2019-09-15 00:50:16 | CC3301/csgo-strat-generator | https://api.github.com/repos/CC3301/csgo-strat-generator | opened | save game-rule sets | enhancement usability | Create some way to tell csgo.pl so save the game-rule set that was generated. This should make sharing with friends and such way easier. | True | save game-rule sets - Create some way to tell csgo.pl so save the game-rule set that was generated. This should make sharing with friends and such way easier. | non_main | save game rule sets create some way to tell csgo pl so save the game rule set that was generated this should make sharing with friends and such way easier | 0 |
382,354 | 11,304,926,686 | IssuesEvent | 2020-01-18 01:12:31 | ayumi-cloud/oc-security-module | https://api.github.com/repos/ayumi-cloud/oc-security-module | opened | Deal with plugins using out-dated editor vulnerabilities | Add to Blacklist Firewall Priority: Medium enhancement | ### Enhancement idea
- [ ] Deal with plugins using out-dated ckeditor vulnerabilities.
- [ ] Deal with plugins using out-dated TinyMCE vulnerabilities.
List of plugins failing:
https://octobercms.com/plugin/anandpatel-wysiwygeditors
https://octobercms.com/plugin/shahiemseymor-ckeditor
| 1.0 | Deal with plugins using out-dated editor vulnerabilities - ### Enhancement idea
- [ ] Deal with plugins using out-dated ckeditor vulnerabilities.
- [ ] Deal with plugins using out-dated TinyMCE vulnerabilities.
List of plugins failing:
https://octobercms.com/plugin/anandpatel-wysiwygeditors
https://octobercms.com/plugin/shahiemseymor-ckeditor
| non_main | deal with plugins using out dated editor vulnerabilities enhancement idea deal with plugins using out dated ckeditor vulnerabilities deal with plugins using out dated tinymce vulnerabilities list of plugins failing | 0 |
204,711 | 15,528,567,165 | IssuesEvent | 2021-03-13 11:32:17 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | opened | roachtest: tpccbench/nodes=3/cpu=16 failed | C-test-failure O-roachtest O-robot branch-master release-blocker | [(roachtest).tpccbench/nodes=3/cpu=16 failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2773661&tab=buildLog) on [master@4d44ddf24153d8ef8e0a996fdbe75ac5607f9574](https://github.com/cockroachdb/cockroach/commits/4d44ddf24153d8ef8e0a996fdbe75ac5607f9574):
```
| | main.main
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| | runtime.main
| | /usr/local/go/src/runtime/proc.go:204
| | runtime.goexit
| | /usr/local/go/src/runtime/asm_amd64.s:1374
| Wraps: (2) 2: dead
| Error types: (1) *withstack.withStack (2) *errutil.leafError
Wraps: (3) secondary error attachment
| 1: dead
| (1) attached stack trace
| -- stack trace:
| | main.glob..func14
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| | main.wrap.func1
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| | github.com/spf13/cobra.(*Command).execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| | github.com/spf13/cobra.(*Command).ExecuteC
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| | github.com/spf13/cobra.(*Command).Execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| | main.main
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| | runtime.main
| | /usr/local/go/src/runtime/proc.go:204
| | runtime.goexit
| | /usr/local/go/src/runtime/asm_amd64.s:1374
| Wraps: (2) 1: dead
| Error types: (1) *withstack.withStack (2) *errutil.leafError
Wraps: (4) attached stack trace
-- stack trace:
| main.glob..func14
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| main.wrap.func1
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| github.com/spf13/cobra.(*Command).execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| github.com/spf13/cobra.(*Command).ExecuteC
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| github.com/spf13/cobra.(*Command).Execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| main.main
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| runtime.main
| /usr/local/go/src/runtime/proc.go:204
| runtime.goexit
| /usr/local/go/src/runtime/asm_amd64.s:1374
Wraps: (5) 3: dead
Error types: (1) errors.Unclassified (2) *secondary.withSecondaryError (3) *secondary.withSecondaryError (4) *withstack.withStack (5) *errutil.leafError
```
<details><summary>More</summary><p>
Artifacts: [/tpccbench/nodes=3/cpu=16](https://teamcity.cockroachdb.com/viewLog.html?buildId=2773661&tab=artifacts#/tpccbench/nodes=3/cpu=16)
Related:
- #61696 roachtest: tpccbench/nodes=3/cpu=16 failed [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [branch-release-21.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-21.1) [release-blocker](https://api.github.com/repos/cockroachdb/cockroach/labels/release-blocker)
- #55802 roachtest: tpccbench/nodes=3/cpu=16 failed [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [T-bulkio](https://api.github.com/repos/cockroachdb/cockroach/labels/T-bulkio) [branch-release-20.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.1)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpccbench%2Fnodes%3D3%2Fcpu%3D16.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| 2.0 | roachtest: tpccbench/nodes=3/cpu=16 failed - [(roachtest).tpccbench/nodes=3/cpu=16 failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2773661&tab=buildLog) on [master@4d44ddf24153d8ef8e0a996fdbe75ac5607f9574](https://github.com/cockroachdb/cockroach/commits/4d44ddf24153d8ef8e0a996fdbe75ac5607f9574):
```
| | main.main
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| | runtime.main
| | /usr/local/go/src/runtime/proc.go:204
| | runtime.goexit
| | /usr/local/go/src/runtime/asm_amd64.s:1374
| Wraps: (2) 2: dead
| Error types: (1) *withstack.withStack (2) *errutil.leafError
Wraps: (3) secondary error attachment
| 1: dead
| (1) attached stack trace
| -- stack trace:
| | main.glob..func14
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| | main.wrap.func1
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| | github.com/spf13/cobra.(*Command).execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| | github.com/spf13/cobra.(*Command).ExecuteC
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| | github.com/spf13/cobra.(*Command).Execute
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| | main.main
| | /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| | runtime.main
| | /usr/local/go/src/runtime/proc.go:204
| | runtime.goexit
| | /usr/local/go/src/runtime/asm_amd64.s:1374
| Wraps: (2) 1: dead
| Error types: (1) *withstack.withStack (2) *errutil.leafError
Wraps: (4) attached stack trace
-- stack trace:
| main.glob..func14
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
| main.wrap.func1
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
| github.com/spf13/cobra.(*Command).execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
| github.com/spf13/cobra.(*Command).ExecuteC
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
| github.com/spf13/cobra.(*Command).Execute
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
| main.main
| /home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
| runtime.main
| /usr/local/go/src/runtime/proc.go:204
| runtime.goexit
| /usr/local/go/src/runtime/asm_amd64.s:1374
Wraps: (5) 3: dead
Error types: (1) errors.Unclassified (2) *secondary.withSecondaryError (3) *secondary.withSecondaryError (4) *withstack.withStack (5) *errutil.leafError
```
<details><summary>More</summary><p>
Artifacts: [/tpccbench/nodes=3/cpu=16](https://teamcity.cockroachdb.com/viewLog.html?buildId=2773661&tab=artifacts#/tpccbench/nodes=3/cpu=16)
Related:
- #61696 roachtest: tpccbench/nodes=3/cpu=16 failed [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [branch-release-21.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-21.1) [release-blocker](https://api.github.com/repos/cockroachdb/cockroach/labels/release-blocker)
- #55802 roachtest: tpccbench/nodes=3/cpu=16 failed [C-test-failure](https://api.github.com/repos/cockroachdb/cockroach/labels/C-test-failure) [O-roachtest](https://api.github.com/repos/cockroachdb/cockroach/labels/O-roachtest) [O-robot](https://api.github.com/repos/cockroachdb/cockroach/labels/O-robot) [T-bulkio](https://api.github.com/repos/cockroachdb/cockroach/labels/T-bulkio) [branch-release-20.1](https://api.github.com/repos/cockroachdb/cockroach/labels/branch-release-20.1)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Atpccbench%2Fnodes%3D3%2Fcpu%3D16.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| non_main | roachtest tpccbench nodes cpu failed on main main home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go runtime main usr local go src runtime proc go runtime goexit usr local go src runtime asm s wraps dead error types withstack withstack errutil leaferror wraps secondary error attachment dead attached stack trace stack trace main glob home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go main wrap home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command executec home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go main main home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go runtime main usr local go src runtime proc go runtime goexit usr local go src runtime asm s wraps dead error types withstack withstack errutil leaferror wraps attached stack trace stack trace main glob home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go main wrap home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command executec home agent work go src github com cockroachdb cockroach vendor github com cobra command go github com cobra command execute home agent work go src github com cockroachdb cockroach vendor github com cobra command go main main home agent work go src github com cockroachdb cockroach pkg cmd roachprod main go runtime main usr local go src runtime proc go runtime goexit usr local go src runtime asm s wraps dead error types errors unclassified secondary withsecondaryerror secondary withsecondaryerror withstack withstack errutil leaferror more artifacts related roachtest tpccbench nodes cpu failed roachtest tpccbench nodes cpu failed powered by | 0 |
5,724 | 30,259,921,589 | IssuesEvent | 2023-07-07 07:23:42 | jupyter-naas/awesome-notebooks | https://api.github.com/repos/jupyter-naas/awesome-notebooks | closed | LangChain - Gmail Toolkit | enhancement templates maintainer | This notebook walks through connecting a LangChain email to the Gmail API. It is useful for organizations that need to integrate their email with the Gmail API.
| True | LangChain - Gmail Toolkit - This notebook walks through connecting a LangChain email to the Gmail API. It is useful for organizations that need to integrate their email with the Gmail API.
| main | langchain gmail toolkit this notebook walks through connecting a langchain email to the gmail api it is useful for organizations that need to integrate their email with the gmail api | 1 |
430 | 3,535,727,412 | IssuesEvent | 2016-01-16 18:54:54 | psi-probe/psi-probe | https://api.github.com/repos/psi-probe/psi-probe | closed | Maven Mantenance January 2016 | Maintainability | - Monthly update of maven plugins to current versions - Java 6 only. Will move to java 7 separately since tomcat 9 requires that and thus our build now requires minimum jdk 7 to build.
- Remove old minimum jdk notes in pom as we are now jdk 6 so no prior notes apply
- Better patch for gitDescribe on git-commit-id-plugin
- Update copyright year in pom to 2016
| True | Maven Mantenance January 2016 - - Monthly update of maven plugins to current versions - Java 6 only. Will move to java 7 separately since tomcat 9 requires that and thus our build now requires minimum jdk 7 to build.
- Remove old minimum jdk notes in pom as we are now jdk 6 so no prior notes apply
- Better patch for gitDescribe on git-commit-id-plugin
- Update copyright year in pom to 2016
| main | maven mantenance january monthly update of maven plugins to current versions java only will move to java separately since tomcat requires that and thus our build now requires minimum jdk to build remove old minimum jdk notes in pom as we are now jdk so no prior notes apply better patch for gitdescribe on git commit id plugin update copyright year in pom to | 1 |
136,915 | 12,739,862,244 | IssuesEvent | 2020-06-26 00:29:48 | smallstep/certificates | https://api.github.com/repos/smallstep/certificates | closed | Document the ACME Provisioner | documentation | Document the ACME provisioner:
1) setup
2) configuration (attributes)
**NOTE**: The only available provisioner documentation is in the ACME blogpost on the smallstep blog.
| 1.0 | Document the ACME Provisioner - Document the ACME provisioner:
1) setup
2) configuration (attributes)
**NOTE**: The only available provisioner documentation is in the ACME blogpost on the smallstep blog.
| non_main | document the acme provisioner document the acme provisioner setup configuration attributes note the only available provisioner documentation is in the acme blogpost on the smallstep blog | 0 |
26,753 | 13,100,088,263 | IssuesEvent | 2020-08-03 23:22:59 | tensorflow/tensorflow | https://api.github.com/repos/tensorflow/tensorflow | closed | [TF2.2] tf.data.Dataset memory leak | TF 2.2 comp:data stalled stat:awaiting response type:performance | **System information**
- Have I written custom code : yes
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 18.04.4
- TensorFlow installed from (source or binary): wheel
- TensorFlow version (use command below): v2.2.0-rc4-8-g2b96f3662b 2.2.0
- Python version: 3.6.7
- CUDA/cuDNN version: 10.2
- GPU model and memory: GeForce RTX 2080 Ti
**Describe the current behavior**
I have a memory leak when using `tf.data.Dataset`.
It happens when I use fit on a tf.keras.Model.
It seems to happend when iterating inside a `tf.function` too.
**Describe the expected behavior**
Memory should not be incread
**Standalone code to reproduce the issue**
```python
import numpy as np
import tensorflow as tf
import psutil
from tqdm import tqdm
n = 80
dataset = (
tf.data.Dataset.from_tensor_slices(
(
np.random.rand(n, 416, 416, 3),
np.zeros((n, 1)),
)
)
.batch(8)
.repeat()
)
@tf.function
def inspect_dataset(dataset):
for _ in tqdm(dataset, "iterating through dataset"):
pass
inspect_dataset(dataset)
```

| True | [TF2.2] tf.data.Dataset memory leak - **System information**
- Have I written custom code : yes
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 18.04.4
- TensorFlow installed from (source or binary): wheel
- TensorFlow version (use command below): v2.2.0-rc4-8-g2b96f3662b 2.2.0
- Python version: 3.6.7
- CUDA/cuDNN version: 10.2
- GPU model and memory: GeForce RTX 2080 Ti
**Describe the current behavior**
I have a memory leak when using `tf.data.Dataset`.
It happens when I use fit on a tf.keras.Model.
It seems to happend when iterating inside a `tf.function` too.
**Describe the expected behavior**
Memory should not be incread
**Standalone code to reproduce the issue**
```python
import numpy as np
import tensorflow as tf
import psutil
from tqdm import tqdm
n = 80
dataset = (
tf.data.Dataset.from_tensor_slices(
(
np.random.rand(n, 416, 416, 3),
np.zeros((n, 1)),
)
)
.batch(8)
.repeat()
)
@tf.function
def inspect_dataset(dataset):
for _ in tqdm(dataset, "iterating through dataset"):
pass
inspect_dataset(dataset)
```

| non_main | tf data dataset memory leak system information have i written custom code yes os platform and distribution e g linux ubuntu ubuntu tensorflow installed from source or binary wheel tensorflow version use command below python version cuda cudnn version gpu model and memory geforce rtx ti describe the current behavior i have a memory leak when using tf data dataset it happens when i use fit on a tf keras model it seems to happend when iterating inside a tf function too describe the expected behavior memory should not be incread standalone code to reproduce the issue python import numpy as np import tensorflow as tf import psutil from tqdm import tqdm n dataset tf data dataset from tensor slices np random rand n np zeros n batch repeat tf function def inspect dataset dataset for in tqdm dataset iterating through dataset pass inspect dataset dataset | 0 |
5,338 | 26,939,538,527 | IssuesEvent | 2023-02-08 00:19:52 | mozilla/foundation.mozilla.org | https://api.github.com/repos/mozilla/foundation.mozilla.org | closed | Run Percy tests only after PR is approved | engineering maintain | ## Description
Based on a [discussion in the engineering team](https://mozilla.slack.com/archives/C043Q45BBMF/p1673633513133729) we want to limit the Percy tests to only run after a PR is approved in code review.
This change is an attempt to reduce the number of screenshots that get generated, which should make our allowance of screenshots last longer.
Passing the visual regression tests should still be mandatory for a PR to get merged, just like passing the other CI tests is.
Having visual regression tests available is especially valuable during our CSS transition from SASS/Bootstrap to Tailwind.
## Dev notes
We are probably going to have to split the Percy tests into their own Github Actions workflow to enable this.
## Acceptance criteria
- [ ] Percy tests only run after a PR has been approved in code review.
- [ ] PRs can not be merged without the Percy tests passing successfully. (Percy test can be manually approved)
| True | Run Percy tests only after PR is approved - ## Description
Based on a [discussion in the engineering team](https://mozilla.slack.com/archives/C043Q45BBMF/p1673633513133729) we want to limit the Percy tests to only run after a PR is approved in code review.
This change is an attempt to reduce the number of screenshots that get generated, which should make our allowance of screenshots last longer.
Passing the visual regression tests should still be mandatory for a PR to get merged, just like passing the other CI tests is.
Having visual regression tests available is especially valuable during our CSS transition from SASS/Bootstrap to Tailwind.
## Dev notes
We are probably going to have to split the Percy tests into their own Github Actions workflow to enable this.
## Acceptance criteria
- [ ] Percy tests only run after a PR has been approved in code review.
- [ ] PRs can not be merged without the Percy tests passing successfully. (Percy test can be manually approved)
| main | run percy tests only after pr is approved description based on a we want to limit the percy tests to only run after a pr is approved in code review this change is an attempt to reduce the number of screenshots that get generated which should make our allowance of screenshots last longer passing the visual regression tests should still be mandatory for a pr to get merged just like passing the other ci tests is having visual regression tests available is especially valuable during our css transition from sass bootstrap to tailwind dev notes we are probably going to have to split the percy tests into their own github actions workflow to enable this acceptance criteria percy tests only run after a pr has been approved in code review prs can not be merged without the percy tests passing successfully percy test can be manually approved | 1 |
3,440 | 13,211,556,040 | IssuesEvent | 2020-08-16 00:05:22 | ansible/ansible | https://api.github.com/repos/ansible/ansible | closed | Ansible 2.9.0 breaks Terraform module "Planned" output | affects_2.8 bot_closed bug cloud collection collection:community.general module needs_collection_redirect needs_maintainer needs_triage python3 support:community | ##### SUMMARY
I have a repo that I created to utilize the Terraform module. The original code shows output when registered to a variable:
```
---
- hosts: localhost
gather_facts: no
tasks:
- terraform:
project_path: '../../terraform/env/dev/'
plan_file: 'clientvpn.tfplan'
state: planned
register: terraform
- debug:
var: terraform.stdout_lines
```
However when running it on the machine that I cloned the repo to, no output is gathered. When comparing the virtualenvs that the code is running in, the working version is using Ansible 2.8.5, while the broken version is using 2.9.0.
When forcing broken environment to use 2.8.5, `terraform plan` output is correctly registered and displayed in a debug task.
##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
Terraform
##### ANSIBLE VERSION
<!--- Paste verbatim output from "ansible --version" between quotes -->
Working machine:
```
ansible 2.8.5
config file = None
configured module search path = ['/home/jhweaver/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /home/jhweaver/.local/lib/python3.7/site-packages/ansible
executable location = /home/jhweaver/.local/bin/ansible
python version = 3.7.3 (default, Apr 3 2019, 19:16:38) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
```
Failing machine:
```
ansible 2.9.0
config file = /home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg
configured module search path = ['/home/int-admin/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible
executable location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/bin/ansible
python version = 3.7.3 (default, Apr 3 2019, 19:16:38) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
```
##### CONFIGURATION
<!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes -->
Working (2.8.5)
```
N/A
```
Failing (2.9.0)
```
DEFAULT_HOST_LIST(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = ['/home/int-admin/aws/client-vpn-setup/ansible/hosts']
DEFAULT_ROLES_PATH(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = ['/home/int-admin/aws/client-vpn-setup/ansible/roles']
INVENTORY_ENABLED(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = ['host_list', 'constructed', 'yaml', 'ini']
RETRY_FILES_ENABLED(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = False
```
##### OS / ENVIRONMENT
<!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. -->
Window Subsystem for Linux, Ubuntu 18.04
##### STEPS TO REPRODUCE
Setup playbook utilizing Terraform module. Configure Terraform environment. Capture output from Terraform with "state: planned" on both Ansible 2.8.5 vs 2.9.0
##### EXPECTED RESULTS
I expect the output to return when running the Terraform plan playbook, as it was in 2.8.5. However in 2.9.0, the output is not registered to the variable.
##### ACTUAL RESULTS
```
(client-vpn-setup) int-admin@int-pc-int-tech:~/aws/client-vpn-setup/ansible$ ansible-playbook playbooks/terraform-plan.yml -vvvv
ansible-playbook 2.9.0
config file = /home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg
configured module search path = ['/home/int-admin/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible
executable location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/bin/ansible-playbook
python version = 3.7.3 (default, Apr 3 2019, 19:16:38) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
Using /home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg as config file
setting up inventory plugins
host_list declined parsing /home/int-admin/aws/client-vpn-setup/ansible/hosts as it did not pass its verify_file() method
Set default localhost to 127.0.0.1
Parsed /home/int-admin/aws/client-vpn-setup/ansible/hosts inventory source with ini plugin
Loading callback plugin default of type stdout, v2.0 from /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible/plugins/callback/default.py
PLAYBOOK: terraform-plan.yml ************************************************************************************************************************************************************************
Positional arguments: playbooks/terraform-plan.yml
verbosity: 4
connection: smart
timeout: 10
become_method: sudo
tags: ('all',)
inventory: ('/home/int-admin/aws/client-vpn-setup/ansible/hosts',)
forks: 5
1 plays in playbooks/terraform-plan.yml
PLAY [localhost] ************************************************************************************************************************************************************************************
META: ran handlers
TASK [terraform] ************************************************************************************************************************************************************************************
task path: /home/int-admin/aws/client-vpn-setup/ansible/playbooks/terraform-plan.yml:6
<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: int-admin
<127.0.0.1> EXEC /bin/sh -c 'echo ~int-admin && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982 `" && echo ansible-tmp-1573169908.3664143-52138312792982="` echo /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982 `" ) && sleep 0'
Using module file /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible/modules/cloud/misc/terraform.py
<127.0.0.1> PUT /home/int-admin/.ansible/tmp/ansible-local-3573trsr7l36/tmpjdk8or91 TO /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/AnsiballZ_terraform.py
<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/ /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/AnsiballZ_terraform.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python3.7 /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/AnsiballZ_terraform.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/ > /dev/null 2>&1 && sleep 0'
ok: [127.0.0.1] => {
"changed": false,
"command": "/usr/bin/terraform plan -input=false -no-color -detailed-exitcode -out clientvpn.tfplan clientvpn.tfplan",
"invocation": {
"module_args": {
"backend_config": null,
"binary_path": null,
"force_init": false,
"lock": true,
"lock_timeout": null,
"plan_file": "clientvpn.tfplan",
"project_path": "../../terraform/env/dev/",
"purge_workspace": false,
"state": "planned",
"state_file": null,
"targets": [],
"variables": null,
"variables_file": null,
"workspace": "default"
}
},
"outputs": {},
"state": "planned",
"stderr": "",
"stderr_lines": [],
"stdout": "",
"stdout_lines": [],
"workspace": "default"
}
TASK [debug] ****************************************************************************************************************************************************************************************
task path: /home/int-admin/aws/client-vpn-setup/ansible/playbooks/terraform-plan.yml:12
ok: [127.0.0.1] => {
"terraform": {
"changed": false,
"command": "/usr/bin/terraform plan -input=false -no-color -detailed-exitcode -out clientvpn.tfplan clientvpn.tfplan",
"failed": false,
"outputs": {},
"state": "planned",
"stderr": "",
"stderr_lines": [],
"stdout": "",
"stdout_lines": [],
"workspace": "default"
}
}
META: ran handlers
META: ran handlers
PLAY RECAP ******************************************************************************************************************************************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
```
Please note that while the config file is different (absent in the 2.8.5 environment), downgrading the 2.9.0 environment to 2.8.5 completely resolves the problem. | True | Ansible 2.9.0 breaks Terraform module "Planned" output - ##### SUMMARY
I have a repo that I created to utilize the Terraform module. The original code shows output when registered to a variable:
```
---
- hosts: localhost
gather_facts: no
tasks:
- terraform:
project_path: '../../terraform/env/dev/'
plan_file: 'clientvpn.tfplan'
state: planned
register: terraform
- debug:
var: terraform.stdout_lines
```
However when running it on the machine that I cloned the repo to, no output is gathered. When comparing the virtualenvs that the code is running in, the working version is using Ansible 2.8.5, while the broken version is using 2.9.0.
When forcing broken environment to use 2.8.5, `terraform plan` output is correctly registered and displayed in a debug task.
##### ISSUE TYPE
- Bug Report
##### COMPONENT NAME
Terraform
##### ANSIBLE VERSION
<!--- Paste verbatim output from "ansible --version" between quotes -->
Working machine:
```
ansible 2.8.5
config file = None
configured module search path = ['/home/jhweaver/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /home/jhweaver/.local/lib/python3.7/site-packages/ansible
executable location = /home/jhweaver/.local/bin/ansible
python version = 3.7.3 (default, Apr 3 2019, 19:16:38) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
```
Failing machine:
```
ansible 2.9.0
config file = /home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg
configured module search path = ['/home/int-admin/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible
executable location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/bin/ansible
python version = 3.7.3 (default, Apr 3 2019, 19:16:38) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
```
##### CONFIGURATION
<!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes -->
Working (2.8.5)
```
N/A
```
Failing (2.9.0)
```
DEFAULT_HOST_LIST(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = ['/home/int-admin/aws/client-vpn-setup/ansible/hosts']
DEFAULT_ROLES_PATH(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = ['/home/int-admin/aws/client-vpn-setup/ansible/roles']
INVENTORY_ENABLED(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = ['host_list', 'constructed', 'yaml', 'ini']
RETRY_FILES_ENABLED(/home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg) = False
```
##### OS / ENVIRONMENT
<!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. -->
Window Subsystem for Linux, Ubuntu 18.04
##### STEPS TO REPRODUCE
Setup playbook utilizing Terraform module. Configure Terraform environment. Capture output from Terraform with "state: planned" on both Ansible 2.8.5 vs 2.9.0
##### EXPECTED RESULTS
I expect the output to return when running the Terraform plan playbook, as it was in 2.8.5. However in 2.9.0, the output is not registered to the variable.
##### ACTUAL RESULTS
```
(client-vpn-setup) int-admin@int-pc-int-tech:~/aws/client-vpn-setup/ansible$ ansible-playbook playbooks/terraform-plan.yml -vvvv
ansible-playbook 2.9.0
config file = /home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg
configured module search path = ['/home/int-admin/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible
executable location = /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/bin/ansible-playbook
python version = 3.7.3 (default, Apr 3 2019, 19:16:38) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
Using /home/int-admin/aws/client-vpn-setup/ansible/ansible.cfg as config file
setting up inventory plugins
host_list declined parsing /home/int-admin/aws/client-vpn-setup/ansible/hosts as it did not pass its verify_file() method
Set default localhost to 127.0.0.1
Parsed /home/int-admin/aws/client-vpn-setup/ansible/hosts inventory source with ini plugin
Loading callback plugin default of type stdout, v2.0 from /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible/plugins/callback/default.py
PLAYBOOK: terraform-plan.yml ************************************************************************************************************************************************************************
Positional arguments: playbooks/terraform-plan.yml
verbosity: 4
connection: smart
timeout: 10
become_method: sudo
tags: ('all',)
inventory: ('/home/int-admin/aws/client-vpn-setup/ansible/hosts',)
forks: 5
1 plays in playbooks/terraform-plan.yml
PLAY [localhost] ************************************************************************************************************************************************************************************
META: ran handlers
TASK [terraform] ************************************************************************************************************************************************************************************
task path: /home/int-admin/aws/client-vpn-setup/ansible/playbooks/terraform-plan.yml:6
<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: int-admin
<127.0.0.1> EXEC /bin/sh -c 'echo ~int-admin && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982 `" && echo ansible-tmp-1573169908.3664143-52138312792982="` echo /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982 `" ) && sleep 0'
Using module file /home/int-admin/.local/share/virtualenvs/client-vpn-setup-1pdl8G5S/lib/python3.7/site-packages/ansible/modules/cloud/misc/terraform.py
<127.0.0.1> PUT /home/int-admin/.ansible/tmp/ansible-local-3573trsr7l36/tmpjdk8or91 TO /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/AnsiballZ_terraform.py
<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/ /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/AnsiballZ_terraform.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python3.7 /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/AnsiballZ_terraform.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /home/int-admin/.ansible/tmp/ansible-tmp-1573169908.3664143-52138312792982/ > /dev/null 2>&1 && sleep 0'
ok: [127.0.0.1] => {
"changed": false,
"command": "/usr/bin/terraform plan -input=false -no-color -detailed-exitcode -out clientvpn.tfplan clientvpn.tfplan",
"invocation": {
"module_args": {
"backend_config": null,
"binary_path": null,
"force_init": false,
"lock": true,
"lock_timeout": null,
"plan_file": "clientvpn.tfplan",
"project_path": "../../terraform/env/dev/",
"purge_workspace": false,
"state": "planned",
"state_file": null,
"targets": [],
"variables": null,
"variables_file": null,
"workspace": "default"
}
},
"outputs": {},
"state": "planned",
"stderr": "",
"stderr_lines": [],
"stdout": "",
"stdout_lines": [],
"workspace": "default"
}
TASK [debug] ****************************************************************************************************************************************************************************************
task path: /home/int-admin/aws/client-vpn-setup/ansible/playbooks/terraform-plan.yml:12
ok: [127.0.0.1] => {
"terraform": {
"changed": false,
"command": "/usr/bin/terraform plan -input=false -no-color -detailed-exitcode -out clientvpn.tfplan clientvpn.tfplan",
"failed": false,
"outputs": {},
"state": "planned",
"stderr": "",
"stderr_lines": [],
"stdout": "",
"stdout_lines": [],
"workspace": "default"
}
}
META: ran handlers
META: ran handlers
PLAY RECAP ******************************************************************************************************************************************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
```
Please note that while the config file is different (absent in the 2.8.5 environment), downgrading the 2.9.0 environment to 2.8.5 completely resolves the problem. | main | ansible breaks terraform module planned output summary i have a repo that i created to utilize the terraform module the original code shows output when registered to a variable hosts localhost gather facts no tasks terraform project path terraform env dev plan file clientvpn tfplan state planned register terraform debug var terraform stdout lines however when running it on the machine that i cloned the repo to no output is gathered when comparing the virtualenvs that the code is running in the working version is using ansible while the broken version is using when forcing broken environment to use terraform plan output is correctly registered and displayed in a debug task issue type bug report component name terraform ansible version working machine ansible config file none configured module search path ansible python module location home jhweaver local lib site packages ansible executable location home jhweaver local bin ansible python version default apr failing machine ansible config file home int admin aws client vpn setup ansible ansible cfg configured module search path ansible python module location home int admin local share virtualenvs client vpn setup lib site packages ansible executable location home int admin local share virtualenvs client vpn setup bin ansible python version default apr configuration working n a failing default host list home int admin aws client vpn setup ansible ansible cfg default roles path home int admin aws client vpn setup ansible ansible cfg inventory enabled home int admin aws client vpn setup ansible ansible cfg retry files enabled home int admin aws client vpn setup ansible ansible cfg false os environment window subsystem for linux ubuntu steps to reproduce setup playbook utilizing terraform module configure terraform environment capture output from terraform with state planned on both ansible vs expected results i expect the output to return when running the terraform plan playbook as it was in however in the output is not registered to the variable actual results client vpn setup int admin int pc int tech aws client vpn setup ansible ansible playbook playbooks terraform plan yml vvvv ansible playbook config file home int admin aws client vpn setup ansible ansible cfg configured module search path ansible python module location home int admin local share virtualenvs client vpn setup lib site packages ansible executable location home int admin local share virtualenvs client vpn setup bin ansible playbook python version default apr using home int admin aws client vpn setup ansible ansible cfg as config file setting up inventory plugins host list declined parsing home int admin aws client vpn setup ansible hosts as it did not pass its verify file method set default localhost to parsed home int admin aws client vpn setup ansible hosts inventory source with ini plugin loading callback plugin default of type stdout from home int admin local share virtualenvs client vpn setup lib site packages ansible plugins callback default py playbook terraform plan yml positional arguments playbooks terraform plan yml verbosity connection smart timeout become method sudo tags all inventory home int admin aws client vpn setup ansible hosts forks plays in playbooks terraform plan yml play meta ran handlers task task path home int admin aws client vpn setup ansible playbooks terraform plan yml establish local connection for user int admin exec bin sh c echo int admin sleep exec bin sh c umask mkdir p echo home int admin ansible tmp ansible tmp echo ansible tmp echo home int admin ansible tmp ansible tmp sleep using module file home int admin local share virtualenvs client vpn setup lib site packages ansible modules cloud misc terraform py put home int admin ansible tmp ansible local to home int admin ansible tmp ansible tmp ansiballz terraform py exec bin sh c chmod u x home int admin ansible tmp ansible tmp home int admin ansible tmp ansible tmp ansiballz terraform py sleep exec bin sh c usr bin home int admin ansible tmp ansible tmp ansiballz terraform py sleep exec bin sh c rm f r home int admin ansible tmp ansible tmp dev null sleep ok changed false command usr bin terraform plan input false no color detailed exitcode out clientvpn tfplan clientvpn tfplan invocation module args backend config null binary path null force init false lock true lock timeout null plan file clientvpn tfplan project path terraform env dev purge workspace false state planned state file null targets variables null variables file null workspace default outputs state planned stderr stderr lines stdout stdout lines workspace default task task path home int admin aws client vpn setup ansible playbooks terraform plan yml ok terraform changed false command usr bin terraform plan input false no color detailed exitcode out clientvpn tfplan clientvpn tfplan failed false outputs state planned stderr stderr lines stdout stdout lines workspace default meta ran handlers meta ran handlers play recap ok changed unreachable failed skipped rescued ignored please note that while the config file is different absent in the environment downgrading the environment to completely resolves the problem | 1 |
383,595 | 11,359,836,172 | IssuesEvent | 2020-01-26 00:26:34 | Ciastex/ArcadeCoinBugCentral | https://api.github.com/repos/Ciastex/ArcadeCoinBugCentral | closed | Vertical axis unlocked while crouching | Bug but not really tho Low Priority Visual | #### Expected behavior
that the vertical axis is not unlocked while just crouching only while being in the air
#### Actual behavior
the vertical axis is unlocked while crouching
#### Steps to reproduce
1. crouch
2. look up until everything is upside down
#### Additional information

| 1.0 | Vertical axis unlocked while crouching - #### Expected behavior
that the vertical axis is not unlocked while just crouching only while being in the air
#### Actual behavior
the vertical axis is unlocked while crouching
#### Steps to reproduce
1. crouch
2. look up until everything is upside down
#### Additional information

| non_main | vertical axis unlocked while crouching expected behavior that the vertical axis is not unlocked while just crouching only while being in the air actual behavior the vertical axis is unlocked while crouching steps to reproduce crouch look up until everything is upside down additional information | 0 |
4,353 | 21,992,994,077 | IssuesEvent | 2022-05-26 01:18:06 | beekama/NutritionApp | https://api.github.com/repos/beekama/NutritionApp | opened | dividerItemDecorator duplicated Code | maintainability | dividerItemDecorator seems to have a lot of similar definitions. Extract. | True | dividerItemDecorator duplicated Code - dividerItemDecorator seems to have a lot of similar definitions. Extract. | main | divideritemdecorator duplicated code divideritemdecorator seems to have a lot of similar definitions extract | 1 |
1,778 | 6,575,810,265 | IssuesEvent | 2017-09-11 17:24:54 | ansible/ansible-modules-core | https://api.github.com/repos/ansible/ansible-modules-core | closed | ansible 2.2 setup module "unsupported parameter for module: gather_timeout" | affects_2.2 bug_report waiting_on_maintainer | <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
setup
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.2.0.0 (detached HEAD 44faad0593) last updated 2016/10/04 10:41:35 (GMT +200)
lib/ansible/modules/core: (detached HEAD 17ee1cfaf9) last updated 2016/10/04 10:41:04 (GMT +200)
lib/ansible/modules/extras: (detached HEAD d312f34d9b) last updated 2016/10/04 10:41:05 (GMT +200)
config file = {{custom_path}}/.ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
[defaults]
inventory = $HOME/inventory/full.inventory
remote_tmp = $HOME/.ansible/tmp
remote_user = root
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
RHEL 7/RHEL7
##### SUMMARY
<!--- Explain the problem briefly -->
When running setup, the setup module complains about not supporting the new gather_timeout parameter:
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
Git clone ansible version 2.2.0, and checkout tag v2.2.0.0-0.1.rc1.
Source the hacking/source/env-setup script to use that version.
Run any playbook with minimal config as specified above, and with setup (gather_facts) activated.
<!--- Paste example playbooks or commands between quotes below -->
```
- hosts: "localhost"
tasks:
- name: Displaying all groups
debug: var=groups.keys() verbosity=2
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
That the new gather_timeout would be taken into account by setup module without error, or ignored if not handled by setup module.
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
fatal: [myhost.mydomain]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"gather_subset": "all",
"gather_timeout": 10
},
"module_name": "setup"
},
"msg": "unsupported parameter for module: gather_timeout"
}
```
| True | ansible 2.2 setup module "unsupported parameter for module: gather_timeout" - <!--- Verify first that your issue/request is not already reported in GitHub -->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the plugin/module/task -->
setup
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
ansible 2.2.0.0 (detached HEAD 44faad0593) last updated 2016/10/04 10:41:35 (GMT +200)
lib/ansible/modules/core: (detached HEAD 17ee1cfaf9) last updated 2016/10/04 10:41:04 (GMT +200)
lib/ansible/modules/extras: (detached HEAD d312f34d9b) last updated 2016/10/04 10:41:05 (GMT +200)
config file = {{custom_path}}/.ansible.cfg
configured module search path = Default w/o overrides
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
[defaults]
inventory = $HOME/inventory/full.inventory
remote_tmp = $HOME/.ansible/tmp
remote_user = root
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
RHEL 7/RHEL7
##### SUMMARY
<!--- Explain the problem briefly -->
When running setup, the setup module complains about not supporting the new gather_timeout parameter:
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem.
For new features, show how the feature would be used.
-->
Git clone ansible version 2.2.0, and checkout tag v2.2.0.0-0.1.rc1.
Source the hacking/source/env-setup script to use that version.
Run any playbook with minimal config as specified above, and with setup (gather_facts) activated.
<!--- Paste example playbooks or commands between quotes below -->
```
- hosts: "localhost"
tasks:
- name: Displaying all groups
debug: var=groups.keys() verbosity=2
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
That the new gather_timeout would be taken into account by setup module without error, or ignored if not handled by setup module.
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
<!--- Paste verbatim command output between quotes below -->
```
fatal: [myhost.mydomain]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"gather_subset": "all",
"gather_timeout": 10
},
"module_name": "setup"
},
"msg": "unsupported parameter for module: gather_timeout"
}
```
| main | ansible setup module unsupported parameter for module gather timeout issue type bug report component name setup ansible version ansible detached head last updated gmt lib ansible modules core detached head last updated gmt lib ansible modules extras detached head last updated gmt config file custom path ansible cfg configured module search path default w o overrides configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables inventory home inventory full inventory remote tmp home ansible tmp remote user root os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific rhel summary when running setup the setup module complains about not supporting the new gather timeout parameter steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used git clone ansible version and checkout tag source the hacking source env setup script to use that version run any playbook with minimal config as specified above and with setup gather facts activated hosts localhost tasks name displaying all groups debug var groups keys verbosity expected results that the new gather timeout would be taken into account by setup module without error or ignored if not handled by setup module actual results fatal failed changed false failed true invocation module args gather subset all gather timeout module name setup msg unsupported parameter for module gather timeout | 1 |
297,206 | 25,708,973,486 | IssuesEvent | 2022-12-07 04:19:10 | apache/pinot | https://api.github.com/repos/apache/pinot | closed | [Flaky-test] ZKOperatorTest.testMetadataUploadType | flaky-test | Error: Failures:
Error: ZKOperatorTest.testMetadataUploadType:178 Failed to meet condition in 30000ms, error message: Failed to delete segmentZkMetadata.
Example run:
https://github.com/apache/pinot/actions/runs/3597915154/jobs/6060171582 | 1.0 | [Flaky-test] ZKOperatorTest.testMetadataUploadType - Error: Failures:
Error: ZKOperatorTest.testMetadataUploadType:178 Failed to meet condition in 30000ms, error message: Failed to delete segmentZkMetadata.
Example run:
https://github.com/apache/pinot/actions/runs/3597915154/jobs/6060171582 | non_main | zkoperatortest testmetadatauploadtype error failures error zkoperatortest testmetadatauploadtype failed to meet condition in error message failed to delete segmentzkmetadata example run | 0 |
677,110 | 23,151,125,873 | IssuesEvent | 2022-07-29 08:26:27 | ballerina-platform/ballerina-dev-website | https://api.github.com/repos/ballerina-platform/ballerina-dev-website | closed | Change the section title | Priority/Highest Type/Bug Reason/Other WebsiteRewrite | ## Description
The title should be `Test, debug and document code`
<img width="537" alt="image" src="https://user-images.githubusercontent.com/16300038/181422411-deaa0c01-4d74-4463-9811-51e36732f866.png">
| 1.0 | Change the section title - ## Description
The title should be `Test, debug and document code`
<img width="537" alt="image" src="https://user-images.githubusercontent.com/16300038/181422411-deaa0c01-4d74-4463-9811-51e36732f866.png">
| non_main | change the section title description the title should be test debug and document code img width alt image src | 0 |
31,963 | 2,742,097,302 | IssuesEvent | 2015-04-21 14:57:07 | GoogleCloudPlatform/kubernetes | https://api.github.com/repos/GoogleCloudPlatform/kubernetes | closed | Scheduling plateaus due to POD killing | component/controller-manager misc/perf-1.0 priority/P1 team/cluster team/master | Following the same test outlined in #5650, you can trace the events and will notice that one of the major reasons why the ramp curve for startup is non-linear, and has plateaus, is due to the pod killing done by the controllers, giving incorrect feedback into the system.
Using the soak test that @jayunit100 you can see a graphical representation of this.
**Related Issues:**
https://github.com/GoogleCloudPlatform/kubernetes/issues/3954
https://github.com/GoogleCloudPlatform/kubernetes/issues/3952
**Expected Results:**
No pod killing on ramp up. | 1.0 | Scheduling plateaus due to POD killing - Following the same test outlined in #5650, you can trace the events and will notice that one of the major reasons why the ramp curve for startup is non-linear, and has plateaus, is due to the pod killing done by the controllers, giving incorrect feedback into the system.
Using the soak test that @jayunit100 you can see a graphical representation of this.
**Related Issues:**
https://github.com/GoogleCloudPlatform/kubernetes/issues/3954
https://github.com/GoogleCloudPlatform/kubernetes/issues/3952
**Expected Results:**
No pod killing on ramp up. | non_main | scheduling plateaus due to pod killing following the same test outlined in you can trace the events and will notice that one of the major reasons why the ramp curve for startup is non linear and has plateaus is due to the pod killing done by the controllers giving incorrect feedback into the system using the soak test that you can see a graphical representation of this related issues expected results no pod killing on ramp up | 0 |
84,551 | 10,410,163,035 | IssuesEvent | 2019-09-13 10:37:00 | inspectIT/inspectit-ocelot | https://api.github.com/repos/inspectIT/inspectit-ocelot | closed | Add documentation on how to use HTTPS on the configuration server | area/documentation | We have to add a documentation section on how to use the configuration server with HTTPS endpoints. | 1.0 | Add documentation on how to use HTTPS on the configuration server - We have to add a documentation section on how to use the configuration server with HTTPS endpoints. | non_main | add documentation on how to use https on the configuration server we have to add a documentation section on how to use the configuration server with https endpoints | 0 |
72,366 | 8,724,223,208 | IssuesEvent | 2018-12-10 03:48:50 | ppy/osu-web | https://api.github.com/repos/ppy/osu-web | closed | Make modding history somehow accessible from user profile | design overdue user profile | That would be smarter I think since now we have to go to the discussion and then click on the button next to the username or add ``/modding`` to user profile page | 1.0 | Make modding history somehow accessible from user profile - That would be smarter I think since now we have to go to the discussion and then click on the button next to the username or add ``/modding`` to user profile page | non_main | make modding history somehow accessible from user profile that would be smarter i think since now we have to go to the discussion and then click on the button next to the username or add modding to user profile page | 0 |
4,963 | 25,480,958,210 | IssuesEvent | 2022-11-25 20:52:40 | aws/serverless-application-model | https://api.github.com/repos/aws/serverless-application-model | closed | APIs are not getting deployed on Prod stage | type/feature maintainer/need-response | Newly developed APIs are not deploying on Prod stage which can be seen in Resources tab in APIGateway
We are having server less architecture and we are using .Net core (netcoreapp2.1 framework) and AWS.
Below is a sample cloud formation template we are using.
```yaml
AWSTemplateFormatVersion: 2010-09-09
Description: 'ApiGateways: APIGateway'
Transform: 'AWS::Serverless-2016-10-31'
AWS::Serverless::Api
Properties:
OpenApiVersion: 3.0.1
StageName: Prod
DefinitionUri:
Bucket: XXX
Key: !Ref SwaggerKey
TracingEnabled: true
MethodSettings:
- DataTraceEnabled: false
HttpMethod: '*'
LoggingLevel: ERROR
MetricsEnabled: true
ResourcePath: /*
Variables:
API : !Ref APIFunctionName
```
We have only one Stage which is Prod.
After build deployment, in Cloudformation, when we turn "view processed template" on we can see resources with
"Type": "AWS::ApiGateway::RestApi", "Type": "AWS::ApiGateway::Deployment" (with APIGatewayDeployment601c725c09), "Type": "AWS::ApiGateway::Stage"
We are deploying our code through Azure devops pipeline.
**Observed result:**
First time of deployment, all APIs are deployed on Prod stage. In second time if new APIs are added then those are not getting deployed on Prod stage.
**Expected result:**
All APIs mentioned in the swagger should get deployed in Prod stage
| True | APIs are not getting deployed on Prod stage - Newly developed APIs are not deploying on Prod stage which can be seen in Resources tab in APIGateway
We are having server less architecture and we are using .Net core (netcoreapp2.1 framework) and AWS.
Below is a sample cloud formation template we are using.
```yaml
AWSTemplateFormatVersion: 2010-09-09
Description: 'ApiGateways: APIGateway'
Transform: 'AWS::Serverless-2016-10-31'
AWS::Serverless::Api
Properties:
OpenApiVersion: 3.0.1
StageName: Prod
DefinitionUri:
Bucket: XXX
Key: !Ref SwaggerKey
TracingEnabled: true
MethodSettings:
- DataTraceEnabled: false
HttpMethod: '*'
LoggingLevel: ERROR
MetricsEnabled: true
ResourcePath: /*
Variables:
API : !Ref APIFunctionName
```
We have only one Stage which is Prod.
After build deployment, in Cloudformation, when we turn "view processed template" on we can see resources with
"Type": "AWS::ApiGateway::RestApi", "Type": "AWS::ApiGateway::Deployment" (with APIGatewayDeployment601c725c09), "Type": "AWS::ApiGateway::Stage"
We are deploying our code through Azure devops pipeline.
**Observed result:**
First time of deployment, all APIs are deployed on Prod stage. In second time if new APIs are added then those are not getting deployed on Prod stage.
**Expected result:**
All APIs mentioned in the swagger should get deployed in Prod stage
| main | apis are not getting deployed on prod stage newly developed apis are not deploying on prod stage which can be seen in resources tab in apigateway we are having server less architecture and we are using net core framework and aws below is a sample cloud formation template we are using yaml awstemplateformatversion description apigateways apigateway transform aws serverless aws serverless api properties openapiversion stagename prod definitionuri bucket xxx key ref swaggerkey tracingenabled true methodsettings datatraceenabled false httpmethod logginglevel error metricsenabled true resourcepath variables api ref apifunctionname we have only one stage which is prod after build deployment in cloudformation when we turn view processed template on we can see resources with type aws apigateway restapi type aws apigateway deployment with type aws apigateway stage we are deploying our code through azure devops pipeline observed result first time of deployment all apis are deployed on prod stage in second time if new apis are added then those are not getting deployed on prod stage expected result all apis mentioned in the swagger should get deployed in prod stage | 1 |
165,138 | 26,105,811,825 | IssuesEvent | 2022-12-27 13:04:39 | opencodeiiita/HandsForHunger | https://api.github.com/repos/opencodeiiita/HandsForHunger | closed | Design UI for Donation page | Points: 20 everyone design | Through the Donation page we take the details of the food such as quantity(person), image, veg-non-veg, used by date, location, contact no.
### **Note**
- The deadline for the task is 27th December 11.59 P.M
- **No need to claim** it, it's open for all
- You are not allowed to make changes in any of the files except for pubsec.yaml and lib folders
- Try to keep it minimalistic and innovative
| 1.0 | Design UI for Donation page - Through the Donation page we take the details of the food such as quantity(person), image, veg-non-veg, used by date, location, contact no.
### **Note**
- The deadline for the task is 27th December 11.59 P.M
- **No need to claim** it, it's open for all
- You are not allowed to make changes in any of the files except for pubsec.yaml and lib folders
- Try to keep it minimalistic and innovative
| non_main | design ui for donation page through the donation page we take the details of the food such as quantity person image veg non veg used by date location contact no note the deadline for the task is december p m no need to claim it it s open for all you are not allowed to make changes in any of the files except for pubsec yaml and lib folders try to keep it minimalistic and innovative | 0 |
92,813 | 11,712,753,805 | IssuesEvent | 2020-03-09 09:01:16 | easably/context-tutor | https://api.github.com/repos/easably/context-tutor | closed | [Context-tutor] "Need help?" block is shifted to the left | design | **Describe the bug**
"Need help?" block is not in the middle of a sentence.
**Screenshots**

**Desktop:**
- OS: [Windows 8]
- Browser [Google Chrome]
- Version [80.0.3987.106] | 1.0 | [Context-tutor] "Need help?" block is shifted to the left - **Describe the bug**
"Need help?" block is not in the middle of a sentence.
**Screenshots**

**Desktop:**
- OS: [Windows 8]
- Browser [Google Chrome]
- Version [80.0.3987.106] | non_main | need help block is shifted to the left describe the bug need help block is not in the middle of a sentence screenshots desktop os browser version | 0 |
4,498 | 23,416,387,185 | IssuesEvent | 2022-08-13 02:46:54 | aws/aws-sam-cli | https://api.github.com/repos/aws/aws-sam-cli | closed | SAM log file - flush | type/feature area/local/start-api area/local/start-lambda area/local/invoke maintainer/need-followup | ### Description
SAM with log file option -l does output to log file, but logs only found after stopping the SAM command.
### Steps to reproduce
sam local start-api -l <log_file>
### Observed result
The output log file is generated only after the sam command finishes. The log could not be accessed with tail as, there is no output to the log file.
### Expected result
Log file generated and flushed periodically to access the log.
### Additional environment details (Ex: Windows, Mac, Amazon Linux etc)
1. OS:CentOS 7
2. `sam --version`: 0.48
| True | SAM log file - flush - ### Description
SAM with log file option -l does output to log file, but logs only found after stopping the SAM command.
### Steps to reproduce
sam local start-api -l <log_file>
### Observed result
The output log file is generated only after the sam command finishes. The log could not be accessed with tail as, there is no output to the log file.
### Expected result
Log file generated and flushed periodically to access the log.
### Additional environment details (Ex: Windows, Mac, Amazon Linux etc)
1. OS:CentOS 7
2. `sam --version`: 0.48
| main | sam log file flush description sam with log file option l does output to log file but logs only found after stopping the sam command steps to reproduce sam local start api l observed result the output log file is generated only after the sam command finishes the log could not be accessed with tail as there is no output to the log file expected result log file generated and flushed periodically to access the log additional environment details ex windows mac amazon linux etc os centos sam version | 1 |
4,512 | 23,462,523,627 | IssuesEvent | 2022-08-16 14:11:13 | BioArchLinux/Packages | https://api.github.com/repos/BioArchLinux/Packages | closed | [MAINTAIN] rm R alias from these packages | maintain | - [ ] r-a4base
- [ ] r-a4classif
- [ ] r-a4core
- [ ] r-a4
- [ ] r-a4preproc
- [ ] r-a4reporting
- [ ] r-abadata
- [ ] r-abarray
- [ ] r-abind
- [ ] r-abseqr
- [ ] r-absseq
- [ ] r-acde
- [ ] r-ace
- [ ] r-adabag
- [ ] r-adamgui
- [ ] r-ada
- [ ] r-additivitytests
- [ ] r-adductdata
- [ ] r-adductomicsr
- [ ] r-adgoftest
- [ ] r-adimpute
- [ ] r-afex
- [ ] r-affixcan
- [ ] r-affycompatible
- [ ] r-affycomp
- [ ] r-affycontam
- [ ] r-affycoretools
- [ ] r-affydata
- [ ] r-affyilm
- [ ] r-affylmgui
- [ ] r-affypara
- [ ] r-affyrnadegradation
- [ ] r-agdex
- [ ] r-aggregatebiovar
- [ ] r-aggregation
- [ ] r-agilp
- [ ] r-agimicrorna
- [ ] r-agricolae
- [ ] r-aiccmodavg
- [ ] r-aims
- [ ] r-airpart
- [ ] r-airway
- [ ] r-akmbiclust
- [ ] r-alabama
- [ ] r-aldex2
- [ ] r-alevinqc
- [ ] r-allelicimbalance
- [ ] r-all
- [ ] r-alluvial
- [ ] r-alphabeta
- [ ] r-alpine
- [ ] r-alpsnmr
- [ ] r-alps
- [ ] r-alsace
- [ ] r-als
- [ ] r-altcdfenvs
- [ ] r-amaretto
- [ ] r-anaquin
- [ ] r-ancombc
- [ ] r-aneufinderdata
- [ ] r-anf
- [ ] r-animalcules
- [ ] r-annaffy
- [ ] r-annmap
- [ ] r-annotate
- [ ] r-annotationdbi
- [ ] r-annotationfilter
- [ ] r-annotationforge
- [ ] r-annotationhubdata
- [ ] r-annotationtools
- [ ] r-annotatr
- [ ] r-anocva
- [ ] r-anota2seq
- [ ] r-anota
- [ ] r-antiprofiles
- [ ] r-anvilbilling
- [ ] r-anvil
- [ ] r-anvilpublish
- [ ] r-anylib
- [ ] r-aod
- [ ] r-aods3
- [ ] r-apalyzer
- [ ] r-apcomplex
- [ ] r-aplot
- [ ] r-aplpack
- [ ] r-appreci8r
- [ ] r-argparse
- [ ] r-arm
- [ ] r-aroma.affymetrix
- [ ] r-aroma.apd
- [ ] r-aroma.core
- [ ] r-aroma.light
- [ ] r-arrayexpress
- [ ] r-arrayhelpers
- [ ] r-arraymvout
- [ ] r-arrayqualitymetrics
- [ ] r-arrayquality
- [ ] r-arrmdata
- [ ] r-arrmnormalization
- [ ] r-arsenal
- [ ] r-artms
- [ ] r-asafe
- [ ] r-asgsca
- [ ] r-asics
- [ ] r-aspediafi
- [ ] r-aspli
- [ ] r-assertive.base
- [ ] r-assertive.code
- [ ] r-assertive.data
- [ ] r-assertive.data.uk
- [ ] r-assertive.data.us
- [ ] r-assertive.datetimes
- [ ] r-assertive.files
- [ ] r-assertive.matrices
- [ ] r-assertive.models
- [ ] r-assertive.numbers
- [ ] r-assertive
- [ ] r-assertive.properties
- [ ] r-assertive.reflection
- [ ] r-assertive.sets
- [ ] r-assertive.strings
- [ ] r-assertive.types
- [ ] r-assertthat
- [ ] r-assessorf
- [ ] r-asset
- [ ] r-assign
- [ ] r-atacseqqc
- [ ] r-atena
- [ ] r-atsa
- [ ] r-attempt
- [ ] r-attract
- [ ] r-aucell
- [ ] r-auc
- [ ] r-autonomics
- [ ] r-autotuner
- [ ] r-available
- [ ] r-aws.s3
- [ ] r-aws.signature
- [ ] r-awst
- [ ] r-baalchip
- [ ] r-babelgene
- [ ] r-badregionfinder
- [ ] r-balcony
- [ ] r-ballgown
- [ ] r-banocc
- [ ] r-barcodetrackr
- [ ] r-base64
- [ ] r-basecallqc
- [ ] r-baseline
- [ ] r-basespacer
- [ ] r-basic4cseq
- [ ] r-basicstarrseq
- [ ] r-basictrendline
- [ ] r-basilisk
- [ ] r-basilisk.utils
- [ ] r-batchjobs
- [ ] r-batchqc
- [ ] r-bayesknockdown
- [ ] r-bayesplay
- [ ] r-bayesplot
- [ ] r-bayesrules
- [ ] r-bayestestr
- [ ] r-bayestools
- [ ] r-bayseq
- [ ] r-bbcanalyzer
- [ ] r-bbmle
- [ ] r-bb
- [ ] r-bc3net
- [ ] r-bcellviper
- [ ] r-beadarraysnp
- [ ] r-beanplot
- [ ] r-bearscc
- [ ] r-beat
- [ ] r-benchdamic
- [ ] r-benchmarkmedata
- [ ] r-benchmarkme
- [ ] r-betareg
- [ ] r-bezier
- [ ] r-bgeecall
- [ ] r-bgeedb
- [ ] r-bh
- [ ] r-bibitr
- [ ] r-bifet
- [ ] r-bigassertr
- [ ] r-biggr
- [ ] r-bigmelon
- [ ] r-bigmemory.sri
- [ ] r-bigparallelr
- [ ] r-bigpint
- [ ] r-bindingsitefinder
- [ ] r-binr
- [ ] r-bioassayr
- [ ] r-biobroom
- [ ] r-biobtreer
- [ ] r-biocancer
- [ ] r-bioccheck
- [ ] r-biocdockermanager
- [ ] r-biocfilecache
- [ ] r-biocgenerics
- [ ] r-biocgraph
- [ ] r-biocio
- [ ] r-biocmanager
- [ ] r-bioconcotk
- [ ] r-biocor
- [ ] r-biocpkgtools
- [ ] r-biocset
- [ ] r-biocsklearn
- [ ] r-biocstyle
- [ ] r-biocthis
- [ ] r-biocversion
- [ ] r-biocviews
- [ ] r-biocworkflowtools
- [ ] r-biodbchebi
- [ ] r-biodbkegg
- [ ] r-biodblipidmaps
- [ ] r-biodbuniprot
- [ ] r-biodist
- [ ] r-biomart
- [ ] r-biomformat
- [ ] r-biomm
- [ ] r-biomvcclass
- [ ] r-bionero
- [ ] r-bionet
- [ ] r-bionetstat
- [ ] r-bioplex
- [ ] r-biosigner
- [ ] r-biotip
- [ ] r-biotmle
- [ ] r-biscuiteerdata
- [ ] r-biscuiteer
- [ ] r-biseq
- [ ] r-biwt
- [ ] r-blacksheepr
- [ ] r-bladderbatch
- [ ] r-blandaltmanleh
- [ ] r-blma
- [ ] r-blme
- [ ] r-blob
- [ ] r-bloodgen3module
- [ ] r-bmp
- [ ] r-bnem
- [ ] r-bookdown
- [ ] r-bootnet
- [ ] r-brainflowprobes
- [ ] r-brain
- [ ] r-brainsaber
- [ ] r-brainstars
- [ ] r-branchpointer
- [ ] r-breakpointrdata
- [ ] r-breakpointr
- [ ] r-breastcancervdx
- [ ] r-brew
- [ ] r-brgenomics
- [ ] r-bridgedbr
- [ ] r-bridgesampling
- [ ] r-brobdingnag
- [ ] r-broom.mixed
- [ ] r-broom
- [ ] r-browserviz
- [ ] r-bs4dash
- [ ] r-bsgenome.celegans.ucsc.ce2
- [ ] r-bsgenome.drerio.ucsc.danrer7
- [ ] r-bsgenome.ecoli.ncbi.20080805
- [ ] r-bsgenome.hsapiens.ucsc.hg18
- [ ] r-bsgenome.hsapiens.ucsc.hg19
- [ ] r-bsgenome.hsapiens.ucsc.hg38
- [ ] r-bsgenome.mmusculus.ucsc.mm10
- [ ] r-bsgenome.mmusculus.ucsc.mm9
- [ ] r-bsgenome
- [ ] r-bslib
- [ ] r-bsplus
- [ ] r-bspm
- [ ] r-bubbletree
- [ ] r-bugsigdbr
- [ ] r-bumhmm
- [ ] r-bumphunter
- [ ] r-bumpymatrix
- [ ] r-c3net
- [ ] r-caen
- [ ] r-cafe
- [ ] r-cagefightr
- [ ] r-cageminer
- [ ] r-cager
- [ ] r-calibrate
- [ ] r-callr
- [ ] r-calm
- [ ] r-cancer
- [ ] r-cancersubtypes
- [ ] r-candisc
- [ ] r-cand
- [ ] r-caomicsv
- [ ] r-ca
- [ ] r-capushe
- [ ] r-cardata
- [ ] r-caretensemble
- [ ] r-carnival
- [ ] r-car
- [ ] r-catalyst
- [ ] r-catdata
- [ ] r-categorycompare
- [ ] r-category
- [ ] r-catencoders
- [ ] r-causalr
- [ ] r-cbaf
- [ ] r-cbioportaldata
- [ ] r-cbpmanager
- [ ] r-ccdata
- [ ] r-ccmap
- [ ] r-ccp
- [ ] r-ccpromise
- [ ] r-ccrepe
- [ ] r-cctensor
- [ ] r-cdft
- [ ] r-celaref
- [ ] r-celestial
- [ ] r-cellbaser
- [ ] r-cellbench
- [ ] r-celldex
- [ ] r-cellhts2
- [ ] r-cellity
- [ ] r-cellmapper
- [ ] r-cellmigration
- [ ] r-cellmixs
- [ ] r-cellranger
- [ ] r-cellscape
- [ ] r-cellscore
- [ ] r-celltrails
- [ ] r-celltree
- [ ] r-cemitool
- [ ] r-censcyt
- [ ] r-cepo
- [ ] r-cernanetsim
- [ ] r-cexor
- [ ] r-cfassay
- [ ] r-cfdnapro
- [ ] r-cgdsr
- [ ] r-cghbase
- [ ] r-cghcall
- [ ] r-cghmcr
- [ ] r-cghnormaliter
- [ ] r-cghregions
- [ ] r-champdata
- [ ] r-champ
- [ ] r-chemometrics
- [ ] r-chetah
- [ ] r-chicago
- [ ] r-chic.data
- [ ] r-chic
- [ ] r-chimeraviz
- [ ] r-chipanalyser
- [ ] r-chipenrich.data
- [ ] r-chipenrich
- [ ] r-chipexoqual
- [ ] r-chippeakanno
- [ ] r-chipqc
- [ ] r-chipseeker
- [ ] r-chipsim
- [ ] r-chipxpressdata
- [ ] r-chipxpress
- [ ] r-chk
- [ ] r-chromheatmap
- [ ] r-chromhmmdata
- [ ] r-chromplot
- [ ] r-chromstardata
- [ ] r-chromswitch
- [ ] r-chronos
- [ ] r-cicero
- [ ] r-cimice
- [ ] r-cindex
- [ ] r-circlize
- [ ] r-circrnaprofiler
- [ ] r-circstats
- [ ] r-citefuse
- [ ] r-classifyr
- [ ] r-cleanupdtseq
- [ ] r-cleaver
- [ ] r-clippda
- [ ] r-clipper
- [ ] r-cliprofiler
- [ ] r-clipr
- [ ] r-clisymbols
- [ ] r-clomial
- [ ] r-clonality
- [ ] r-clonotyper
- [ ] r-clst
- [ ] r-clstutils
- [ ] r-clumsid
- [ ] r-clustcomp
- [ ] r-clusterjudge
- [ ] r-clusterprofiler
- [ ] r-clusterrepro
- [ ] r-clusterseq
- [ ] r-clustersignificance
- [ ] r-clusterstab
- [ ] r-clustifyr
- [ ] r-clustree
- [ ] r-clustvarsel
- [ ] r-clvalid
- [ ] r-cmap2data
- [ ] r-cma
- [ ] r-cmap
- [ ] r-cmapr
- [ ] r-cmdfun
- [ ] r-cmplot
- [ ] r-cnorfeeder
- [ ] r-cnorm
- [ ] r-cnvfilter
- [ ] r-cnvgears
- [ ] r-cnvgsa
- [ ] r-cnviz
- [ ] r-cnvpanelizer
- [ ] r-cnvranger
- [ ] r-cnvrd2
- [ ] r-cocitestats
- [ ] r-cocoa
- [ ] r-cocor
- [ ] r-coda
- [ ] r-codedepends
- [ ] r-codelink
- [ ] r-codex
- [ ] r-coexnet
- [ ] r-cogena
- [ ] r-cogito
- [ ] r-cogps
- [ ] r-cohcapanno
- [ ] r-cointreg
- [ ] r-colorramps
- [ ] r-colortools
- [ ] r-colourpicker
- [ ] r-combinat
- [ ] r-combinepvalue
- [ ] r-combi
- [ ] r-comet
- [ ] r-compartmap
- [ ] r-compcoder
- [ ] r-compepitools
- [ ] r-complexheatmap
- [ ] r-complexupset
- [ ] r-compran
- [ ] r-comprehenr
- [ ] r-concaveman
- [ ] r-conclus
- [ ] r-condformat
- [ ] r-condiments
- [ ] r-conf.design
- [ ] r-confess
- [ ] r-config
- [ ] r-configr
- [ ] r-confintr
- [ ] r-conicfit
- [ ] r-consensusclusterplus
- [ ] r-consensusde
- [ ] r-consensusov
- [ ] r-consensus
- [ ] r-consensusseeker
- [ ] r-constand
- [ ] r-conting
- [ ] r-contrast
- [ ] r-conumee
- [ ] r-convert
- [ ] r-copyhelper
- [ ] r-copynumber
- [ ] r-copynumberplots
- [ ] r-copywriter
- [ ] r-cordon
- [ ] r-coregx
- [ ] r-cormotif
- [ ] r-corncob
- [ ] r-corpcor
- [ ] r-corral
- [ ] r-correp
- [ ] r-corrgram
- [ ] r-corrplot
- [ ] r-coseq
- [ ] r-cosmic.67
- [ ] r-cosmosr
- [ ] r-countclust
- [ ] r-countrycode
- [ ] r-countsimqc
- [ ] r-coveb
- [ ] r-coverageview
- [ ] r-covrna
- [ ] r-cowplot
- [ ] r-cp4p
- [ ] r-cpgassoc
- [ ] r-cpp11
- [ ] r-cpvsnp
- [ ] r-cqn
- [ ] r-crayon
- [ ] r-credentials
- [ ] r-crimage
- [ ] r-crisprseek
- [ ] r-crisprseekplus
- [ ] r-crisprvariants
- [ ] r-crmn
- [ ] r-crossmeta
- [ ] r-crosstalk
- [ ] r-crul
- [ ] r-cssam
- [ ] r-cssq
- [ ] r-ctc
- [ ] r-ctdquerier
- [ ] r-ctggem
- [ ] r-ctrap
- [ ] r-ctsge
- [ ] r-cummerbund
- [ ] r-curatedtcgadata
- [ ] r-curry
- [ ] r-customcmpdb
- [ ] r-customprodb
- [ ] r-cvauc
- [ ] r-cvms
- [ ] r-cyanofilter
- [ ] r-cycle
- [ ] r-cyclocomp
- [ ] r-cytodx
- [ ] r-cytofpower
- [ ] r-cytoglmm
- [ ] r-cytomapper
- [ ] r-daewr
- [ ] r-daglogo
- [ ] r-dama
- [ ] r-damefinder
- [ ] r-damirseq
- [ ] r-dapardata
- [ ] r-dapar
- [ ] r-dart
- [ ] r-dasper
- [ ] r-datamods
- [ ] r-data.tree
- [ ] r-datawizard
- [ ] r-dbi
- [ ] r-dbplyr
- [ ] r-dcanr
- [ ] r-dce
- [ ] r-dcgsa
- [ ] r-ddct
- [ ] r-ddpcrclust
- [ ] r-ddpcr
- [ ] r-dearseq
- [ ] r-debcam
- [ ] r-debrowser
- [ ] r-decomptumor2sig
- [ ] r-deconrnaseq
- [ ] r-deconstructsigs
- [ ] r-decontam
- [ ] r-deconvr
- [ ] r-deco
- [ ] r-decoupler
- [ ] r-deepbluer
- [ ] r-deeppincs
- [ ] r-deformats
- [ ] r-degraph
- [ ] r-degreport
- [ ] r-delayeddataframe
- [ ] r-delayedmatrixstats
- [ ] r-delayedtensor
- [ ] r-deltacapturec
- [ ] r-deltagseg
- [ ] r-demand
- [ ] r-dendextend
- [ ] r-deoptimr
- [ ] r-depmap
- [ ] r-dep
- [ ] r-deqms
- [ ] r-derfinderhelper
- [ ] r-derfinder
- [ ] r-derfinderplot
- [ ] r-deriv
- [ ] r-desc
- [ ] r-desingle
- [ ] r-desirability
- [ ] r-desubs
- [ ] r-detectseparation
- [ ] r-devtools
- [ ] r-dewseq
- [ ] r-dexmadata
- [ ] r-dexma
- [ ] r-dexseq
- [ ] r-dfp
- [ ] r-diagrammer
- [ ] r-diagram
- [ ] r-dichromat
- [ ] r-diffcoexp
- [ ] r-diffcorr
- [ ] r-diffcyt
- [ ] r-diffgeneanalysis
- [ ] r-difflogo
- [ ] r-diffloop
- [ ] r-diffr
- [ ] r-diffutr
- [ ] r-diggit
- [ ] r-digittests
- [ ] r-dino
- [ ] r-director
- [ ] r-dir.expiry
- [ ] r-dirmult
- [ ] r-discorhythm
- [ ] r-discriminer
- [ ] r-distillery
- [ ] r-distributional
- [ ] r-dittoseq
- [ ] r-divergence
- [ ] r-dks
- [ ] r-dmcfb
- [ ] r-dmchmm
- [ ] r-dml
- [ ] r-dmrcaller
- [ ] r-dmrcate
- [ ] r-dmrforpairs
- [ ] r-dmrscan
- [ ] r-dmrseq
- [ ] r-dmt
- [ ] r-dmwr2
- [ ] r-dnabarcodecompatibility
- [ ] r-dnet
- [ ] r-doby
- [ ] r-dockerfiler
- [ ] r-docopt
- [ ] r-do.db
- [ ] r-doe.base
- [ ] r-dominoeffect
- [ ] r-doparallel
- [ ] r-doppelgangr
- [ ] r-dorng
- [ ] r-dorothea
- [ ] r-doscheda
- [ ] r-dose
- [ ] r-doser
- [ ] r-dosnow
- [ ] r-downlit
- [ ] r-downloader
- [ ] r-drawer
- [ ] r-drawproteins
- [ ] r-drawr
- [ ] r-drc
- [ ] r-drimseq
- [ ] r-drivernet
- [ ] r-drtmle
- [ ] r-drugtargetinteractions
- [ ] r-drugvsdiseasedata
- [ ] r-drugvsdisease
- [ ] r-dstruct
- [ ] r-dtangle
- [ ] r-dta
- [ ] r-dt
- [ ] r-dtplyr
- [ ] r-dtt
- [ ] r-dualks
- [ ] r-dune
- [ ] r-dunn.test
- [ ] r-dupradar
- [ ] r-dyebias
- [ ] r-dygraphs
- [ ] r-dynamictreecut
- [ ] r-dyndoc
- [ ] r-easierdata
- [ ] r-easier
- [ ] r-easypubmed
- [ ] r-easyreporting
- [ ] r-easyrnaseq
- [ ] r-ebsea
- [ ] r-ebseqhmm
- [ ] r-ebseq
- [ ] r-echarts4r
- [ ] r-ecolitk
- [ ] r-ecume
- [ ] r-edaseq
- [ ] r-eegc
- [ ] r-effectsize
- [ ] r-effsize
- [ ] r-egad
- [ ] r-egg
- [ ] r-egseadata
- [ ] r-egsea
- [ ] r-eigenmodel
- [ ] r-eisar
- [ ] r-elasticnet
- [ ] r-elitism
- [ ] r-ellipse
- [ ] r-elliptic
- [ ] r-elmer.data
- [ ] r-elmer
- [ ] r-emdbook
- [ ] r-emdist
- [ ] r-emdomics
- [ ] r-emmeans
- [ ] r-empiricalbrownsmethod
- [ ] r-emt
- [ ] r-encodexplorerdata
- [ ] r-encodexplorer
- [ ] r-english
- [ ] r-enhancedvolcano
- [ ] r-enmcb
- [ ] r-enmix
- [ ] r-enrichmentbrowser
- [ ] r-enrichplot
- [ ] r-enrichr
- [ ] r-enrichtf
- [ ] r-ensdb.hsapiens.v75
- [ ] r-ensdb.hsapiens.v86
- [ ] r-ensembldb
- [ ] r-ensemblvep
- [ ] r-ensurer
- [ ] r-entropyexplorer
- [ ] r-entropy
- [ ] r-envisionquery
- [ ] r-envstats
- [ ] r-epidecoder
- [ ] r-epidish
- [ ] r-epigenomix
- [ ] r-epihet
- [ ] r-epinem
- [ ] r-epir
- [ ] r-epistack
- [ ] r-epitxdb
- [ ] r-epivizrchart
- [ ] r-epivizrdata
- [ ] r-epivizr
- [ ] r-epivizrserver
- [ ] r-epivizrstandalone
- [ ] r-erccdashboard
- [ ] r-erma
- [ ] r-erssa
- [ ] r-escape
- [ ] r-esetvis
- [ ] r-estimability
- [ ] r-etrunct
- [ ] r-eudysbiome
- [ ] r-evaluate
- [ ] r-evaluomer
- [ ] r-eva
- [ ] r-evmix
- [ ] r-ewcedata
- [ ] r-ewce
- [ ] r-exact
- [ ] r-excelr
- [ ] r-excluster
- [ ] r-eximir
- [ ] r-exomepeak2
- [ ] r-experimenthubdata
- [ ] r-experimenthub
- [ ] r-experimentsubset
- [ ] r-exploremodelmatrix
- [ ] r-expressionatlas
- [ ] r-extdist
- [ ] r-extrafontdb
- [ ] r-extrafont
- [ ] r-faahko
- [ ] r-factdesign
- [ ] r-factoextra
- [ ] r-factominer
- [ ] r-fadist
- [ ] r-famagg
- [ ] r-famat
- [ ] r-farms
- [ ] r-fastdummies
- [ ] r-fastliquidassociation
- [ ] r-fcbf
- [ ] r-fccac
- [ ] r-fci
- [ ] r-fcoex
- [ ] r-fcscan
- [ ] r-fda
- [ ] r-fdb.infiniummethylation.hg19
- [ ] r-fds
- [ ] r-feature
- [ ] r-fedup
- [ ] r-fella
- [ ] r-ffield
- [ ] r-ffpe
- [ ] r-fgga
- [ ] r-fgnet
- [ ] r-filematrix
- [ ] r-filterffpe
- [ ] r-findit2
- [ ] r-findpython
- [ ] r-fishalyser
- [ ] r-fis
- [ ] r-fission
- [ ] r-fitdistrplus
- [ ] r-fit.models
- [ ] r-flashclust
- [ ] r-flexdashboard
- [ ] r-flexmix
- [ ] r-flextable
- [ ] r-flowai
- [ ] r-flowbeads
- [ ] r-flowbin
- [ ] r-flowcatchr
- [ ] r-flowchic
- [ ] r-flowclean
- [ ] r-flowcl
- [ ] r-flowcut
- [ ] r-flowcybar
- [ ] r-flowdensity
- [ ] r-flowgraph
- [ ] r-flowmap
- [ ] r-flowmeans
- [ ] r-flowmerge
- [ ] r-flowploidy
- [ ] r-flowplots
- [ ] r-flowsorted.blood.450k
- [ ] r-flowspecs
- [ ] r-flowstats
- [ ] r-flowtime
- [ ] r-flowtrans
- [ ] r-flowutils
- [ ] r-flowviz
- [ ] r-flowvs
- [ ] r-fmsb
- [ ] r-fmstable
- [ ] r-fobitools
- [ ] r-foldgo
- [ ] r-fontawesome
- [ ] r-forcats
- [ ] r-foreach
- [ ] r-forestplot
- [ ] r-formatr
- [ ] r-formattable
- [ ] r-formula
- [ ] r-formula.tools
- [ ] r-fpc
- [ ] r-frenchfish
- [ ] r-freqprof
- [ ] r-fresh
- [ ] r-frf2
- [ ] r-frgepistasis
- [ ] r-frma
- [ ] r-frmatools
- [ ] r-fsa
- [ ] r-fscanr
- [ ] r-fselector
- [ ] r-funtoonorm
- [ ] r-furrr
- [ ] r-futile.logger
- [ ] r-futile.options
- [ ] r-future.apply
- [ ] r-future
- [ ] r-ga4ghclient
- [ ] r-ga4ghshiny
- [ ] r-gage
- [ ] r-gaggle
- [ ] r-gaia
- [ ] r-gamlss.data
- [ ] r-gap.datasets
- [ ] r-gapgom
- [ ] r-gaprediction
- [ ] r-gargle
- [ ] r-gars
- [ ] r-gatefinder
- [ ] r-gbrd
- [ ] r-gcapc
- [ ] r-gclus
- [ ] r-gcrisprtools
- [ ] r-gcsfilesystem
- [ ] r-gcspikelite
- [ ] r-gcsscore
- [ ] r-gdata
- [ ] r-gdcrnatools
- [ ] r-gdsarray
- [ ] r-geem
- [ ] r-gemini
- [ ] r-gem
- [ ] r-genalg
- [ ] r-genarise
- [ ] r-genbankr
- [ ] r-geneaccord
- [ ] r-geneanswers
- [ ] r-geneattribution
- [ ] r-genebreak
- [ ] r-geneclassifiers
- [ ] r-geneexpressionsignature
- [ ] r-genefu
- [ ] r-genega
- [ ] r-genelendatabase
- [ ] r-genemeta
- [ ] r-genenet
- [ ] r-geneoverlap
- [ ] r-geneplast
- [ ] r-geneplotter
- [ ] r-generecommender
- [ ] r-generegionscan
- [ ] r-generics
- [ ] r-genestructuretools
- [ ] r-genetclassifier
- [ ] r-genetics
- [ ] r-genetonic
- [ ] r-genomeinfodbdata
- [ ] r-genomeinfodb
- [ ] r-genomeintervals
- [ ] r-genomes
- [ ] r-genomicdatacommons
- [ ] r-genomicdistributions
- [ ] r-genomicfeatures
- [ ] r-genomicfiles
- [ ] r-genomicinstability
- [ ] r-genomicinteractions
- [ ] r-genomicozone
- [ ] r-genomicscores
- [ ] r-genomicstate
- [ ] r-genomicsupersignature
- [ ] r-genomictools.filehandler
- [ ] r-genotypeeval
- [ ] r-genphen
- [ ] r-genvisr
- [ ] r-geoexplorer
- [ ] r-geofastq
- [ ] r-geometadb
- [ ] r-geomxtools
- [ ] r-geoquery
- [ ] r-geosubmission
- [ ] r-gep2pep
- [ ] r-gesper
- [ ] r-getdee2
- [ ] r-getoptlong
- [ ] r-getopt
- [ ] r-geva
- [ ] r-gewist
- [ ] r-gfa
- [ ] r-ggalluvial
- [ ] r-ggally
- [ ] r-ggalt
- [ ] r-gganimate
- [ ] r-ggbeeswarm
- [ ] r-ggbio
- [ ] r-ggcorrplot
- [ ] r-ggcyto
- [ ] r-ggdendro
- [ ] r-ggdist
- [ ] r-ggextra
- [ ] r-ggfittext
- [ ] r-ggformula
- [ ] r-ggfortify
- [ ] r-ggfun
- [ ] r-gggenes
- [ ] r-gghalves
- [ ] r-gghighlight
- [ ] r-gginnards
- [ ] r-ggmcmc
- [ ] r-ggm
- [ ] r-ggmsa
- [ ] r-ggnetwork
- [ ] r-ggnewscale
- [ ] r-ggparty
- [ ] r-ggplot2
- [ ] r-ggplotify
- [ ] r-ggplot.multistats
- [ ] r-ggpmisc
- [ ] r-ggpol
- [ ] r-ggpp
- [ ] r-ggprism
- [ ] r-ggpubr
- [ ] r-ggrastr
- [ ] r-ggridges
- [ ] r-ggsci
- [ ] r-ggseqlogo
- [ ] r-ggside
- [ ] r-ggsignif
- [ ] r-ggspavis
- [ ] r-ggstance
- [ ] r-ggstar
- [ ] r-ggtext
- [ ] r-ggthemes
- [ ] r-ggtreeextra
- [ ] r-ggtree
- [ ] r-ggvis
- [ ] r-gh
- [ ] r-gigsea
- [ ] r-gispa
- [ ] r-gistr
- [ ] r-gitcreds
- [ ] r-gladiatox
- [ ] r-glimma
- [ ] r-glm2
- [ ] r-glmpca
- [ ] r-glmsparsenet
- [ ] r-globaloptions
- [ ] r-globalseq
- [ ] r-globals
- [ ] r-globaltest
- [ ] r-gmicr
- [ ] r-gmodels
- [ ] r-gmoviz
- [ ] r-gmrp
- [ ] r-gnorm
- [ ] r-go.db
- [ ] r-goexpress
- [ ] r-gofkernel
- [ ] r-golem
- [ ] r-googleauthr
- [ ] r-googlecloudstorager
- [ ] r-googledrive
- [ ] r-googlesheets4
- [ ] r-googlevis
- [ ] r-goprofiles
- [ ] r-goric
- [ ] r-goseq
- [ ] r-gostag
- [ ] r-gostats
- [ ] r-gothic
- [ ] r-gotools
- [ ] r-gparotation
- [ ] r-gplots
- [ ] r-gpls
- [ ] r-gprege
- [ ] r-gprofiler2
- [ ] r-gprofiler
- [ ] r-gptk
- [ ] r-graddescent
- [ ] r-gramm4r
- [ ] r-granulator
- [ ] r-graphat
- [ ] r-graphite
- [ ] r-graphpac
- [ ] r-greylistchip
- [ ] r-gridbase
- [ ] r-gridextra
- [ ] r-gridgraphics
- [ ] r-gridsvg
- [ ] r-grimport
- [ ] r-grmetrics
- [ ] r-groupdata2
- [ ] r-grridge
- [ ] r-gsalightning
- [ ] r-gsa
- [ ] r-gsar
- [ ] r-gsca
- [ ] r-gscreend
- [ ] r-gseabase
- [ ] r-gseabenchmarker
- [ ] r-gsealm
- [ ] r-gseamining
- [ ] r-gsean
- [ ] r-gsgalgor
- [ ] r-gsri
- [ ] r-gsubfn
- [ ] r-gsvadata
- [ ] r-gtable
- [ ] r-gtrellis
- [ ] r-guideseq
- [ ] r-guitar
- [ ] r-gviz
- [ ] r-gwascat
- [ ] r-gwasexacthw
- [ ] r-gwastools
- [ ] r-gwasurvivr
- [ ] r-gwena
- [ ] r-h5vcdata
- [ ] r-hardhat
- [ ] r-harmonicmeanp
- [ ] r-hash
- [ ] r-hca
- [ ] r-hdinterval
- [ ] r-heatmap3
- [ ] r-heatmaply
- [ ] r-heatmaps
- [ ] r-heatplus
- [ ] r-helloranges
- [ ] r-help
- [ ] r-heplots
- [ ] r-here
- [ ] r-herper
- [ ] r-hgnchelper
- [ ] r-hgu133a2.db
- [ ] r-hgu133a.db
- [ ] r-hgu133plus2.db
- [ ] r-hgu95a.db
- [ ] r-hgu95av2cdf
- [ ] r-hgu95av2.db
- [ ] r-hh
- [ ] r-hiannotator
- [ ] r-hicbricks
- [ ] r-hiccompare
- [ ] r-hiergwas
- [ ] r-hierinf
- [ ] r-highcharter
- [ ] r-highr
- [ ] r-hilbertcurve
- [ ] r-hipathia
- [ ] r-hippo
- [ ] r-hireadsprocessor
- [ ] r-hitc
- [ ] r-hiver
- [ ] r-hmdbquery
- [ ] r-hmeasure
- [ ] r-hms
- [ ] r-homologene
- [ ] r-homo.sapiens
- [ ] r-howmany
- [ ] r-hpaanalyze
- [ ] r-hpar
- [ ] r-hpastainr
- [ ] r-hpip
- [ ] r-hsmmsinglecell
- [ ] r-htm2txt
- [ ] r-htmltable
- [ ] r-htmlutils
- [ ] r-htmlwidgets
- [ ] r-htqpcr
- [ ] r-htscluster
- [ ] r-htseqgenie
- [ ] r-htsfilter
- [ ] r-httpcode
- [ ] r-httr
- [ ] r-hubpub
- [ ] r-humantranscriptomecompendium
- [ ] r-hwriter
- [ ] r-hybridmtest
- [ ] r-hyperdraw
- [ ] r-hypergeo
- [ ] r-hypergraph
- [ ] r-hyper
- [ ] r-iaseq
- [ ] r-iasva
- [ ] r-ibh
- [ ] r-ic10
- [ ] r-ic10trainingdata
- [ ] r-ica
- [ ] r-icens
- [ ] r-icetea
- [ ] r-icheck
- [ ] r-ic.infer
- [ ] r-icluster
- [ ] r-icnv
- [ ] r-icobra
- [ ] r-ics
- [ ] r-ideal
- [ ] r-ideoviz
- [ ] r-idiogram
- [ ] r-idpr
- [ ] r-idr2d
- [ ] r-idr
- [ ] r-ids
- [ ] r-igc
- [ ] r-iggeneusage
- [ ] r-igvr
- [ ] r-ihw
- [ ] r-illumina450probevariants.db
- [ ] r-illuminahumanmethylation450kanno.ilmn12.hg19
- [ ] r-illuminahumanmethylation450kmanifest
- [ ] r-illuminahumanmethylationepicanno.ilm10b2.hg19
- [ ] r-illuminahumanmethylationepicanno.ilm10b4.hg19
- [ ] r-illuminahumanmethylationepicmanifest
- [ ] r-iloreg
- [ ] r-imagehts
- [ ] r-imas
- [ ] r-imcrtools
- [ ] r-imman
- [ ] r-immunespacer
- [ ] r-immunotation
- [ ] r-impcdata
- [ ] r-import
- [ ] r-imputelcmd
- [ ] r-inaparc
- [ ] r-indeed
- [ ] r-ineq
- [ ] r-infercnv
- [ ] r-infinityflow
- [ ] r-informeasure
- [ ] r-ini
- [ ] r-inline
- [ ] r-inpas
- [ ] r-inpower
- [ ] r-insight
- [ ] r-inspect
- [ ] r-intad
- [ ] r-intansv
- [ ] r-interaccircos
- [ ] r-interactivecomplexheatmap
- [ ] r-interactivedisplaybase
- [ ] r-interactivedisplay
- [ ] r-intercellar
- [ ] r-interest
- [ ] r-intergraph
- [ ] r-interminer
- [ ] r-intramirexplorer
- [ ] r-intrinsicdimension
- [ ] r-inum
- [ ] r-invariantcausalprediction
- [ ] r-investr
- [ ] r-invgamma
- [ ] r-ioniser
- [ ] r-ipac
- [ ] r-ipddb
- [ ] r-ipo
- [ ] r-irdisplay
- [ ] r-irkernel
- [ ] r-irr
- [ ] r-isanalytics
- [ ] r-isee
- [ ] r-iseeu
- [ ] r-isingfit
- [ ] r-ismev
- [ ] r-isobar
- [ ] r-isocodes
- [ ] r-isocorrectorgui
- [ ] r-isocorrector
- [ ] r-isogenegui
- [ ] r-isogene
- [ ] r-isomirs
- [ ] r-isva
- [ ] r-italicsdata
- [ ] r-italics
- [ ] r-iterativebma
- [ ] r-iterativebmasurv
- [ ] r-iterators
- [ ] r-iterclust
- [ ] r-iteremoval
- [ ] r-itertools
- [ ] r-ivas
- [ ] r-ivygapse
- [ ] r-iwtomics
- [ ] r-jackstraw
- [ ] r-janeaustenr
- [ ] r-janitor
- [ ] r-jaspar2018
- [ ] r-jfa
- [ ] r-jmvcore
- [ ] r-jquerylib
- [ ] r-kableextra
- [ ] r-karyoploter
- [ ] r-kboost
- [ ] r-kcsmart
- [ ] r-keggandmetacoredzpathwaysgeo
- [ ] r-kegg.db
- [ ] r-keggdzpathwaysgeo
- [ ] r-kegggraph
- [ ] r-kegglincs
- [ ] r-keggorthology
- [ ] r-keggprofile
- [ ] r-keggrest
- [ ] r-keras
- [ ] r-kinship2
- [ ] r-kinswingr
- [ ] r-kissde
- [ ] r-klar
- [ ] r-km.ci
- [ ] r-kmsurv
- [ ] r-knitrbootstrap
- [ ] r-knitr
- [ ] r-knowseq
- [ ] r-kodata
- [ ] r-korpus.lang.en
- [ ] r-korpus
- [ ] r-kpeaks
- [ ] r-kpmt
- [ ] r-kutils
- [ ] r-labeling
- [ ] r-labelled
- [ ] r-lace
- [ ] r-laeken
- [ ] r-lambda.r
- [ ] r-laplacesdemon
- [ ] r-lapmix
- [ ] r-lassopv
- [ ] r-latex2exp
- [ ] r-latticeextra
- [ ] r-lavaan
- [ ] r-lava
- [ ] r-lbe
- [ ] r-ldblock
- [ ] r-learnr
- [ ] r-ledpred
- [ ] r-lefser
- [ ] r-leiden
- [ ] r-les
- [ ] r-lexicon
- [ ] r-lfda
- [ ] r-lgr
- [ ] r-lifecycle
- [ ] r-limmagui
- [ ] r-lim
- [ ] r-lineagepulse
- [ ] r-linkhd
- [ ] r-linprog
- [ ] r-lintr
- [ ] r-lionessr
- [ ] r-lipidr
- [ ] r-liquidassociation
- [ ] r-lisaclust
- [ ] r-lisreltor
- [ ] r-listenv
- [ ] r-lmdme
- [ ] r-lmertest
- [ ] r-lmodel2
- [ ] r-lobstahs
- [ ] r-locfdr
- [ ] r-loci2path
- [ ] r-logger
- [ ] r-logging
- [ ] r-logicfs
- [ ] r-lola
- [ ] r-longitudinaldata
- [ ] r-longitudinal
- [ ] r-loomexperiment
- [ ] r-loo
- [ ] r-loose.rock
- [ ] r-lowmacaannotation
- [ ] r-lowmaca
- [ ] r-lpeadj
- [ ] r-lpe
- [ ] r-lpnet
- [ ] r-lrbasedbi
- [ ] r-lrcell
- [ ] r-lsa
- [ ] r-lsd
- [ ] r-lsr
- [ ] r-lumihumanall.db
- [ ] r-lumi
- [ ] r-lungcanceracvssccgeo
- [ ] r-lymphoseqdb
- [ ] r-lymphoseq
- [ ] r-m3c
- [ ] r-m3drop
- [ ] r-m6aboost
- [ ] r-maaslin2
- [ ] r-macat
- [ ] r-macorrplot
- [ ] r-macsquantifyr
- [ ] r-macsr
- [ ] r-made4
- [ ] r-madseq
- [ ] r-mafdb.1kgenomes.phase3.hs37d5
- [ ] r-mafdb.exac.r1.0.hs37d5
- [ ] r-mafdb.exac.r1.0.nontcga.hs37d5
- [ ] r-mafdb.gnomadex.r2.1.hs37d5
- [ ] r-magar
- [ ] r-mageckflute
- [ ] r-magicaxis
- [ ] r-magic
- [ ] r-mai
- [ ] r-mait
- [ ] r-mantelcorr
- [ ] r-mapkl
- [ ] r-mapplots
- [ ] r-mapredictdsc
- [ ] r-mapscape
- [ ] r-maptree
- [ ] r-marray
- [ ] r-maser
- [ ] r-masigpro
- [ ] r-maskbad
- [ ] r-massarray
- [ ] r-massir
- [ ] r-mast
- [ ] r-matchbox
- [ ] r-matlab
- [ ] r-matrixcalc
- [ ] r-matrixgenerics
- [ ] r-matrixmodels
- [ ] r-matrixqcvis
- [ ] r-matrixtests
- [ ] r-matrix.utils
- [ ] r-maxlik
- [ ] r-mbamethyl
- [ ] r-mbased
- [ ] r-mbcb
- [ ] r-mbpcr
- [ ] r-mbqn
- [ ] r-mbttest
- [ ] r-mcbiclust
- [ ] r-mcbiopi
- [ ] r-mcl
- [ ] r-mcseadata
- [ ] r-mcsea
- [ ] r-mdp
- [ ] r-mdqc
- [ ] r-mdscore
- [ ] r-mdts
- [ ] r-meal
- [ ] r-measurementerror.cor
- [ ] r-meat
- [ ] r-meb
- [ ] r-medips
- [ ] r-mefa
- [ ] r-megadepth
- [ ] r-meigor
- [ ] r-melissa
- [ ] r-memes
- [ ] r-memoise
- [ ] r-mergeomics
- [ ] r-meshdbi
- [ ] r-meshes
- [ ] r-meshr
- [ ] r-meskit
- [ ] r-metabocoreutils
- [ ] r-metabolomicsworkbenchr
- [ ] r-metabomxtr
- [ ] r-metabosignal
- [ ] r-metab
- [ ] r-metacca
- [ ] r-metacycle
- [ ] r-metacyto
- [ ] r-metadat
- [ ] r-metafor
- [ ] r-metagene2
- [ ] r-metagene
- [ ] r-metagenomeseq
- [ ] r-metama
- [ ] r-metamisc
- [ ] r-metams
- [ ] r-metaneighbor
- [ ] r-metapone
- [ ] r-metap
- [ ] r-metaseq
- [ ] r-metavizr
- [ ] r-metavolcanor
- [ ] r-metbrewer
- [ ] r-metcirc
- [ ] r-methcp
- [ ] r-methinheritsim
- [ ] r-methped
- [ ] r-methreg
- [ ] r-methrix
- [ ] r-methtargetedngs
- [ ] r-methylaid
- [ ] r-methylcc
- [ ] r-methylclockdata
- [ ] r-methylgsa
- [ ] r-methylinheritance
- [ ] r-methylmix
- [ ] r-methylscaper
- [ ] r-methylseekr
- [ ] r-methylsig
- [ ] r-methylumi
- [ ] r-metid
- [ ] r-metnet
- [ ] r-metr
- [ ] r-mfuzz
- [ ] r-mgfm
- [ ] r-mgfr
- [ ] r-mglm
- [ ] r-mgm
- [ ] r-mgsub
- [ ] r-mgsz
- [ ] r-mia
- [ ] r-miasim
- [ ] r-miaviz
- [ ] r-michip
- [ ] r-microbiomedasim
- [ ] r-microbiomeexplorer
- [ ] r-microbiomemarker
- [ ] r-microbiome
- [ ] r-microbiomeprofiler
- [ ] r-microbiotaprocess
- [ ] r-midashla
- [ ] r-migsa
- [ ] r-milor
- [ ] r-mimager
- [ ] r-mineica
- [ ] r-minfi
- [ ] r-minimumdistance
- [ ] r-miniui
- [ ] r-mi
- [ ] r-mipp
- [ ] r-miqc
- [ ] r-mirage
- [ ] r-mira
- [ ] r-mirbaseconverter
- [ ] r-mirbase.db
- [ ] r-mirbaseversions.db
- [ ] r-mircompdata
- [ ] r-mircomp
- [ ] r-mirintegrator
- [ ] r-mirlab
- [ ] r-mirmine
- [ ] r-mirnameconverter
- [ ] r-mirnapath
- [ ] r-mirnatap.db
- [ ] r-mirnatap
- [ ] r-mirtarrnaseq
- [ ] r-misc3d
- [ ] r-misctools
- [ ] r-missforest
- [ ] r-missmda
- [ ] r-missmethyl
- [ ] r-missrows
- [ ] r-mistyr
- [ ] r-mitch
- [ ] r-mitools
- [ ] r-mixomics
- [ ] r-mixsmsn
- [ ] r-mkmisc
- [ ] r-mlapi
- [ ] r-mle.tools
- [ ] r-mlinterfaces
- [ ] r-mlmetrics
- [ ] r-mlp
- [ ] r-mlr3learners
- [ ] r-mlr3measures
- [ ] r-mlr3
- [ ] r-mlr3tuning
- [ ] r-mlseq
- [ ] r-mltools
- [ ] r-mmappr2
- [ ] r-mmdiff2
- [ ] r-mmuphin
- [ ] r-moanin
- [ ] r-moda
- [ ] r-modcon
- [ ] r-modeest
- [ ] r-modelr
- [ ] r-modeltools
- [ ] r-modstrings
- [ ] r-modules
- [ ] r-mogamun
- [ ] r-mogsa
- [ ] r-moma
- [ ] r-moments
- [ ] r-monalisa
- [ ] r-moonlightr
- [ ] r-mosaiccore
- [ ] r-mosim
- [ ] r-motifbreakr
- [ ] r-motifdb
- [ ] r-motifstack
- [ ] r-mousefm
- [ ] r-mpfe
- [ ] r-mpinet
- [ ] r-mpm
- [ ] r-mppa
- [ ] r-mpranalyze
- [ ] r-mpra
- [ ] r-mqmetrics
- [ ] r-msar
- [ ] r-msbackendmassbank
- [ ] r-msbackendmgf
- [ ] r-msfeatures
- [ ] r-msgbsr
- [ ] r-msgfgui
- [ ] r-msgfplus
- [ ] r-msigdb
- [ ] r-msigdbr
- [ ] r-msimpute
- [ ] r-msmseda
- [ ] r-msmstests
- [ ] r-msnid
- [ ] r-msprep
- [ ] r-mspurity
- [ ] r-msqc
- [ ] r-msqrob2
- [ ] r-msstatsconvert
- [ ] r-msstatslobd
- [ ] r-msstatsqcgui
- [ ] r-msstatsqc
- [ ] r-msstatssamplesize
- [ ] r-msstatstmt
- [ ] r-multcomp
- [ ] r-multcompview
- [ ] r-multiassayexperiment
- [ ] r-multibac
- [ ] r-multiclust
- [ ] r-multicrispr
- [ ] r-multidataset
- [ ] r-multigsea
- [ ] r-multihiccompare
- [ ] r-multimed
- [ ] r-multimir
- [ ] r-multiomicsviz
- [ ] r-multipanelfigure
- [ ] r-multisight
- [ ] r-mumin
- [ ] r-mumosa
- [ ] r-mungesumstats
- [ ] r-munsell
- [ ] r-muscat
- [ ] r-musicatk
- [ ] r-mus.musculus
- [ ] r-mustat
- [ ] r-mutationalpatterns
- [ ] r-mutoss
- [ ] r-mvcclass
- [ ] r-mvoutlier
- [ ] r-mwastools
- [ ] r-mygene
- [ ] r-myvariant
- [ ] r-mzid
- [ ] r-nada
- [ ] r-nadfinder
- [ ] r-naivebayes
- [ ] r-nanostringnctools
- [ ] r-nanostringqcpro
- [ ] r-nanotator
- [ ] r-nanotube
- [ ] r-naturalsort
- [ ] r-nbamseq
- [ ] r-nbclust
- [ ] r-nbsplice
- [ ] r-ncigraph
- [ ] r-ncmisc
- [ ] r-ncrnatools
- [ ] r-ndexr
- [ ] r-nearbynding
- [ ] r-nebulosa
- [ ] r-neighbornet
- [ ] r-nempi
- [ ] r-neo4r
- [ ] r-netbiov
- [ ] r-netboxr
- [ ] r-netdx
- [ ] r-netomics
- [ ] r-netprior
- [ ] r-netsam
- [ ] r-netsmooth
- [ ] r-networkcomparisontest
- [ ] r-networkd3
- [ ] r-networktoolbox
- [ ] r-networktools
- [ ] r-neuca
- [ ] r-neuralnet
- [ ] r-newwave
- [ ] r-ngsreports
- [ ] r-nhpoisson
- [ ] r-nistunits
- [ ] r-nlp
- [ ] r-nls2
- [ ] r-nmi
- [ ] r-nnlasso
- [ ] r-nnls
- [ ] r-nnnorm
- [ ] r-nntensor
- [ ] r-noiseq
- [ ] r-nondetects
- [ ] r-nor1mix
- [ ] r-norce
- [ ] r-normalize450k
- [ ] r-normalyzerde
- [ ] r-normqpcr
- [ ] r-nortest
- [ ] r-nozzle.r1
- [ ] r-nparc
- [ ] r-npgsea
- [ ] r-nsga2r
- [ ] r-nsprcomp
- [ ] r-ntw
- [ ] r-nucleosim
- [ ] r-nucler
- [ ] r-nullranges
- [ ] r-numbers
- [ ] r-numderiv
- [ ] r-nxtirfdata
- [ ] r-objectproperties
- [ ] r-objectsignals
- [ ] r-occugene
- [ ] r-ocplus
- [ ] r-oder
- [ ] r-odseq
- [ ] r-officer
- [ ] r-oligoclasses
- [ ] r-olingui
- [ ] r-olin
- [ ] r-omadb
- [ ] r-omicade4
- [ ] r-omiccircos
- [ ] r-omicplotr
- [ ] r-omicrexposome
- [ ] r-omicslonda
- [ ] r-omicspcadata
- [ ] r-omicspca
- [ ] r-omicsprint
- [ ] r-omixer
- [ ] r-omnipathr
- [ ] r-onassisjavalibs
- [ ] r-onassis
- [ ] r-oncomix
- [ ] r-oncoscore
- [ ] r-onesense
- [ ] r-onewaytests
- [ ] r-ontologyindex
- [ ] r-ontologyplot
- [ ] r-ontoproc
- [ ] r-opencpu
- [ ] r-openprimer
- [ ] r-openprimerui
- [ ] r-openstats
- [ ] r-operator.tools
- [ ] r-oppti
- [ ] r-optextras
- [ ] r-optimalflowdata
- [ ] r-optimalflow
- [ ] r-optimr
- [ ] r-optimx
- [ ] r-optparse
- [ ] r-opweight
- [ ] r-orcme
- [ ] r-orderedlist
- [ ] r-organismdbi
- [ ] r-organism.dplyr
- [ ] r-org.bt.eg.db
- [ ] r-org.dm.eg.db
- [ ] r-org.dr.eg.db
- [ ] r-org.hs.eg.db
- [ ] r-orgmassspecr
- [ ] r-org.mm.eg.db
- [ ] r-org.rn.eg.db
- [ ] r-org.sc.sgd.db
- [ ] r-oriclust
- [ ] r-origami
- [ ] r-orqa
- [ ] r-orthogene
- [ ] r-osat
- [ ] r-oscope
- [ ] r-osfr
- [ ] r-otubase
- [ ] r-outliers
- [ ] r-packfinder
- [ ] r-padma
- [ ] r-padog
- [ ] r-pagerank
- [ ] r-paintmap
- [ ] r-pairadise
- [ ] r-paircompviz
- [ ] r-paireddata
- [ ] r-pairkat
- [ ] r-pairsd3
- [ ] r-pak
- [ ] r-palmerpenguins
- [ ] r-pals
- [ ] r-pandar
- [ ] r-panelcn.mops
- [ ] r-panp
- [ ] r-panr
- [ ] r-panvizgenerator
- [ ] r-paper
- [ ] r-paradox
- [ ] r-parallellogger
- [ ] r-parallelly
- [ ] r-parallelmap
- [ ] r-parameters
- [ ] r-parglms
- [ ] r-parody
- [ ] r-pasilla
- [ ] r-pastecs
- [ ] r-past
- [ ] r-patchwork
- [ ] r-path2ppi
- [ ] r-pathifier
- [ ] r-pathnet
- [ ] r-pathostat
- [ ] r-pathrender
- [ ] r-pathvar
- [ ] r-pathview
- [ ] r-pathwaypca
- [ ] r-paxtoolsr
- [ ] r-pbapply
- [ ] r-pbkrtest
- [ ] r-pcaexplorer
- [ ] r-pcan
- [ ] r-pcxndata
- [ ] r-pcxn
- [ ] r-pdatk
- [ ] r-pdist
- [ ] r-pd.mapping50k.xba240
- [ ] r-peacoqc
- [ ] r-peakpanther
- [ ] r-peca
- [ ] r-peco
- [ ] r-pengls
- [ ] r-pepsnmr
- [ ] r-pepstat
- [ ] r-pepxmltab
- [ ] r-perfect
- [ ] r-performance
- [ ] r-periodicdna
- [ ] r-permute
- [ ] r-perturbatr
- [ ] r-pfam.db
- [ ] r-pfp
- [ ] r-pgca
- [ ] r-phantasus
- [ ] r-pharmacogx
- [ ] r-phastcons100way.ucsc.hg19
- [ ] r-phastcons100way.ucsc.hg38
- [ ] r-phater
- [ ] r-pheatmap
- [ ] r-phemd
- [ ] r-phenogeneranker
- [ ] r-phenotest
- [ ] r-phenstat
- [ ] r-philr
- [ ] r-phipdata
- [ ] r-phosphonormalizer
- [ ] r-phosphoricons
- [ ] r-phosr
- [ ] r-phylogram
- [ ] r-phyloprofile
- [ ] r-phyloseq
- [ ] r-piano
- [ ] r-pickgene
- [ ] r-pigengene
- [ ] r-pillar
- [ ] r-pinfsc50
- [ ] r-pipecomp
- [ ] r-pipeframe
- [ ] r-pi
- [ ] r-pixmap
- [ ] r-pkgbuild
- [ ] r-pkgconfig
- [ ] r-pkgdeptools
- [ ] r-pkgdown
- [ ] r-pkgload
- [ ] r-pkgmaker
- [ ] r-planet
- [ ] r-plethy
- [ ] r-plgem
- [ ] r-plogo2
- [ ] r-plogr
- [ ] r-plot3d
- [ ] r-plotgrouper
- [ ] r-plotly
- [ ] r-plotmo
- [ ] r-plotrix
- [ ] r-plotroc
- [ ] r-plpe
- [ ] r-plsgenomics
- [ ] r-pls
- [ ] r-plsvarsel
- [ ] r-plyranges
- [ ] r-pmm
- [ ] r-pmp
- [ ] r-podcall
- [ ] r-pogos
- [ ] r-poiclaclu
- [ ] r-poilog
- [ ] r-polychrome
- [ ] r-polyester
- [ ] r-polynom
- [ ] r-polyphen.hsapiens.dbsnp131
- [ ] r-poma
- [ ] r-poorman
- [ ] r-posterior
- [ ] r-potra
- [ ] r-powerlaw
- [ ] r-powertcr
- [ ] r-powsc
- [ ] r-ppclust
- [ ] r-ppcor
- [ ] r-ppinfer
- [ ] r-ppistats
- [ ] r-prabclus
- [ ] r-pracma
- [ ] r-praise
- [ ] r-pram
- [ ] r-prebs
- [ ] r-precisetad
- [ ] r-precisiontrialdrawer
- [ ] r-preda
- [ ] r-preseqr
- [ ] r-prettydoc
- [ ] r-prettyunits
- [ ] r-primirtss
- [ ] r-prince
- [ ] r-proactiv
- [ ] r-probamr
- [ ] r-probatch
- [ ] r-process
- [ ] r-procoil
- [ ] r-proda
- [ ] r-profilemodel
- [ ] r-profileplyr
- [ ] r-profmem
- [ ] r-proftools
- [ ] r-progeny
- [ ] r-progress
- [ ] r-progressr
- [ ] r-projectr
- [ ] r-prolocgui
- [ ] r-promise
- [ ] r-proper
- [ ] r-props
- [ ] r-prostar
- [ ] r-proteinprofiles
- [ ] r-proteodisco
- [ ] r-proteomicsannotationhubdata
- [ ] r-proteomm
- [ ] r-protgenerics
- [ ] r-proto
- [ ] r-protr
- [ ] r-prroc
- [ ] r-pscbs
- [ ] r-psea
- [ ] r-psicquic
- [ ] r-psych
- [ ] r-psygenet2r
- [ ] r-pubscore
- [ ] r-pulsedsilac
- [ ] r-purecn
- [ ] r-pvac
- [ ] r-pvca
- [ ] r-pvclust
- [ ] r-pviz
- [ ] r-pwmenrich
- [ ] r-pwomics
- [ ] r-pwrewas.data
- [ ] r-pwrewas
- [ ] r-pwr
- [ ] r-pzfx
- [ ] r-qcc
- [ ] r-qcmetrics
- [ ] r-qdapregex
- [ ] r-qdaptools
- [ ] r-qdnaseq
- [ ] r-qfeatures
- [ ] r-qlcmatrix
- [ ] r-qpcrnorm
- [ ] r-qplexanalyzer
- [ ] r-qqman
- [ ] r-qsmooth
- [ ] r-qsutils
- [ ] r-qtlizer
- [ ] r-quantiseqr
- [ ] r-quantmod
- [ ] r-quantro
- [ ] r-quantsmooth
- [ ] r-quartpac
- [ ] r-questionr
- [ ] r-qusage
- [ ] r-qvalue
- [ ] r-qvcalc
- [ ] r-r2html
- [ ] r-r2jags
- [ ] r-r2winbugs
- [ ] r-r3cseq
- [ ] r-r4rna
- [ ] r-r6
- [ ] r-radiant.data
- [ ] r-radiogx
- [ ] r-rafalib
- [ ] r-raggedexperiment
- [ ] r-rainbow
- [ ] r-rain
- [ ] r-ramr
- [ ] r-randomcolor
- [ ] r-randomwalkrestartmh
- [ ] r-randpack
- [ ] r-randrotation
- [ ] r-randtests
- [ ] r-rankprod
- [ ] r-rapiclient
- [ ] r-rapportools
- [ ] r-rarevariantvis
- [ ] r-rarpack
- [ ] r-rastervis
- [ ] r-rawrr
- [ ] r-rbcbook1
- [ ] r-rbiopaxparser
- [ ] r-rbm
- [ ] r-rbokeh
- [ ] r-rbsurv
- [ ] r-r.cache
- [ ] r-rcade
- [ ] r-rcapture
- [ ] r-rcaspar
- [ ] r-rcas
- [ ] r-rcdklibs
- [ ] r-rcdk
- [ ] r-rcellminerdata
- [ ] r-rcellminer
- [ ] r-rcgh
- [ ] r-rcgmin
- [ ] r-rcircos
- [ ] r-rcistarget
- [ ] r-rclipboard
- [ ] r-rcmdcheck
- [ ] r-rcmdrmisc
- [ ] r-rcm
- [ ] r-rcolorbrewer
- [ ] r-rcompanion
- [ ] r-rcpi
- [ ] r-rcppdate
- [ ] r-rcppprogress
- [ ] r-rcppthread
- [ ] r-rcsl
- [ ] r-rcwlpipelines
- [ ] r-rcwl
- [ ] r-rcx
- [ ] r-rcy3
- [ ] r-rcyjs
- [ ] r-r.devices
- [ ] r-rdgidb
- [ ] r-rdpack
- [ ] r-rdrtoolbox
- [ ] r-reactable
- [ ] r-reactomecontentservice4r
- [ ] r-reactome.db
- [ ] r-reactomegraph4r
- [ ] r-reactomegsa
- [ ] r-reactomepa
- [ ] r-reactr
- [ ] r-readbitmap
- [ ] r-reader
- [ ] r-readjdx
- [ ] r-readqpcr
- [ ] r-rearrr
- [ ] r-rebook
- [ ] r-rebus.base
- [ ] r-rebus.datetimes
- [ ] r-rebus.numbers
- [ ] r-rebus
- [ ] r-rebus.unicode
- [ ] r-receptloss
- [ ] r-recipes
- [ ] r-reconsi
- [ ] r-recount3
- [ ] r-recountmethylation
- [ ] r-recount
- [ ] r-recoup
- [ ] r-reder
- [ ] r-redseq
- [ ] r-reffreeewas
- [ ] r-refmanager
- [ ] r-refplus
- [ ] r-regenrich
- [ ] r-regioner
- [ ] r-regionreport
- [ ] r-registry
- [ ] r-regsplice
- [ ] r-regutools
- [ ] r-relations
- [ ] r-reldist
- [ ] r-relimp
- [ ] r-rematch2
- [ ] r-rematch
- [ ] r-remotes
- [ ] r-remp
- [ ] r-rentrez
- [ ] r-renv
- [ ] r-repmis
- [ ] r-repo
- [ ] r-reportingtools
- [ ] r-report
- [ ] r-reportroc
- [ ] r-reportr
- [ ] r-reprex
- [ ] r-repr
- [ ] r-repviz
- [ ] r-reqon
- [ ] r-residualmatrix
- [ ] r-restfulsedata
- [ ] r-restfulse
- [ ] r-restriktor
- [ ] r-rex
- [ ] r-rexposome
- [ ] r-rfarm
- [ ] r-r.filesets
- [ ] r-rfoc
- [ ] r-rgalaxy
- [ ] r-rgenometracksdata
- [ ] r-rgenometracks
- [ ] r-rgmqllib
- [ ] r-rgmql
- [ ] r-rgraph2js
- [ ] r-rgreat
- [ ] r-rgsea
- [ ] r-rgsepd
- [ ] r-rhandsontable
- [ ] r-rhdf5client
- [ ] r-r.huge
- [ ] r-ribocrypt
- [ ] r-riboprofiling
- [ ] r-ribor
- [ ] r-riboseqr
- [ ] r-ribosomeprofilingqc
- [ ] r-rimmport
- [ ] r-rintrojs
- [ ] r-rio
- [ ] r-ripat
- [ ] r-risa
- [ ] r-rismed
- [ ] r-ritandata
- [ ] r-ritan
- [ ] r-river
- [ ] r-rlab
- [ ] r-rlassocox
- [ ] r-rlhub
- [ ] r-rlist
- [ ] r-rlmm
- [ ] r-rlseq
- [ ] r-rmagic
- [ ] r-rmagpie
- [ ] r-rmallow
- [ ] r-rmarkdown
- [ ] r-rmassbank
- [ ] r-r.matlab
- [ ] r-rmdformats
- [ ] r-rmelting
- [ ] r-rmeta
- [ ] r-r.methodss3
- [ ] r-rmio
- [ ] r-rmir.hs.mirna
- [ ] r-rmir
- [ ] r-rmisc
- [ ] r-rmspc
- [ ] r-rmtstat
- [ ] r-rnaagecalc
- [ ] r-rnaeditr
- [ ] r-rnainteract
- [ ] r-rnamodr.alkanilineseq
- [ ] r-rnamodr.ml
- [ ] r-rnamodr
- [ ] r-rnamodr.ribomethseq
- [ ] r-rnasense
- [ ] r-rnaseqcomp
- [ ] r-rnaseqpower
- [ ] r-rnaseqr
- [ ] r-rnaseqsamplesizedata
- [ ] r-rnbeads.hg19
- [ ] r-rnbeads
- [ ] r-rnexml
- [ ] r-rngtools
- [ ] r-rnits
- [ ] r-roar
- [ ] r-robustrankaggreg
- [ ] r-rocit
- [ ] r-rockchalk
- [ ] r-rocpai
- [ ] r-rocr
- [ ] r-roi
- [ ] r-roi.plugin.lpsolve
- [ ] r-rols
- [ ] r-rontotools
- [ ] r-r.oo
- [ ] r-ropls
- [ ] r-roseq
- [ ] r-rpa
- [ ] r-rpart.plot
- [ ] r-rpdb
- [ ] r-rpmg
- [ ] r-rpmm
- [ ] r-rprojroot
- [ ] r-rpsixml
- [ ] r-rpx
- [ ] r-rqt
- [ ] r-rrdp
- [ ] r-rrho
- [ ] r-r.rsp
- [ ] r-rrvgo
- [ ] r-rsample
- [ ] r-rscudo
- [ ] r-rsemmed
- [ ] r-rslurm
- [ ] r-rsm
- [ ] r-rsnps
- [ ] r-rsolnp
- [ ] r-rspc
- [ ] r-rsq
- [ ] r-rstantools
- [ ] r-rstatix
- [ ] r-rstudioapi
- [ ] r-rsvd
- [ ] r-rsvgtipsdevice
- [ ] r-rsvsim
- [ ] r-rsweep
- [ ] r-rtca
- [ ] r-rtcga
- [ ] r-rtcgatoolbox
- [ ] r-rtensor
- [ ] r-rtnduals
- [ ] r-rtn
- [ ] r-rtnsurvival
- [ ] r-rtopper
- [ ] r-rtpca
- [ ] r-rtrm
- [ ] r-rtrmui
- [ ] r-runit
- [ ] r-r.utils
- [ ] r-ruvcorr
- [ ] r-ruvnormalizedata
- [ ] r-ruvnormalize
- [ ] r-ruvseq
- [ ] r-rversions
- [ ] r-rvest
- [ ] r-rvmmin
- [ ] r-rvs
- [ ] r-rwekajars
- [ ] r-rweka
- [ ] r-rwikipathways
- [ ] r-s4vd
- [ ] r-safe
- [ ] r-sagenhaft
- [ ] r-sampleclassifier
- [ ] r-sampling
- [ ] r-sampsurf
- [ ] r-sandwich
- [ ] r-sangeranalyser
- [ ] r-sangerseqr
- [ ] r-sarks
- [ ] r-saturn
- [ ] r-saver
- [ ] r-savr
- [ ] r-sbgnview.data
- [ ] r-sbgnview
- [ ] r-sbmlr
- [ ] r-scale4c
- [ ] r-scaledmatrix
- [ ] r-scales
- [ ] r-scalign
- [ ] r-scanmirapp
- [ ] r-scanmirdata
- [ ] r-scanmir
- [ ] r-scannotatr
- [ ] r-scan.upc
- [ ] r-scanvis
- [ ] r-scatedata
- [ ] r-scate
- [ ] r-scater
- [ ] r-scatterhatch
- [ ] r-scatterpie
- [ ] r-scatterplot3d
- [ ] r-scbfa
- [ ] r-scbn
- [ ] r-scclassifr
- [ ] r-scclassify
- [ ] r-scdataviz
- [ ] r-scdblfinder
- [ ] r-scds
- [ ] r-scfa
- [ ] r-scfeaturefilter
- [ ] r-schex
- [ ] r-schot
- [ ] r-scico
- [ ] r-sciplot
- [ ] r-scisi
- [ ] r-scmerge
- [ ] r-scmeth
- [ ] r-scnorm
- [ ] r-scone
- [ ] r-sconify
- [ ] r-scope
- [ ] r-scoreinvhap
- [ ] r-scpca
- [ ] r-scp
- [ ] r-screclassify
- [ ] r-screcover
- [ ] r-screpertoire
- [ ] r-scrime
- [ ] r-scrnaseq
- [ ] r-scruff
- [ ] r-scry
- [ ] r-sctensor
- [ ] r-sctgif
- [ ] r-scthi
- [ ] r-sctreeviz
- [ ] r-sdams
- [ ] r-sechm
- [ ] r-segmented
- [ ] r-segmenter
- [ ] r-segmentseq
- [ ] r-selectr
- [ ] r-selex
- [ ] r-semdist
- [ ] r-semisup
- [ ] r-semplot
- [ ] r-semtools
- [ ] r-sendmailr
- [ ] r-sepira
- [ ] r-seq2pathway.data
- [ ] r-seq2pathway
- [ ] r-seqcat
- [ ] r-seqcna.annot
- [ ] r-seqcombo
- [ ] r-seqgate
- [ ] r-seqgsea
- [ ] r-seqlogo
- [ ] r-seqmagick
- [ ] r-seqpattern
- [ ] r-seqsetvis
- [ ] r-seqsqc
- [ ] r-seqvartools
- [ ] r-servr
- [ ] r-sesamedata
- [ ] r-sesame
- [ ] r-sessioninfo
- [ ] r-setools
- [ ] r-setrng
- [ ] r-settings
- [ ] r-sevenbridges
- [ ] r-sevenc
- [ ] r-sfsmisc
- [ ] r-sgseq
- [ ] r-sgt
- [ ] r-shades
- [ ] r-shadowtext
- [ ] r-shape
- [ ] r-shinyace
- [ ] r-shinyalert
- [ ] r-shinybs
- [ ] r-shinybusy
- [ ] r-shinycssloaders
- [ ] r-shinycustomloader
- [ ] r-shinydashboard
- [ ] r-shinydashboardplus
- [ ] r-shinyepico
- [ ] r-shinyfeedback
- [ ] r-shinyfiles
- [ ] r-shinyheatmaply
- [ ] r-shinyhelper
- [ ] r-shinyjqui
- [ ] r-shinyjs
- [ ] r-shinymatrix
- [ ] r-shinymethyl
- [ ] r-shinypanel
- [ ] r-shiny
- [ ] r-shinyscreenshot
- [ ] r-shinystan
- [ ] r-shinythemes
- [ ] r-shinytoastr
- [ ] r-shinytree
- [ ] r-shinywidgets
- [ ] r-siamcat
- [ ] r-sift.hsapiens.dbsnp137
- [ ] r-sigcheck
- [ ] r-sigclust
- [ ] r-sigfeature
- [ ] r-sigfuge
- [ ] r-siggenes
- [ ] r-sights
- [ ] r-sigspack
- [ ] r-sigsquared
- [ ] r-simat
- [ ] r-simbindprofiles
- [ ] r-simffpe
- [ ] r-similarpeak
- [ ] r-simpintlists
- [ ] r-simplecache
- [ ] r-simplifyenrichment
- [ ] r-singlecellexperiment
- [ ] r-singlecellsignalr
- [ ] r-singlecelltk
- [ ] r-singlemoleculefootprinting
- [ ] r-singscore
- [ ] r-sispa
- [ ] r-sitadela
- [ ] r-sizepower
- [ ] r-sjlabelled
- [ ] r-sjmisc
- [ ] r-skewr
- [ ] r-skmeans
- [ ] r-slgi
- [ ] r-slingshot
- [ ] r-slinky
- [ ] r-slqpcr
- [ ] r-smatr
- [ ] r-smite
- [ ] r-smoother
- [ ] r-smoothie
- [ ] r-smoothwin
- [ ] r-smvar
- [ ] r-snageedata
- [ ] r-snagee
- [ ] r-snakecase
- [ ] r-snapcount
- [ ] r-snifter
- [ ] r-snm
- [ ] r-snowfall
- [ ] r-snow
- [ ] r-snpediar
- [ ] r-snphood
- [ ] r-sn
- [ ] r-snplocs.hsapiens.dbsnp144.grch37
- [ ] r-snplocs.hsapiens.dbsnp150.grch38
- [ ] r-soggi
- [ ] r-sojourner
- [ ] r-somaticsignatures
- [ ] r-sombrero
- [ ] r-somnibus
- [ ] r-soniclength
- [ ] r-sortable
- [ ] r-soupx
- [ ] r-spacepac
- [ ] r-spacetime
- [ ] r-spaniel
- [ ] r-sparql
- [ ] r-sparrow
- [ ] r-sparsebn
- [ ] r-sparsebnutils
- [ ] r-sparsedossa
- [ ] r-sparsemvn
- [ ] r-sparsenetgls
- [ ] r-sparsepca
- [ ] r-sparsesignatures
- [ ] r-spatest
- [ ] r-spatialcpie
- [ ] r-spatialdecon
- [ ] r-spatialde
- [ ] r-spatialexperiment
- [ ] r-spatialheatmap
- [ ] r-spatstat.data
- [ ] r-spatzie
- [ ] r-speaq
- [ ] r-specl
- [ ] r-specond
- [ ] r-spectraltad
- [ ] r-spectra
- [ ] r-speedglm
- [ ] r-spem
- [ ] r-spia
- [ ] r-spicyr
- [ ] r-spidermir
- [ ] r-spikeli
- [ ] r-spiky
- [ ] r-spktools
- [ ] r-splatter
- [ ] r-splicingfactory
- [ ] r-splicinggraphs
- [ ] r-splinetimer
- [ ] r-splinter
- [ ] r-splitstackshape
- [ ] r-splots
- [ ] r-sponge
- [ ] r-spqn
- [ ] r-spscomps
- [ ] r-spsimseq
- [ ] r-spsutil
- [ ] r-sqldataframe
- [ ] r-sqldf
- [ ] r-squadd
- [ ] r-squarem
- [ ] r-squash
- [ ] r-sradb
- [ ] r-srgnet
- [ ] r-sscore
- [ ] r-sscu
- [ ] r-sseq
- [ ] r-ssize
- [ ] r-sspaths
- [ ] r-ssrch
- [ ] r-ssviz
- [ ] r-stabledist
- [ ] r-stabs
- [ ] r-stager
- [ ] r-starank
- [ ] r-starbiotrek
- [ ] r-startupmsg
- [ ] r-statebins
- [ ] r-stategra
- [ ] r-stattarget
- [ ] r-stemhypoxia
- [ ] r-stepnorm
- [ ] r-stopwords
- [ ] r-strandcheckr
- [ ] r-stringdb
- [ ] r-stringr
- [ ] r-stroma4
- [ ] r-struct
- [ ] r-structtoolbox
- [ ] r-structuralvariantannotation
- [ ] r-styler
- [ ] r-subcellbarcode
- [ ] r-subseq
- [ ] r-subspace
- [ ] r-summarizedbenchmark
- [ ] r-summarizedexperiment
- [ ] r-summarytools
- [ ] r-summix
- [ ] r-superheat
- [ ] r-superlearner
- [ ] r-supersigs
- [ ] r-suprahex
- [ ] r-surfaltr
- [ ] r-survey
- [ ] r-survivalroc
- [ ] r-survivalsvm
- [ ] r-survminer
- [ ] r-survmisc
- [ ] r-survtype
- [ ] r-sushi
- [ ] r-svanumt
- [ ] r-svaretro
- [ ] r-svdialogs
- [ ] r-svgpanzoom
- [ ] r-svgui
- [ ] r-svmisc
- [ ] r-svunit
- [ ] r-swamp
- [ ] r-swath2stats
- [ ] r-swathxtend
- [ ] r-swfdr
- [ ] r-swimr
- [ ] r-switchde
- [ ] r-sylly.en
- [ ] r-sylly
- [ ] r-synapsis
- [ ] r-synapter
- [ ] r-synergyfinder
- [ ] r-synextend
- [ ] r-synlet
- [ ] r-synmut
- [ ] r-systempiperdata
- [ ] r-systempiper
- [ ] r-systempipeshiny
- [ ] r-systempipetools
- [ ] r-syuzhet
- [ ] r-tadcompare
- [ ] r-tanggle
- [ ] r-tapseq
- [ ] r-targetdecoy
- [ ] r-target
- [ ] r-targetscore
- [ ] r-tarifx
- [ ] r-tarseqqc
- [ ] r-tbsignatureprofiler
- [ ] r-tbx20bamsubset
- [ ] r-tcc
- [ ] r-tcgabiolinksgui.data
- [ ] r-tcgabiolinksgui
- [ ] r-tcgabiolinks
- [ ] r-tcgautils
- [ ] r-tcltk2
- [ ] r-tcseq
- [ ] r-tdaracne
- [ ] r-teachingdemos
- [ ] r-tensorflow
- [ ] r-tensor
- [ ] r-tenxpbmcdata
- [ ] r-tenxplore
- [ ] r-teqc
- [ ] r-tester
- [ ] r-textclean
- [ ] r-textshape
- [ ] r-textstem
- [ ] r-tfarm
- [ ] r-tfautograph
- [ ] r-tfea.chip
- [ ] r-tfhaz
- [ ] r-tfisher
- [ ] r-tfruns
- [ ] r-tfutils
- [ ] r-th.data
- [ ] r-threejs
- [ ] r-tictoc
- [ ] r-tidybayes
- [ ] r-tidybulk
- [ ] r-tidysinglecellexperiment
- [ ] r-tidysummarizedexperiment
- [ ] r-tidytext
- [ ] r-tidytree
- [ ] r-tidyverse
- [ ] r-timecourse
- [ ] r-timedate
- [ ] r-timeomics
- [ ] r-timescape
- [ ] r-timeseriesexperiment
- [ ] r-timeseries
- [ ] r-timirgen
- [ ] r-tin
- [ ] r-tinytex
- [ ] r-tippy
- [ ] r-tissueenrich
- [ ] r-tkwidgets
- [ ] r-tloh
- [ ] r-tmixclust
- [ ] r-tnbc.cms
- [ ] r-tnet
- [ ] r-tnt
- [ ] r-toast
- [ ] r-tomoda
- [ ] r-topconfects
- [ ] r-topdownr
- [ ] r-topgo
- [ ] r-toster
- [ ] r-toxicogx
- [ ] r-tpp2d
- [ ] r-tpp
- [ ] r-tracktables
- [ ] r-tractor.base
- [ ] r-tradeseq
- [ ] r-trajectorygeometry
- [ ] r-trajectoryutils
- [ ] r-transcriptogramer
- [ ] r-transcriptr
- [ ] r-transformgampoi
- [ ] r-translatome
- [ ] r-transomics2cytoscape
- [ ] r-trare
- [ ] r-traser
- [ ] r-traviz
- [ ] r-treeandleaf
- [ ] r-treeio
- [ ] r-treekor
- [ ] r-treemap
- [ ] r-treesummarizedexperiment
- [ ] r-trena
- [ ] r-trendy
- [ ] r-tress
- [ ] r-tricycle
- [ ] r-trio
- [ ] r-tripr
- [ ] r-trnadbimport
- [ ] r-trna
- [ ] r-trnascanimport
- [ ] r-tronco
- [ ] r-truncdist
- [ ] r-trust
- [ ] r-tsa
- [ ] r-tscan
- [ ] r-tsne
- [ ] r-tsrchitect
- [ ] r-ttgsea
- [ ] r-ttmap
- [ ] r-ttservice
- [ ] r-tvtb
- [ ] r-twoddpcr
- [ ] r-txcutr
- [ ] r-txdb.celegans.ucsc.ce6.ensgene
- [ ] r-txdb.dmelanogaster.ucsc.dm3.ensgene
- [ ] r-txdb.dmelanogaster.ucsc.dm6.ensgene
- [ ] r-txdb.hsapiens.ucsc.hg18.knowngene
- [ ] r-txdb.hsapiens.ucsc.hg19.knowngene
- [ ] r-txdb.hsapiens.ucsc.hg38.knowngene
- [ ] r-txdb.mmusculus.ucsc.mm10.knowngene
- [ ] r-txdb.mmusculus.ucsc.mm9.knowngene
- [ ] r-txdb.rnorvegicus.ucsc.rn4.ensgene
- [ ] r-tximeta
- [ ] r-tximport
- [ ] r-typeinfo
- [ ] r-ucell
- [ ] r-udapi
- [ ] r-ularcirc
- [ ] r-umi4cats
- [ ] r-uncoverapplib
- [ ] r-undo
- [ ] r-unifiedwmwqpcr
- [ ] r-uniprot.ws
- [ ] r-uniqtag
- [ ] r-uniquorn
- [ ] r-upsetr
- [ ] r-urlchecker
- [ ] r-usethis
- [ ] r-usort
- [ ] r-vaexprs
- [ ] r-vam
- [ ] r-varcon
- [ ] r-varfrompdb
- [ ] r-varhandle
- [ ] r-variancepartition
- [ ] r-variantexperiment
- [ ] r-varianttools
- [ ] r-varselrf
- [ ] r-vasp
- [ ] r-vbmp
- [ ] r-vcdextra
- [ ] r-vcd
- [ ] r-vcfarray
- [ ] r-velociraptor
- [ ] r-venndetail
- [ ] r-venndiagram
- [ ] r-venn
- [ ] r-verification
- [ ] r-verso
- [ ] r-vidger
- [ ] r-vioplot
- [ ] r-viper
- [ ] r-vipor
- [ ] r-viridislite
- [ ] r-viridis
- [ ] r-viseago
- [ ] r-visnetwork
- [ ] r-visse
- [ ] r-vplotr
- [ ] r-vtpnet
- [ ] r-vulcan
- [ ] r-waffle
- [ ] r-waiter
- [ ] r-waldo
- [ ] r-watermelon
- [ ] r-wavcluster
- [ ] r-weaver
- [ ] r-webbioc
- [ ] r-webchem
- [ ] r-webshot
- [ ] r-weibullness
- [ ] r-weightr
- [ ] r-weitrix
- [ ] r-wesanderson
- [ ] r-wheatmap
- [ ] r-whisker
- [ ] r-widgettools
- [ ] r-wiggleplotr
- [ ] r-withr
- [ ] r-wordcloud2
- [ ] r-wpm
- [ ] r-wppi
- [ ] r-wrench
- [ ] r-writexls
- [ ] r-xcir
- [ ] r-xeva
- [ ] r-xina
- [ ] r-xlsxjars
- [ ] r-xlsx
- [ ] r-xmapbridge
- [ ] r-xml2r
- [ ] r-xmlparsedata
- [ ] r-xopen
- [ ] r-xtable
- [ ] r-xtrasnplocs.hsapiens.dbsnp144.grch37
- [ ] r-yamss
- [ ] r-yapsa
- [ ] r-yarn
- [ ] r-yeastcc
- [ ] r-yeastexpdata
- [ ] r-yesno
- [ ] r-yulab.utils
- [ ] r-zcompositions
- [ ] r-zeallot
- [ ] r-zellkonverter
- [ ] r-zfpkm
- [ ] r-zinbwave
| True | [MAINTAIN] rm R alias from these packages - - [ ] r-a4base
- [ ] r-a4classif
- [ ] r-a4core
- [ ] r-a4
- [ ] r-a4preproc
- [ ] r-a4reporting
- [ ] r-abadata
- [ ] r-abarray
- [ ] r-abind
- [ ] r-abseqr
- [ ] r-absseq
- [ ] r-acde
- [ ] r-ace
- [ ] r-adabag
- [ ] r-adamgui
- [ ] r-ada
- [ ] r-additivitytests
- [ ] r-adductdata
- [ ] r-adductomicsr
- [ ] r-adgoftest
- [ ] r-adimpute
- [ ] r-afex
- [ ] r-affixcan
- [ ] r-affycompatible
- [ ] r-affycomp
- [ ] r-affycontam
- [ ] r-affycoretools
- [ ] r-affydata
- [ ] r-affyilm
- [ ] r-affylmgui
- [ ] r-affypara
- [ ] r-affyrnadegradation
- [ ] r-agdex
- [ ] r-aggregatebiovar
- [ ] r-aggregation
- [ ] r-agilp
- [ ] r-agimicrorna
- [ ] r-agricolae
- [ ] r-aiccmodavg
- [ ] r-aims
- [ ] r-airpart
- [ ] r-airway
- [ ] r-akmbiclust
- [ ] r-alabama
- [ ] r-aldex2
- [ ] r-alevinqc
- [ ] r-allelicimbalance
- [ ] r-all
- [ ] r-alluvial
- [ ] r-alphabeta
- [ ] r-alpine
- [ ] r-alpsnmr
- [ ] r-alps
- [ ] r-alsace
- [ ] r-als
- [ ] r-altcdfenvs
- [ ] r-amaretto
- [ ] r-anaquin
- [ ] r-ancombc
- [ ] r-aneufinderdata
- [ ] r-anf
- [ ] r-animalcules
- [ ] r-annaffy
- [ ] r-annmap
- [ ] r-annotate
- [ ] r-annotationdbi
- [ ] r-annotationfilter
- [ ] r-annotationforge
- [ ] r-annotationhubdata
- [ ] r-annotationtools
- [ ] r-annotatr
- [ ] r-anocva
- [ ] r-anota2seq
- [ ] r-anota
- [ ] r-antiprofiles
- [ ] r-anvilbilling
- [ ] r-anvil
- [ ] r-anvilpublish
- [ ] r-anylib
- [ ] r-aod
- [ ] r-aods3
- [ ] r-apalyzer
- [ ] r-apcomplex
- [ ] r-aplot
- [ ] r-aplpack
- [ ] r-appreci8r
- [ ] r-argparse
- [ ] r-arm
- [ ] r-aroma.affymetrix
- [ ] r-aroma.apd
- [ ] r-aroma.core
- [ ] r-aroma.light
- [ ] r-arrayexpress
- [ ] r-arrayhelpers
- [ ] r-arraymvout
- [ ] r-arrayqualitymetrics
- [ ] r-arrayquality
- [ ] r-arrmdata
- [ ] r-arrmnormalization
- [ ] r-arsenal
- [ ] r-artms
- [ ] r-asafe
- [ ] r-asgsca
- [ ] r-asics
- [ ] r-aspediafi
- [ ] r-aspli
- [ ] r-assertive.base
- [ ] r-assertive.code
- [ ] r-assertive.data
- [ ] r-assertive.data.uk
- [ ] r-assertive.data.us
- [ ] r-assertive.datetimes
- [ ] r-assertive.files
- [ ] r-assertive.matrices
- [ ] r-assertive.models
- [ ] r-assertive.numbers
- [ ] r-assertive
- [ ] r-assertive.properties
- [ ] r-assertive.reflection
- [ ] r-assertive.sets
- [ ] r-assertive.strings
- [ ] r-assertive.types
- [ ] r-assertthat
- [ ] r-assessorf
- [ ] r-asset
- [ ] r-assign
- [ ] r-atacseqqc
- [ ] r-atena
- [ ] r-atsa
- [ ] r-attempt
- [ ] r-attract
- [ ] r-aucell
- [ ] r-auc
- [ ] r-autonomics
- [ ] r-autotuner
- [ ] r-available
- [ ] r-aws.s3
- [ ] r-aws.signature
- [ ] r-awst
- [ ] r-baalchip
- [ ] r-babelgene
- [ ] r-badregionfinder
- [ ] r-balcony
- [ ] r-ballgown
- [ ] r-banocc
- [ ] r-barcodetrackr
- [ ] r-base64
- [ ] r-basecallqc
- [ ] r-baseline
- [ ] r-basespacer
- [ ] r-basic4cseq
- [ ] r-basicstarrseq
- [ ] r-basictrendline
- [ ] r-basilisk
- [ ] r-basilisk.utils
- [ ] r-batchjobs
- [ ] r-batchqc
- [ ] r-bayesknockdown
- [ ] r-bayesplay
- [ ] r-bayesplot
- [ ] r-bayesrules
- [ ] r-bayestestr
- [ ] r-bayestools
- [ ] r-bayseq
- [ ] r-bbcanalyzer
- [ ] r-bbmle
- [ ] r-bb
- [ ] r-bc3net
- [ ] r-bcellviper
- [ ] r-beadarraysnp
- [ ] r-beanplot
- [ ] r-bearscc
- [ ] r-beat
- [ ] r-benchdamic
- [ ] r-benchmarkmedata
- [ ] r-benchmarkme
- [ ] r-betareg
- [ ] r-bezier
- [ ] r-bgeecall
- [ ] r-bgeedb
- [ ] r-bh
- [ ] r-bibitr
- [ ] r-bifet
- [ ] r-bigassertr
- [ ] r-biggr
- [ ] r-bigmelon
- [ ] r-bigmemory.sri
- [ ] r-bigparallelr
- [ ] r-bigpint
- [ ] r-bindingsitefinder
- [ ] r-binr
- [ ] r-bioassayr
- [ ] r-biobroom
- [ ] r-biobtreer
- [ ] r-biocancer
- [ ] r-bioccheck
- [ ] r-biocdockermanager
- [ ] r-biocfilecache
- [ ] r-biocgenerics
- [ ] r-biocgraph
- [ ] r-biocio
- [ ] r-biocmanager
- [ ] r-bioconcotk
- [ ] r-biocor
- [ ] r-biocpkgtools
- [ ] r-biocset
- [ ] r-biocsklearn
- [ ] r-biocstyle
- [ ] r-biocthis
- [ ] r-biocversion
- [ ] r-biocviews
- [ ] r-biocworkflowtools
- [ ] r-biodbchebi
- [ ] r-biodbkegg
- [ ] r-biodblipidmaps
- [ ] r-biodbuniprot
- [ ] r-biodist
- [ ] r-biomart
- [ ] r-biomformat
- [ ] r-biomm
- [ ] r-biomvcclass
- [ ] r-bionero
- [ ] r-bionet
- [ ] r-bionetstat
- [ ] r-bioplex
- [ ] r-biosigner
- [ ] r-biotip
- [ ] r-biotmle
- [ ] r-biscuiteerdata
- [ ] r-biscuiteer
- [ ] r-biseq
- [ ] r-biwt
- [ ] r-blacksheepr
- [ ] r-bladderbatch
- [ ] r-blandaltmanleh
- [ ] r-blma
- [ ] r-blme
- [ ] r-blob
- [ ] r-bloodgen3module
- [ ] r-bmp
- [ ] r-bnem
- [ ] r-bookdown
- [ ] r-bootnet
- [ ] r-brainflowprobes
- [ ] r-brain
- [ ] r-brainsaber
- [ ] r-brainstars
- [ ] r-branchpointer
- [ ] r-breakpointrdata
- [ ] r-breakpointr
- [ ] r-breastcancervdx
- [ ] r-brew
- [ ] r-brgenomics
- [ ] r-bridgedbr
- [ ] r-bridgesampling
- [ ] r-brobdingnag
- [ ] r-broom.mixed
- [ ] r-broom
- [ ] r-browserviz
- [ ] r-bs4dash
- [ ] r-bsgenome.celegans.ucsc.ce2
- [ ] r-bsgenome.drerio.ucsc.danrer7
- [ ] r-bsgenome.ecoli.ncbi.20080805
- [ ] r-bsgenome.hsapiens.ucsc.hg18
- [ ] r-bsgenome.hsapiens.ucsc.hg19
- [ ] r-bsgenome.hsapiens.ucsc.hg38
- [ ] r-bsgenome.mmusculus.ucsc.mm10
- [ ] r-bsgenome.mmusculus.ucsc.mm9
- [ ] r-bsgenome
- [ ] r-bslib
- [ ] r-bsplus
- [ ] r-bspm
- [ ] r-bubbletree
- [ ] r-bugsigdbr
- [ ] r-bumhmm
- [ ] r-bumphunter
- [ ] r-bumpymatrix
- [ ] r-c3net
- [ ] r-caen
- [ ] r-cafe
- [ ] r-cagefightr
- [ ] r-cageminer
- [ ] r-cager
- [ ] r-calibrate
- [ ] r-callr
- [ ] r-calm
- [ ] r-cancer
- [ ] r-cancersubtypes
- [ ] r-candisc
- [ ] r-cand
- [ ] r-caomicsv
- [ ] r-ca
- [ ] r-capushe
- [ ] r-cardata
- [ ] r-caretensemble
- [ ] r-carnival
- [ ] r-car
- [ ] r-catalyst
- [ ] r-catdata
- [ ] r-categorycompare
- [ ] r-category
- [ ] r-catencoders
- [ ] r-causalr
- [ ] r-cbaf
- [ ] r-cbioportaldata
- [ ] r-cbpmanager
- [ ] r-ccdata
- [ ] r-ccmap
- [ ] r-ccp
- [ ] r-ccpromise
- [ ] r-ccrepe
- [ ] r-cctensor
- [ ] r-cdft
- [ ] r-celaref
- [ ] r-celestial
- [ ] r-cellbaser
- [ ] r-cellbench
- [ ] r-celldex
- [ ] r-cellhts2
- [ ] r-cellity
- [ ] r-cellmapper
- [ ] r-cellmigration
- [ ] r-cellmixs
- [ ] r-cellranger
- [ ] r-cellscape
- [ ] r-cellscore
- [ ] r-celltrails
- [ ] r-celltree
- [ ] r-cemitool
- [ ] r-censcyt
- [ ] r-cepo
- [ ] r-cernanetsim
- [ ] r-cexor
- [ ] r-cfassay
- [ ] r-cfdnapro
- [ ] r-cgdsr
- [ ] r-cghbase
- [ ] r-cghcall
- [ ] r-cghmcr
- [ ] r-cghnormaliter
- [ ] r-cghregions
- [ ] r-champdata
- [ ] r-champ
- [ ] r-chemometrics
- [ ] r-chetah
- [ ] r-chicago
- [ ] r-chic.data
- [ ] r-chic
- [ ] r-chimeraviz
- [ ] r-chipanalyser
- [ ] r-chipenrich.data
- [ ] r-chipenrich
- [ ] r-chipexoqual
- [ ] r-chippeakanno
- [ ] r-chipqc
- [ ] r-chipseeker
- [ ] r-chipsim
- [ ] r-chipxpressdata
- [ ] r-chipxpress
- [ ] r-chk
- [ ] r-chromheatmap
- [ ] r-chromhmmdata
- [ ] r-chromplot
- [ ] r-chromstardata
- [ ] r-chromswitch
- [ ] r-chronos
- [ ] r-cicero
- [ ] r-cimice
- [ ] r-cindex
- [ ] r-circlize
- [ ] r-circrnaprofiler
- [ ] r-circstats
- [ ] r-citefuse
- [ ] r-classifyr
- [ ] r-cleanupdtseq
- [ ] r-cleaver
- [ ] r-clippda
- [ ] r-clipper
- [ ] r-cliprofiler
- [ ] r-clipr
- [ ] r-clisymbols
- [ ] r-clomial
- [ ] r-clonality
- [ ] r-clonotyper
- [ ] r-clst
- [ ] r-clstutils
- [ ] r-clumsid
- [ ] r-clustcomp
- [ ] r-clusterjudge
- [ ] r-clusterprofiler
- [ ] r-clusterrepro
- [ ] r-clusterseq
- [ ] r-clustersignificance
- [ ] r-clusterstab
- [ ] r-clustifyr
- [ ] r-clustree
- [ ] r-clustvarsel
- [ ] r-clvalid
- [ ] r-cmap2data
- [ ] r-cma
- [ ] r-cmap
- [ ] r-cmapr
- [ ] r-cmdfun
- [ ] r-cmplot
- [ ] r-cnorfeeder
- [ ] r-cnorm
- [ ] r-cnvfilter
- [ ] r-cnvgears
- [ ] r-cnvgsa
- [ ] r-cnviz
- [ ] r-cnvpanelizer
- [ ] r-cnvranger
- [ ] r-cnvrd2
- [ ] r-cocitestats
- [ ] r-cocoa
- [ ] r-cocor
- [ ] r-coda
- [ ] r-codedepends
- [ ] r-codelink
- [ ] r-codex
- [ ] r-coexnet
- [ ] r-cogena
- [ ] r-cogito
- [ ] r-cogps
- [ ] r-cohcapanno
- [ ] r-cointreg
- [ ] r-colorramps
- [ ] r-colortools
- [ ] r-colourpicker
- [ ] r-combinat
- [ ] r-combinepvalue
- [ ] r-combi
- [ ] r-comet
- [ ] r-compartmap
- [ ] r-compcoder
- [ ] r-compepitools
- [ ] r-complexheatmap
- [ ] r-complexupset
- [ ] r-compran
- [ ] r-comprehenr
- [ ] r-concaveman
- [ ] r-conclus
- [ ] r-condformat
- [ ] r-condiments
- [ ] r-conf.design
- [ ] r-confess
- [ ] r-config
- [ ] r-configr
- [ ] r-confintr
- [ ] r-conicfit
- [ ] r-consensusclusterplus
- [ ] r-consensusde
- [ ] r-consensusov
- [ ] r-consensus
- [ ] r-consensusseeker
- [ ] r-constand
- [ ] r-conting
- [ ] r-contrast
- [ ] r-conumee
- [ ] r-convert
- [ ] r-copyhelper
- [ ] r-copynumber
- [ ] r-copynumberplots
- [ ] r-copywriter
- [ ] r-cordon
- [ ] r-coregx
- [ ] r-cormotif
- [ ] r-corncob
- [ ] r-corpcor
- [ ] r-corral
- [ ] r-correp
- [ ] r-corrgram
- [ ] r-corrplot
- [ ] r-coseq
- [ ] r-cosmic.67
- [ ] r-cosmosr
- [ ] r-countclust
- [ ] r-countrycode
- [ ] r-countsimqc
- [ ] r-coveb
- [ ] r-coverageview
- [ ] r-covrna
- [ ] r-cowplot
- [ ] r-cp4p
- [ ] r-cpgassoc
- [ ] r-cpp11
- [ ] r-cpvsnp
- [ ] r-cqn
- [ ] r-crayon
- [ ] r-credentials
- [ ] r-crimage
- [ ] r-crisprseek
- [ ] r-crisprseekplus
- [ ] r-crisprvariants
- [ ] r-crmn
- [ ] r-crossmeta
- [ ] r-crosstalk
- [ ] r-crul
- [ ] r-cssam
- [ ] r-cssq
- [ ] r-ctc
- [ ] r-ctdquerier
- [ ] r-ctggem
- [ ] r-ctrap
- [ ] r-ctsge
- [ ] r-cummerbund
- [ ] r-curatedtcgadata
- [ ] r-curry
- [ ] r-customcmpdb
- [ ] r-customprodb
- [ ] r-cvauc
- [ ] r-cvms
- [ ] r-cyanofilter
- [ ] r-cycle
- [ ] r-cyclocomp
- [ ] r-cytodx
- [ ] r-cytofpower
- [ ] r-cytoglmm
- [ ] r-cytomapper
- [ ] r-daewr
- [ ] r-daglogo
- [ ] r-dama
- [ ] r-damefinder
- [ ] r-damirseq
- [ ] r-dapardata
- [ ] r-dapar
- [ ] r-dart
- [ ] r-dasper
- [ ] r-datamods
- [ ] r-data.tree
- [ ] r-datawizard
- [ ] r-dbi
- [ ] r-dbplyr
- [ ] r-dcanr
- [ ] r-dce
- [ ] r-dcgsa
- [ ] r-ddct
- [ ] r-ddpcrclust
- [ ] r-ddpcr
- [ ] r-dearseq
- [ ] r-debcam
- [ ] r-debrowser
- [ ] r-decomptumor2sig
- [ ] r-deconrnaseq
- [ ] r-deconstructsigs
- [ ] r-decontam
- [ ] r-deconvr
- [ ] r-deco
- [ ] r-decoupler
- [ ] r-deepbluer
- [ ] r-deeppincs
- [ ] r-deformats
- [ ] r-degraph
- [ ] r-degreport
- [ ] r-delayeddataframe
- [ ] r-delayedmatrixstats
- [ ] r-delayedtensor
- [ ] r-deltacapturec
- [ ] r-deltagseg
- [ ] r-demand
- [ ] r-dendextend
- [ ] r-deoptimr
- [ ] r-depmap
- [ ] r-dep
- [ ] r-deqms
- [ ] r-derfinderhelper
- [ ] r-derfinder
- [ ] r-derfinderplot
- [ ] r-deriv
- [ ] r-desc
- [ ] r-desingle
- [ ] r-desirability
- [ ] r-desubs
- [ ] r-detectseparation
- [ ] r-devtools
- [ ] r-dewseq
- [ ] r-dexmadata
- [ ] r-dexma
- [ ] r-dexseq
- [ ] r-dfp
- [ ] r-diagrammer
- [ ] r-diagram
- [ ] r-dichromat
- [ ] r-diffcoexp
- [ ] r-diffcorr
- [ ] r-diffcyt
- [ ] r-diffgeneanalysis
- [ ] r-difflogo
- [ ] r-diffloop
- [ ] r-diffr
- [ ] r-diffutr
- [ ] r-diggit
- [ ] r-digittests
- [ ] r-dino
- [ ] r-director
- [ ] r-dir.expiry
- [ ] r-dirmult
- [ ] r-discorhythm
- [ ] r-discriminer
- [ ] r-distillery
- [ ] r-distributional
- [ ] r-dittoseq
- [ ] r-divergence
- [ ] r-dks
- [ ] r-dmcfb
- [ ] r-dmchmm
- [ ] r-dml
- [ ] r-dmrcaller
- [ ] r-dmrcate
- [ ] r-dmrforpairs
- [ ] r-dmrscan
- [ ] r-dmrseq
- [ ] r-dmt
- [ ] r-dmwr2
- [ ] r-dnabarcodecompatibility
- [ ] r-dnet
- [ ] r-doby
- [ ] r-dockerfiler
- [ ] r-docopt
- [ ] r-do.db
- [ ] r-doe.base
- [ ] r-dominoeffect
- [ ] r-doparallel
- [ ] r-doppelgangr
- [ ] r-dorng
- [ ] r-dorothea
- [ ] r-doscheda
- [ ] r-dose
- [ ] r-doser
- [ ] r-dosnow
- [ ] r-downlit
- [ ] r-downloader
- [ ] r-drawer
- [ ] r-drawproteins
- [ ] r-drawr
- [ ] r-drc
- [ ] r-drimseq
- [ ] r-drivernet
- [ ] r-drtmle
- [ ] r-drugtargetinteractions
- [ ] r-drugvsdiseasedata
- [ ] r-drugvsdisease
- [ ] r-dstruct
- [ ] r-dtangle
- [ ] r-dta
- [ ] r-dt
- [ ] r-dtplyr
- [ ] r-dtt
- [ ] r-dualks
- [ ] r-dune
- [ ] r-dunn.test
- [ ] r-dupradar
- [ ] r-dyebias
- [ ] r-dygraphs
- [ ] r-dynamictreecut
- [ ] r-dyndoc
- [ ] r-easierdata
- [ ] r-easier
- [ ] r-easypubmed
- [ ] r-easyreporting
- [ ] r-easyrnaseq
- [ ] r-ebsea
- [ ] r-ebseqhmm
- [ ] r-ebseq
- [ ] r-echarts4r
- [ ] r-ecolitk
- [ ] r-ecume
- [ ] r-edaseq
- [ ] r-eegc
- [ ] r-effectsize
- [ ] r-effsize
- [ ] r-egad
- [ ] r-egg
- [ ] r-egseadata
- [ ] r-egsea
- [ ] r-eigenmodel
- [ ] r-eisar
- [ ] r-elasticnet
- [ ] r-elitism
- [ ] r-ellipse
- [ ] r-elliptic
- [ ] r-elmer.data
- [ ] r-elmer
- [ ] r-emdbook
- [ ] r-emdist
- [ ] r-emdomics
- [ ] r-emmeans
- [ ] r-empiricalbrownsmethod
- [ ] r-emt
- [ ] r-encodexplorerdata
- [ ] r-encodexplorer
- [ ] r-english
- [ ] r-enhancedvolcano
- [ ] r-enmcb
- [ ] r-enmix
- [ ] r-enrichmentbrowser
- [ ] r-enrichplot
- [ ] r-enrichr
- [ ] r-enrichtf
- [ ] r-ensdb.hsapiens.v75
- [ ] r-ensdb.hsapiens.v86
- [ ] r-ensembldb
- [ ] r-ensemblvep
- [ ] r-ensurer
- [ ] r-entropyexplorer
- [ ] r-entropy
- [ ] r-envisionquery
- [ ] r-envstats
- [ ] r-epidecoder
- [ ] r-epidish
- [ ] r-epigenomix
- [ ] r-epihet
- [ ] r-epinem
- [ ] r-epir
- [ ] r-epistack
- [ ] r-epitxdb
- [ ] r-epivizrchart
- [ ] r-epivizrdata
- [ ] r-epivizr
- [ ] r-epivizrserver
- [ ] r-epivizrstandalone
- [ ] r-erccdashboard
- [ ] r-erma
- [ ] r-erssa
- [ ] r-escape
- [ ] r-esetvis
- [ ] r-estimability
- [ ] r-etrunct
- [ ] r-eudysbiome
- [ ] r-evaluate
- [ ] r-evaluomer
- [ ] r-eva
- [ ] r-evmix
- [ ] r-ewcedata
- [ ] r-ewce
- [ ] r-exact
- [ ] r-excelr
- [ ] r-excluster
- [ ] r-eximir
- [ ] r-exomepeak2
- [ ] r-experimenthubdata
- [ ] r-experimenthub
- [ ] r-experimentsubset
- [ ] r-exploremodelmatrix
- [ ] r-expressionatlas
- [ ] r-extdist
- [ ] r-extrafontdb
- [ ] r-extrafont
- [ ] r-faahko
- [ ] r-factdesign
- [ ] r-factoextra
- [ ] r-factominer
- [ ] r-fadist
- [ ] r-famagg
- [ ] r-famat
- [ ] r-farms
- [ ] r-fastdummies
- [ ] r-fastliquidassociation
- [ ] r-fcbf
- [ ] r-fccac
- [ ] r-fci
- [ ] r-fcoex
- [ ] r-fcscan
- [ ] r-fda
- [ ] r-fdb.infiniummethylation.hg19
- [ ] r-fds
- [ ] r-feature
- [ ] r-fedup
- [ ] r-fella
- [ ] r-ffield
- [ ] r-ffpe
- [ ] r-fgga
- [ ] r-fgnet
- [ ] r-filematrix
- [ ] r-filterffpe
- [ ] r-findit2
- [ ] r-findpython
- [ ] r-fishalyser
- [ ] r-fis
- [ ] r-fission
- [ ] r-fitdistrplus
- [ ] r-fit.models
- [ ] r-flashclust
- [ ] r-flexdashboard
- [ ] r-flexmix
- [ ] r-flextable
- [ ] r-flowai
- [ ] r-flowbeads
- [ ] r-flowbin
- [ ] r-flowcatchr
- [ ] r-flowchic
- [ ] r-flowclean
- [ ] r-flowcl
- [ ] r-flowcut
- [ ] r-flowcybar
- [ ] r-flowdensity
- [ ] r-flowgraph
- [ ] r-flowmap
- [ ] r-flowmeans
- [ ] r-flowmerge
- [ ] r-flowploidy
- [ ] r-flowplots
- [ ] r-flowsorted.blood.450k
- [ ] r-flowspecs
- [ ] r-flowstats
- [ ] r-flowtime
- [ ] r-flowtrans
- [ ] r-flowutils
- [ ] r-flowviz
- [ ] r-flowvs
- [ ] r-fmsb
- [ ] r-fmstable
- [ ] r-fobitools
- [ ] r-foldgo
- [ ] r-fontawesome
- [ ] r-forcats
- [ ] r-foreach
- [ ] r-forestplot
- [ ] r-formatr
- [ ] r-formattable
- [ ] r-formula
- [ ] r-formula.tools
- [ ] r-fpc
- [ ] r-frenchfish
- [ ] r-freqprof
- [ ] r-fresh
- [ ] r-frf2
- [ ] r-frgepistasis
- [ ] r-frma
- [ ] r-frmatools
- [ ] r-fsa
- [ ] r-fscanr
- [ ] r-fselector
- [ ] r-funtoonorm
- [ ] r-furrr
- [ ] r-futile.logger
- [ ] r-futile.options
- [ ] r-future.apply
- [ ] r-future
- [ ] r-ga4ghclient
- [ ] r-ga4ghshiny
- [ ] r-gage
- [ ] r-gaggle
- [ ] r-gaia
- [ ] r-gamlss.data
- [ ] r-gap.datasets
- [ ] r-gapgom
- [ ] r-gaprediction
- [ ] r-gargle
- [ ] r-gars
- [ ] r-gatefinder
- [ ] r-gbrd
- [ ] r-gcapc
- [ ] r-gclus
- [ ] r-gcrisprtools
- [ ] r-gcsfilesystem
- [ ] r-gcspikelite
- [ ] r-gcsscore
- [ ] r-gdata
- [ ] r-gdcrnatools
- [ ] r-gdsarray
- [ ] r-geem
- [ ] r-gemini
- [ ] r-gem
- [ ] r-genalg
- [ ] r-genarise
- [ ] r-genbankr
- [ ] r-geneaccord
- [ ] r-geneanswers
- [ ] r-geneattribution
- [ ] r-genebreak
- [ ] r-geneclassifiers
- [ ] r-geneexpressionsignature
- [ ] r-genefu
- [ ] r-genega
- [ ] r-genelendatabase
- [ ] r-genemeta
- [ ] r-genenet
- [ ] r-geneoverlap
- [ ] r-geneplast
- [ ] r-geneplotter
- [ ] r-generecommender
- [ ] r-generegionscan
- [ ] r-generics
- [ ] r-genestructuretools
- [ ] r-genetclassifier
- [ ] r-genetics
- [ ] r-genetonic
- [ ] r-genomeinfodbdata
- [ ] r-genomeinfodb
- [ ] r-genomeintervals
- [ ] r-genomes
- [ ] r-genomicdatacommons
- [ ] r-genomicdistributions
- [ ] r-genomicfeatures
- [ ] r-genomicfiles
- [ ] r-genomicinstability
- [ ] r-genomicinteractions
- [ ] r-genomicozone
- [ ] r-genomicscores
- [ ] r-genomicstate
- [ ] r-genomicsupersignature
- [ ] r-genomictools.filehandler
- [ ] r-genotypeeval
- [ ] r-genphen
- [ ] r-genvisr
- [ ] r-geoexplorer
- [ ] r-geofastq
- [ ] r-geometadb
- [ ] r-geomxtools
- [ ] r-geoquery
- [ ] r-geosubmission
- [ ] r-gep2pep
- [ ] r-gesper
- [ ] r-getdee2
- [ ] r-getoptlong
- [ ] r-getopt
- [ ] r-geva
- [ ] r-gewist
- [ ] r-gfa
- [ ] r-ggalluvial
- [ ] r-ggally
- [ ] r-ggalt
- [ ] r-gganimate
- [ ] r-ggbeeswarm
- [ ] r-ggbio
- [ ] r-ggcorrplot
- [ ] r-ggcyto
- [ ] r-ggdendro
- [ ] r-ggdist
- [ ] r-ggextra
- [ ] r-ggfittext
- [ ] r-ggformula
- [ ] r-ggfortify
- [ ] r-ggfun
- [ ] r-gggenes
- [ ] r-gghalves
- [ ] r-gghighlight
- [ ] r-gginnards
- [ ] r-ggmcmc
- [ ] r-ggm
- [ ] r-ggmsa
- [ ] r-ggnetwork
- [ ] r-ggnewscale
- [ ] r-ggparty
- [ ] r-ggplot2
- [ ] r-ggplotify
- [ ] r-ggplot.multistats
- [ ] r-ggpmisc
- [ ] r-ggpol
- [ ] r-ggpp
- [ ] r-ggprism
- [ ] r-ggpubr
- [ ] r-ggrastr
- [ ] r-ggridges
- [ ] r-ggsci
- [ ] r-ggseqlogo
- [ ] r-ggside
- [ ] r-ggsignif
- [ ] r-ggspavis
- [ ] r-ggstance
- [ ] r-ggstar
- [ ] r-ggtext
- [ ] r-ggthemes
- [ ] r-ggtreeextra
- [ ] r-ggtree
- [ ] r-ggvis
- [ ] r-gh
- [ ] r-gigsea
- [ ] r-gispa
- [ ] r-gistr
- [ ] r-gitcreds
- [ ] r-gladiatox
- [ ] r-glimma
- [ ] r-glm2
- [ ] r-glmpca
- [ ] r-glmsparsenet
- [ ] r-globaloptions
- [ ] r-globalseq
- [ ] r-globals
- [ ] r-globaltest
- [ ] r-gmicr
- [ ] r-gmodels
- [ ] r-gmoviz
- [ ] r-gmrp
- [ ] r-gnorm
- [ ] r-go.db
- [ ] r-goexpress
- [ ] r-gofkernel
- [ ] r-golem
- [ ] r-googleauthr
- [ ] r-googlecloudstorager
- [ ] r-googledrive
- [ ] r-googlesheets4
- [ ] r-googlevis
- [ ] r-goprofiles
- [ ] r-goric
- [ ] r-goseq
- [ ] r-gostag
- [ ] r-gostats
- [ ] r-gothic
- [ ] r-gotools
- [ ] r-gparotation
- [ ] r-gplots
- [ ] r-gpls
- [ ] r-gprege
- [ ] r-gprofiler2
- [ ] r-gprofiler
- [ ] r-gptk
- [ ] r-graddescent
- [ ] r-gramm4r
- [ ] r-granulator
- [ ] r-graphat
- [ ] r-graphite
- [ ] r-graphpac
- [ ] r-greylistchip
- [ ] r-gridbase
- [ ] r-gridextra
- [ ] r-gridgraphics
- [ ] r-gridsvg
- [ ] r-grimport
- [ ] r-grmetrics
- [ ] r-groupdata2
- [ ] r-grridge
- [ ] r-gsalightning
- [ ] r-gsa
- [ ] r-gsar
- [ ] r-gsca
- [ ] r-gscreend
- [ ] r-gseabase
- [ ] r-gseabenchmarker
- [ ] r-gsealm
- [ ] r-gseamining
- [ ] r-gsean
- [ ] r-gsgalgor
- [ ] r-gsri
- [ ] r-gsubfn
- [ ] r-gsvadata
- [ ] r-gtable
- [ ] r-gtrellis
- [ ] r-guideseq
- [ ] r-guitar
- [ ] r-gviz
- [ ] r-gwascat
- [ ] r-gwasexacthw
- [ ] r-gwastools
- [ ] r-gwasurvivr
- [ ] r-gwena
- [ ] r-h5vcdata
- [ ] r-hardhat
- [ ] r-harmonicmeanp
- [ ] r-hash
- [ ] r-hca
- [ ] r-hdinterval
- [ ] r-heatmap3
- [ ] r-heatmaply
- [ ] r-heatmaps
- [ ] r-heatplus
- [ ] r-helloranges
- [ ] r-help
- [ ] r-heplots
- [ ] r-here
- [ ] r-herper
- [ ] r-hgnchelper
- [ ] r-hgu133a2.db
- [ ] r-hgu133a.db
- [ ] r-hgu133plus2.db
- [ ] r-hgu95a.db
- [ ] r-hgu95av2cdf
- [ ] r-hgu95av2.db
- [ ] r-hh
- [ ] r-hiannotator
- [ ] r-hicbricks
- [ ] r-hiccompare
- [ ] r-hiergwas
- [ ] r-hierinf
- [ ] r-highcharter
- [ ] r-highr
- [ ] r-hilbertcurve
- [ ] r-hipathia
- [ ] r-hippo
- [ ] r-hireadsprocessor
- [ ] r-hitc
- [ ] r-hiver
- [ ] r-hmdbquery
- [ ] r-hmeasure
- [ ] r-hms
- [ ] r-homologene
- [ ] r-homo.sapiens
- [ ] r-howmany
- [ ] r-hpaanalyze
- [ ] r-hpar
- [ ] r-hpastainr
- [ ] r-hpip
- [ ] r-hsmmsinglecell
- [ ] r-htm2txt
- [ ] r-htmltable
- [ ] r-htmlutils
- [ ] r-htmlwidgets
- [ ] r-htqpcr
- [ ] r-htscluster
- [ ] r-htseqgenie
- [ ] r-htsfilter
- [ ] r-httpcode
- [ ] r-httr
- [ ] r-hubpub
- [ ] r-humantranscriptomecompendium
- [ ] r-hwriter
- [ ] r-hybridmtest
- [ ] r-hyperdraw
- [ ] r-hypergeo
- [ ] r-hypergraph
- [ ] r-hyper
- [ ] r-iaseq
- [ ] r-iasva
- [ ] r-ibh
- [ ] r-ic10
- [ ] r-ic10trainingdata
- [ ] r-ica
- [ ] r-icens
- [ ] r-icetea
- [ ] r-icheck
- [ ] r-ic.infer
- [ ] r-icluster
- [ ] r-icnv
- [ ] r-icobra
- [ ] r-ics
- [ ] r-ideal
- [ ] r-ideoviz
- [ ] r-idiogram
- [ ] r-idpr
- [ ] r-idr2d
- [ ] r-idr
- [ ] r-ids
- [ ] r-igc
- [ ] r-iggeneusage
- [ ] r-igvr
- [ ] r-ihw
- [ ] r-illumina450probevariants.db
- [ ] r-illuminahumanmethylation450kanno.ilmn12.hg19
- [ ] r-illuminahumanmethylation450kmanifest
- [ ] r-illuminahumanmethylationepicanno.ilm10b2.hg19
- [ ] r-illuminahumanmethylationepicanno.ilm10b4.hg19
- [ ] r-illuminahumanmethylationepicmanifest
- [ ] r-iloreg
- [ ] r-imagehts
- [ ] r-imas
- [ ] r-imcrtools
- [ ] r-imman
- [ ] r-immunespacer
- [ ] r-immunotation
- [ ] r-impcdata
- [ ] r-import
- [ ] r-imputelcmd
- [ ] r-inaparc
- [ ] r-indeed
- [ ] r-ineq
- [ ] r-infercnv
- [ ] r-infinityflow
- [ ] r-informeasure
- [ ] r-ini
- [ ] r-inline
- [ ] r-inpas
- [ ] r-inpower
- [ ] r-insight
- [ ] r-inspect
- [ ] r-intad
- [ ] r-intansv
- [ ] r-interaccircos
- [ ] r-interactivecomplexheatmap
- [ ] r-interactivedisplaybase
- [ ] r-interactivedisplay
- [ ] r-intercellar
- [ ] r-interest
- [ ] r-intergraph
- [ ] r-interminer
- [ ] r-intramirexplorer
- [ ] r-intrinsicdimension
- [ ] r-inum
- [ ] r-invariantcausalprediction
- [ ] r-investr
- [ ] r-invgamma
- [ ] r-ioniser
- [ ] r-ipac
- [ ] r-ipddb
- [ ] r-ipo
- [ ] r-irdisplay
- [ ] r-irkernel
- [ ] r-irr
- [ ] r-isanalytics
- [ ] r-isee
- [ ] r-iseeu
- [ ] r-isingfit
- [ ] r-ismev
- [ ] r-isobar
- [ ] r-isocodes
- [ ] r-isocorrectorgui
- [ ] r-isocorrector
- [ ] r-isogenegui
- [ ] r-isogene
- [ ] r-isomirs
- [ ] r-isva
- [ ] r-italicsdata
- [ ] r-italics
- [ ] r-iterativebma
- [ ] r-iterativebmasurv
- [ ] r-iterators
- [ ] r-iterclust
- [ ] r-iteremoval
- [ ] r-itertools
- [ ] r-ivas
- [ ] r-ivygapse
- [ ] r-iwtomics
- [ ] r-jackstraw
- [ ] r-janeaustenr
- [ ] r-janitor
- [ ] r-jaspar2018
- [ ] r-jfa
- [ ] r-jmvcore
- [ ] r-jquerylib
- [ ] r-kableextra
- [ ] r-karyoploter
- [ ] r-kboost
- [ ] r-kcsmart
- [ ] r-keggandmetacoredzpathwaysgeo
- [ ] r-kegg.db
- [ ] r-keggdzpathwaysgeo
- [ ] r-kegggraph
- [ ] r-kegglincs
- [ ] r-keggorthology
- [ ] r-keggprofile
- [ ] r-keggrest
- [ ] r-keras
- [ ] r-kinship2
- [ ] r-kinswingr
- [ ] r-kissde
- [ ] r-klar
- [ ] r-km.ci
- [ ] r-kmsurv
- [ ] r-knitrbootstrap
- [ ] r-knitr
- [ ] r-knowseq
- [ ] r-kodata
- [ ] r-korpus.lang.en
- [ ] r-korpus
- [ ] r-kpeaks
- [ ] r-kpmt
- [ ] r-kutils
- [ ] r-labeling
- [ ] r-labelled
- [ ] r-lace
- [ ] r-laeken
- [ ] r-lambda.r
- [ ] r-laplacesdemon
- [ ] r-lapmix
- [ ] r-lassopv
- [ ] r-latex2exp
- [ ] r-latticeextra
- [ ] r-lavaan
- [ ] r-lava
- [ ] r-lbe
- [ ] r-ldblock
- [ ] r-learnr
- [ ] r-ledpred
- [ ] r-lefser
- [ ] r-leiden
- [ ] r-les
- [ ] r-lexicon
- [ ] r-lfda
- [ ] r-lgr
- [ ] r-lifecycle
- [ ] r-limmagui
- [ ] r-lim
- [ ] r-lineagepulse
- [ ] r-linkhd
- [ ] r-linprog
- [ ] r-lintr
- [ ] r-lionessr
- [ ] r-lipidr
- [ ] r-liquidassociation
- [ ] r-lisaclust
- [ ] r-lisreltor
- [ ] r-listenv
- [ ] r-lmdme
- [ ] r-lmertest
- [ ] r-lmodel2
- [ ] r-lobstahs
- [ ] r-locfdr
- [ ] r-loci2path
- [ ] r-logger
- [ ] r-logging
- [ ] r-logicfs
- [ ] r-lola
- [ ] r-longitudinaldata
- [ ] r-longitudinal
- [ ] r-loomexperiment
- [ ] r-loo
- [ ] r-loose.rock
- [ ] r-lowmacaannotation
- [ ] r-lowmaca
- [ ] r-lpeadj
- [ ] r-lpe
- [ ] r-lpnet
- [ ] r-lrbasedbi
- [ ] r-lrcell
- [ ] r-lsa
- [ ] r-lsd
- [ ] r-lsr
- [ ] r-lumihumanall.db
- [ ] r-lumi
- [ ] r-lungcanceracvssccgeo
- [ ] r-lymphoseqdb
- [ ] r-lymphoseq
- [ ] r-m3c
- [ ] r-m3drop
- [ ] r-m6aboost
- [ ] r-maaslin2
- [ ] r-macat
- [ ] r-macorrplot
- [ ] r-macsquantifyr
- [ ] r-macsr
- [ ] r-made4
- [ ] r-madseq
- [ ] r-mafdb.1kgenomes.phase3.hs37d5
- [ ] r-mafdb.exac.r1.0.hs37d5
- [ ] r-mafdb.exac.r1.0.nontcga.hs37d5
- [ ] r-mafdb.gnomadex.r2.1.hs37d5
- [ ] r-magar
- [ ] r-mageckflute
- [ ] r-magicaxis
- [ ] r-magic
- [ ] r-mai
- [ ] r-mait
- [ ] r-mantelcorr
- [ ] r-mapkl
- [ ] r-mapplots
- [ ] r-mapredictdsc
- [ ] r-mapscape
- [ ] r-maptree
- [ ] r-marray
- [ ] r-maser
- [ ] r-masigpro
- [ ] r-maskbad
- [ ] r-massarray
- [ ] r-massir
- [ ] r-mast
- [ ] r-matchbox
- [ ] r-matlab
- [ ] r-matrixcalc
- [ ] r-matrixgenerics
- [ ] r-matrixmodels
- [ ] r-matrixqcvis
- [ ] r-matrixtests
- [ ] r-matrix.utils
- [ ] r-maxlik
- [ ] r-mbamethyl
- [ ] r-mbased
- [ ] r-mbcb
- [ ] r-mbpcr
- [ ] r-mbqn
- [ ] r-mbttest
- [ ] r-mcbiclust
- [ ] r-mcbiopi
- [ ] r-mcl
- [ ] r-mcseadata
- [ ] r-mcsea
- [ ] r-mdp
- [ ] r-mdqc
- [ ] r-mdscore
- [ ] r-mdts
- [ ] r-meal
- [ ] r-measurementerror.cor
- [ ] r-meat
- [ ] r-meb
- [ ] r-medips
- [ ] r-mefa
- [ ] r-megadepth
- [ ] r-meigor
- [ ] r-melissa
- [ ] r-memes
- [ ] r-memoise
- [ ] r-mergeomics
- [ ] r-meshdbi
- [ ] r-meshes
- [ ] r-meshr
- [ ] r-meskit
- [ ] r-metabocoreutils
- [ ] r-metabolomicsworkbenchr
- [ ] r-metabomxtr
- [ ] r-metabosignal
- [ ] r-metab
- [ ] r-metacca
- [ ] r-metacycle
- [ ] r-metacyto
- [ ] r-metadat
- [ ] r-metafor
- [ ] r-metagene2
- [ ] r-metagene
- [ ] r-metagenomeseq
- [ ] r-metama
- [ ] r-metamisc
- [ ] r-metams
- [ ] r-metaneighbor
- [ ] r-metapone
- [ ] r-metap
- [ ] r-metaseq
- [ ] r-metavizr
- [ ] r-metavolcanor
- [ ] r-metbrewer
- [ ] r-metcirc
- [ ] r-methcp
- [ ] r-methinheritsim
- [ ] r-methped
- [ ] r-methreg
- [ ] r-methrix
- [ ] r-methtargetedngs
- [ ] r-methylaid
- [ ] r-methylcc
- [ ] r-methylclockdata
- [ ] r-methylgsa
- [ ] r-methylinheritance
- [ ] r-methylmix
- [ ] r-methylscaper
- [ ] r-methylseekr
- [ ] r-methylsig
- [ ] r-methylumi
- [ ] r-metid
- [ ] r-metnet
- [ ] r-metr
- [ ] r-mfuzz
- [ ] r-mgfm
- [ ] r-mgfr
- [ ] r-mglm
- [ ] r-mgm
- [ ] r-mgsub
- [ ] r-mgsz
- [ ] r-mia
- [ ] r-miasim
- [ ] r-miaviz
- [ ] r-michip
- [ ] r-microbiomedasim
- [ ] r-microbiomeexplorer
- [ ] r-microbiomemarker
- [ ] r-microbiome
- [ ] r-microbiomeprofiler
- [ ] r-microbiotaprocess
- [ ] r-midashla
- [ ] r-migsa
- [ ] r-milor
- [ ] r-mimager
- [ ] r-mineica
- [ ] r-minfi
- [ ] r-minimumdistance
- [ ] r-miniui
- [ ] r-mi
- [ ] r-mipp
- [ ] r-miqc
- [ ] r-mirage
- [ ] r-mira
- [ ] r-mirbaseconverter
- [ ] r-mirbase.db
- [ ] r-mirbaseversions.db
- [ ] r-mircompdata
- [ ] r-mircomp
- [ ] r-mirintegrator
- [ ] r-mirlab
- [ ] r-mirmine
- [ ] r-mirnameconverter
- [ ] r-mirnapath
- [ ] r-mirnatap.db
- [ ] r-mirnatap
- [ ] r-mirtarrnaseq
- [ ] r-misc3d
- [ ] r-misctools
- [ ] r-missforest
- [ ] r-missmda
- [ ] r-missmethyl
- [ ] r-missrows
- [ ] r-mistyr
- [ ] r-mitch
- [ ] r-mitools
- [ ] r-mixomics
- [ ] r-mixsmsn
- [ ] r-mkmisc
- [ ] r-mlapi
- [ ] r-mle.tools
- [ ] r-mlinterfaces
- [ ] r-mlmetrics
- [ ] r-mlp
- [ ] r-mlr3learners
- [ ] r-mlr3measures
- [ ] r-mlr3
- [ ] r-mlr3tuning
- [ ] r-mlseq
- [ ] r-mltools
- [ ] r-mmappr2
- [ ] r-mmdiff2
- [ ] r-mmuphin
- [ ] r-moanin
- [ ] r-moda
- [ ] r-modcon
- [ ] r-modeest
- [ ] r-modelr
- [ ] r-modeltools
- [ ] r-modstrings
- [ ] r-modules
- [ ] r-mogamun
- [ ] r-mogsa
- [ ] r-moma
- [ ] r-moments
- [ ] r-monalisa
- [ ] r-moonlightr
- [ ] r-mosaiccore
- [ ] r-mosim
- [ ] r-motifbreakr
- [ ] r-motifdb
- [ ] r-motifstack
- [ ] r-mousefm
- [ ] r-mpfe
- [ ] r-mpinet
- [ ] r-mpm
- [ ] r-mppa
- [ ] r-mpranalyze
- [ ] r-mpra
- [ ] r-mqmetrics
- [ ] r-msar
- [ ] r-msbackendmassbank
- [ ] r-msbackendmgf
- [ ] r-msfeatures
- [ ] r-msgbsr
- [ ] r-msgfgui
- [ ] r-msgfplus
- [ ] r-msigdb
- [ ] r-msigdbr
- [ ] r-msimpute
- [ ] r-msmseda
- [ ] r-msmstests
- [ ] r-msnid
- [ ] r-msprep
- [ ] r-mspurity
- [ ] r-msqc
- [ ] r-msqrob2
- [ ] r-msstatsconvert
- [ ] r-msstatslobd
- [ ] r-msstatsqcgui
- [ ] r-msstatsqc
- [ ] r-msstatssamplesize
- [ ] r-msstatstmt
- [ ] r-multcomp
- [ ] r-multcompview
- [ ] r-multiassayexperiment
- [ ] r-multibac
- [ ] r-multiclust
- [ ] r-multicrispr
- [ ] r-multidataset
- [ ] r-multigsea
- [ ] r-multihiccompare
- [ ] r-multimed
- [ ] r-multimir
- [ ] r-multiomicsviz
- [ ] r-multipanelfigure
- [ ] r-multisight
- [ ] r-mumin
- [ ] r-mumosa
- [ ] r-mungesumstats
- [ ] r-munsell
- [ ] r-muscat
- [ ] r-musicatk
- [ ] r-mus.musculus
- [ ] r-mustat
- [ ] r-mutationalpatterns
- [ ] r-mutoss
- [ ] r-mvcclass
- [ ] r-mvoutlier
- [ ] r-mwastools
- [ ] r-mygene
- [ ] r-myvariant
- [ ] r-mzid
- [ ] r-nada
- [ ] r-nadfinder
- [ ] r-naivebayes
- [ ] r-nanostringnctools
- [ ] r-nanostringqcpro
- [ ] r-nanotator
- [ ] r-nanotube
- [ ] r-naturalsort
- [ ] r-nbamseq
- [ ] r-nbclust
- [ ] r-nbsplice
- [ ] r-ncigraph
- [ ] r-ncmisc
- [ ] r-ncrnatools
- [ ] r-ndexr
- [ ] r-nearbynding
- [ ] r-nebulosa
- [ ] r-neighbornet
- [ ] r-nempi
- [ ] r-neo4r
- [ ] r-netbiov
- [ ] r-netboxr
- [ ] r-netdx
- [ ] r-netomics
- [ ] r-netprior
- [ ] r-netsam
- [ ] r-netsmooth
- [ ] r-networkcomparisontest
- [ ] r-networkd3
- [ ] r-networktoolbox
- [ ] r-networktools
- [ ] r-neuca
- [ ] r-neuralnet
- [ ] r-newwave
- [ ] r-ngsreports
- [ ] r-nhpoisson
- [ ] r-nistunits
- [ ] r-nlp
- [ ] r-nls2
- [ ] r-nmi
- [ ] r-nnlasso
- [ ] r-nnls
- [ ] r-nnnorm
- [ ] r-nntensor
- [ ] r-noiseq
- [ ] r-nondetects
- [ ] r-nor1mix
- [ ] r-norce
- [ ] r-normalize450k
- [ ] r-normalyzerde
- [ ] r-normqpcr
- [ ] r-nortest
- [ ] r-nozzle.r1
- [ ] r-nparc
- [ ] r-npgsea
- [ ] r-nsga2r
- [ ] r-nsprcomp
- [ ] r-ntw
- [ ] r-nucleosim
- [ ] r-nucler
- [ ] r-nullranges
- [ ] r-numbers
- [ ] r-numderiv
- [ ] r-nxtirfdata
- [ ] r-objectproperties
- [ ] r-objectsignals
- [ ] r-occugene
- [ ] r-ocplus
- [ ] r-oder
- [ ] r-odseq
- [ ] r-officer
- [ ] r-oligoclasses
- [ ] r-olingui
- [ ] r-olin
- [ ] r-omadb
- [ ] r-omicade4
- [ ] r-omiccircos
- [ ] r-omicplotr
- [ ] r-omicrexposome
- [ ] r-omicslonda
- [ ] r-omicspcadata
- [ ] r-omicspca
- [ ] r-omicsprint
- [ ] r-omixer
- [ ] r-omnipathr
- [ ] r-onassisjavalibs
- [ ] r-onassis
- [ ] r-oncomix
- [ ] r-oncoscore
- [ ] r-onesense
- [ ] r-onewaytests
- [ ] r-ontologyindex
- [ ] r-ontologyplot
- [ ] r-ontoproc
- [ ] r-opencpu
- [ ] r-openprimer
- [ ] r-openprimerui
- [ ] r-openstats
- [ ] r-operator.tools
- [ ] r-oppti
- [ ] r-optextras
- [ ] r-optimalflowdata
- [ ] r-optimalflow
- [ ] r-optimr
- [ ] r-optimx
- [ ] r-optparse
- [ ] r-opweight
- [ ] r-orcme
- [ ] r-orderedlist
- [ ] r-organismdbi
- [ ] r-organism.dplyr
- [ ] r-org.bt.eg.db
- [ ] r-org.dm.eg.db
- [ ] r-org.dr.eg.db
- [ ] r-org.hs.eg.db
- [ ] r-orgmassspecr
- [ ] r-org.mm.eg.db
- [ ] r-org.rn.eg.db
- [ ] r-org.sc.sgd.db
- [ ] r-oriclust
- [ ] r-origami
- [ ] r-orqa
- [ ] r-orthogene
- [ ] r-osat
- [ ] r-oscope
- [ ] r-osfr
- [ ] r-otubase
- [ ] r-outliers
- [ ] r-packfinder
- [ ] r-padma
- [ ] r-padog
- [ ] r-pagerank
- [ ] r-paintmap
- [ ] r-pairadise
- [ ] r-paircompviz
- [ ] r-paireddata
- [ ] r-pairkat
- [ ] r-pairsd3
- [ ] r-pak
- [ ] r-palmerpenguins
- [ ] r-pals
- [ ] r-pandar
- [ ] r-panelcn.mops
- [ ] r-panp
- [ ] r-panr
- [ ] r-panvizgenerator
- [ ] r-paper
- [ ] r-paradox
- [ ] r-parallellogger
- [ ] r-parallelly
- [ ] r-parallelmap
- [ ] r-parameters
- [ ] r-parglms
- [ ] r-parody
- [ ] r-pasilla
- [ ] r-pastecs
- [ ] r-past
- [ ] r-patchwork
- [ ] r-path2ppi
- [ ] r-pathifier
- [ ] r-pathnet
- [ ] r-pathostat
- [ ] r-pathrender
- [ ] r-pathvar
- [ ] r-pathview
- [ ] r-pathwaypca
- [ ] r-paxtoolsr
- [ ] r-pbapply
- [ ] r-pbkrtest
- [ ] r-pcaexplorer
- [ ] r-pcan
- [ ] r-pcxndata
- [ ] r-pcxn
- [ ] r-pdatk
- [ ] r-pdist
- [ ] r-pd.mapping50k.xba240
- [ ] r-peacoqc
- [ ] r-peakpanther
- [ ] r-peca
- [ ] r-peco
- [ ] r-pengls
- [ ] r-pepsnmr
- [ ] r-pepstat
- [ ] r-pepxmltab
- [ ] r-perfect
- [ ] r-performance
- [ ] r-periodicdna
- [ ] r-permute
- [ ] r-perturbatr
- [ ] r-pfam.db
- [ ] r-pfp
- [ ] r-pgca
- [ ] r-phantasus
- [ ] r-pharmacogx
- [ ] r-phastcons100way.ucsc.hg19
- [ ] r-phastcons100way.ucsc.hg38
- [ ] r-phater
- [ ] r-pheatmap
- [ ] r-phemd
- [ ] r-phenogeneranker
- [ ] r-phenotest
- [ ] r-phenstat
- [ ] r-philr
- [ ] r-phipdata
- [ ] r-phosphonormalizer
- [ ] r-phosphoricons
- [ ] r-phosr
- [ ] r-phylogram
- [ ] r-phyloprofile
- [ ] r-phyloseq
- [ ] r-piano
- [ ] r-pickgene
- [ ] r-pigengene
- [ ] r-pillar
- [ ] r-pinfsc50
- [ ] r-pipecomp
- [ ] r-pipeframe
- [ ] r-pi
- [ ] r-pixmap
- [ ] r-pkgbuild
- [ ] r-pkgconfig
- [ ] r-pkgdeptools
- [ ] r-pkgdown
- [ ] r-pkgload
- [ ] r-pkgmaker
- [ ] r-planet
- [ ] r-plethy
- [ ] r-plgem
- [ ] r-plogo2
- [ ] r-plogr
- [ ] r-plot3d
- [ ] r-plotgrouper
- [ ] r-plotly
- [ ] r-plotmo
- [ ] r-plotrix
- [ ] r-plotroc
- [ ] r-plpe
- [ ] r-plsgenomics
- [ ] r-pls
- [ ] r-plsvarsel
- [ ] r-plyranges
- [ ] r-pmm
- [ ] r-pmp
- [ ] r-podcall
- [ ] r-pogos
- [ ] r-poiclaclu
- [ ] r-poilog
- [ ] r-polychrome
- [ ] r-polyester
- [ ] r-polynom
- [ ] r-polyphen.hsapiens.dbsnp131
- [ ] r-poma
- [ ] r-poorman
- [ ] r-posterior
- [ ] r-potra
- [ ] r-powerlaw
- [ ] r-powertcr
- [ ] r-powsc
- [ ] r-ppclust
- [ ] r-ppcor
- [ ] r-ppinfer
- [ ] r-ppistats
- [ ] r-prabclus
- [ ] r-pracma
- [ ] r-praise
- [ ] r-pram
- [ ] r-prebs
- [ ] r-precisetad
- [ ] r-precisiontrialdrawer
- [ ] r-preda
- [ ] r-preseqr
- [ ] r-prettydoc
- [ ] r-prettyunits
- [ ] r-primirtss
- [ ] r-prince
- [ ] r-proactiv
- [ ] r-probamr
- [ ] r-probatch
- [ ] r-process
- [ ] r-procoil
- [ ] r-proda
- [ ] r-profilemodel
- [ ] r-profileplyr
- [ ] r-profmem
- [ ] r-proftools
- [ ] r-progeny
- [ ] r-progress
- [ ] r-progressr
- [ ] r-projectr
- [ ] r-prolocgui
- [ ] r-promise
- [ ] r-proper
- [ ] r-props
- [ ] r-prostar
- [ ] r-proteinprofiles
- [ ] r-proteodisco
- [ ] r-proteomicsannotationhubdata
- [ ] r-proteomm
- [ ] r-protgenerics
- [ ] r-proto
- [ ] r-protr
- [ ] r-prroc
- [ ] r-pscbs
- [ ] r-psea
- [ ] r-psicquic
- [ ] r-psych
- [ ] r-psygenet2r
- [ ] r-pubscore
- [ ] r-pulsedsilac
- [ ] r-purecn
- [ ] r-pvac
- [ ] r-pvca
- [ ] r-pvclust
- [ ] r-pviz
- [ ] r-pwmenrich
- [ ] r-pwomics
- [ ] r-pwrewas.data
- [ ] r-pwrewas
- [ ] r-pwr
- [ ] r-pzfx
- [ ] r-qcc
- [ ] r-qcmetrics
- [ ] r-qdapregex
- [ ] r-qdaptools
- [ ] r-qdnaseq
- [ ] r-qfeatures
- [ ] r-qlcmatrix
- [ ] r-qpcrnorm
- [ ] r-qplexanalyzer
- [ ] r-qqman
- [ ] r-qsmooth
- [ ] r-qsutils
- [ ] r-qtlizer
- [ ] r-quantiseqr
- [ ] r-quantmod
- [ ] r-quantro
- [ ] r-quantsmooth
- [ ] r-quartpac
- [ ] r-questionr
- [ ] r-qusage
- [ ] r-qvalue
- [ ] r-qvcalc
- [ ] r-r2html
- [ ] r-r2jags
- [ ] r-r2winbugs
- [ ] r-r3cseq
- [ ] r-r4rna
- [ ] r-r6
- [ ] r-radiant.data
- [ ] r-radiogx
- [ ] r-rafalib
- [ ] r-raggedexperiment
- [ ] r-rainbow
- [ ] r-rain
- [ ] r-ramr
- [ ] r-randomcolor
- [ ] r-randomwalkrestartmh
- [ ] r-randpack
- [ ] r-randrotation
- [ ] r-randtests
- [ ] r-rankprod
- [ ] r-rapiclient
- [ ] r-rapportools
- [ ] r-rarevariantvis
- [ ] r-rarpack
- [ ] r-rastervis
- [ ] r-rawrr
- [ ] r-rbcbook1
- [ ] r-rbiopaxparser
- [ ] r-rbm
- [ ] r-rbokeh
- [ ] r-rbsurv
- [ ] r-r.cache
- [ ] r-rcade
- [ ] r-rcapture
- [ ] r-rcaspar
- [ ] r-rcas
- [ ] r-rcdklibs
- [ ] r-rcdk
- [ ] r-rcellminerdata
- [ ] r-rcellminer
- [ ] r-rcgh
- [ ] r-rcgmin
- [ ] r-rcircos
- [ ] r-rcistarget
- [ ] r-rclipboard
- [ ] r-rcmdcheck
- [ ] r-rcmdrmisc
- [ ] r-rcm
- [ ] r-rcolorbrewer
- [ ] r-rcompanion
- [ ] r-rcpi
- [ ] r-rcppdate
- [ ] r-rcppprogress
- [ ] r-rcppthread
- [ ] r-rcsl
- [ ] r-rcwlpipelines
- [ ] r-rcwl
- [ ] r-rcx
- [ ] r-rcy3
- [ ] r-rcyjs
- [ ] r-r.devices
- [ ] r-rdgidb
- [ ] r-rdpack
- [ ] r-rdrtoolbox
- [ ] r-reactable
- [ ] r-reactomecontentservice4r
- [ ] r-reactome.db
- [ ] r-reactomegraph4r
- [ ] r-reactomegsa
- [ ] r-reactomepa
- [ ] r-reactr
- [ ] r-readbitmap
- [ ] r-reader
- [ ] r-readjdx
- [ ] r-readqpcr
- [ ] r-rearrr
- [ ] r-rebook
- [ ] r-rebus.base
- [ ] r-rebus.datetimes
- [ ] r-rebus.numbers
- [ ] r-rebus
- [ ] r-rebus.unicode
- [ ] r-receptloss
- [ ] r-recipes
- [ ] r-reconsi
- [ ] r-recount3
- [ ] r-recountmethylation
- [ ] r-recount
- [ ] r-recoup
- [ ] r-reder
- [ ] r-redseq
- [ ] r-reffreeewas
- [ ] r-refmanager
- [ ] r-refplus
- [ ] r-regenrich
- [ ] r-regioner
- [ ] r-regionreport
- [ ] r-registry
- [ ] r-regsplice
- [ ] r-regutools
- [ ] r-relations
- [ ] r-reldist
- [ ] r-relimp
- [ ] r-rematch2
- [ ] r-rematch
- [ ] r-remotes
- [ ] r-remp
- [ ] r-rentrez
- [ ] r-renv
- [ ] r-repmis
- [ ] r-repo
- [ ] r-reportingtools
- [ ] r-report
- [ ] r-reportroc
- [ ] r-reportr
- [ ] r-reprex
- [ ] r-repr
- [ ] r-repviz
- [ ] r-reqon
- [ ] r-residualmatrix
- [ ] r-restfulsedata
- [ ] r-restfulse
- [ ] r-restriktor
- [ ] r-rex
- [ ] r-rexposome
- [ ] r-rfarm
- [ ] r-r.filesets
- [ ] r-rfoc
- [ ] r-rgalaxy
- [ ] r-rgenometracksdata
- [ ] r-rgenometracks
- [ ] r-rgmqllib
- [ ] r-rgmql
- [ ] r-rgraph2js
- [ ] r-rgreat
- [ ] r-rgsea
- [ ] r-rgsepd
- [ ] r-rhandsontable
- [ ] r-rhdf5client
- [ ] r-r.huge
- [ ] r-ribocrypt
- [ ] r-riboprofiling
- [ ] r-ribor
- [ ] r-riboseqr
- [ ] r-ribosomeprofilingqc
- [ ] r-rimmport
- [ ] r-rintrojs
- [ ] r-rio
- [ ] r-ripat
- [ ] r-risa
- [ ] r-rismed
- [ ] r-ritandata
- [ ] r-ritan
- [ ] r-river
- [ ] r-rlab
- [ ] r-rlassocox
- [ ] r-rlhub
- [ ] r-rlist
- [ ] r-rlmm
- [ ] r-rlseq
- [ ] r-rmagic
- [ ] r-rmagpie
- [ ] r-rmallow
- [ ] r-rmarkdown
- [ ] r-rmassbank
- [ ] r-r.matlab
- [ ] r-rmdformats
- [ ] r-rmelting
- [ ] r-rmeta
- [ ] r-r.methodss3
- [ ] r-rmio
- [ ] r-rmir.hs.mirna
- [ ] r-rmir
- [ ] r-rmisc
- [ ] r-rmspc
- [ ] r-rmtstat
- [ ] r-rnaagecalc
- [ ] r-rnaeditr
- [ ] r-rnainteract
- [ ] r-rnamodr.alkanilineseq
- [ ] r-rnamodr.ml
- [ ] r-rnamodr
- [ ] r-rnamodr.ribomethseq
- [ ] r-rnasense
- [ ] r-rnaseqcomp
- [ ] r-rnaseqpower
- [ ] r-rnaseqr
- [ ] r-rnaseqsamplesizedata
- [ ] r-rnbeads.hg19
- [ ] r-rnbeads
- [ ] r-rnexml
- [ ] r-rngtools
- [ ] r-rnits
- [ ] r-roar
- [ ] r-robustrankaggreg
- [ ] r-rocit
- [ ] r-rockchalk
- [ ] r-rocpai
- [ ] r-rocr
- [ ] r-roi
- [ ] r-roi.plugin.lpsolve
- [ ] r-rols
- [ ] r-rontotools
- [ ] r-r.oo
- [ ] r-ropls
- [ ] r-roseq
- [ ] r-rpa
- [ ] r-rpart.plot
- [ ] r-rpdb
- [ ] r-rpmg
- [ ] r-rpmm
- [ ] r-rprojroot
- [ ] r-rpsixml
- [ ] r-rpx
- [ ] r-rqt
- [ ] r-rrdp
- [ ] r-rrho
- [ ] r-r.rsp
- [ ] r-rrvgo
- [ ] r-rsample
- [ ] r-rscudo
- [ ] r-rsemmed
- [ ] r-rslurm
- [ ] r-rsm
- [ ] r-rsnps
- [ ] r-rsolnp
- [ ] r-rspc
- [ ] r-rsq
- [ ] r-rstantools
- [ ] r-rstatix
- [ ] r-rstudioapi
- [ ] r-rsvd
- [ ] r-rsvgtipsdevice
- [ ] r-rsvsim
- [ ] r-rsweep
- [ ] r-rtca
- [ ] r-rtcga
- [ ] r-rtcgatoolbox
- [ ] r-rtensor
- [ ] r-rtnduals
- [ ] r-rtn
- [ ] r-rtnsurvival
- [ ] r-rtopper
- [ ] r-rtpca
- [ ] r-rtrm
- [ ] r-rtrmui
- [ ] r-runit
- [ ] r-r.utils
- [ ] r-ruvcorr
- [ ] r-ruvnormalizedata
- [ ] r-ruvnormalize
- [ ] r-ruvseq
- [ ] r-rversions
- [ ] r-rvest
- [ ] r-rvmmin
- [ ] r-rvs
- [ ] r-rwekajars
- [ ] r-rweka
- [ ] r-rwikipathways
- [ ] r-s4vd
- [ ] r-safe
- [ ] r-sagenhaft
- [ ] r-sampleclassifier
- [ ] r-sampling
- [ ] r-sampsurf
- [ ] r-sandwich
- [ ] r-sangeranalyser
- [ ] r-sangerseqr
- [ ] r-sarks
- [ ] r-saturn
- [ ] r-saver
- [ ] r-savr
- [ ] r-sbgnview.data
- [ ] r-sbgnview
- [ ] r-sbmlr
- [ ] r-scale4c
- [ ] r-scaledmatrix
- [ ] r-scales
- [ ] r-scalign
- [ ] r-scanmirapp
- [ ] r-scanmirdata
- [ ] r-scanmir
- [ ] r-scannotatr
- [ ] r-scan.upc
- [ ] r-scanvis
- [ ] r-scatedata
- [ ] r-scate
- [ ] r-scater
- [ ] r-scatterhatch
- [ ] r-scatterpie
- [ ] r-scatterplot3d
- [ ] r-scbfa
- [ ] r-scbn
- [ ] r-scclassifr
- [ ] r-scclassify
- [ ] r-scdataviz
- [ ] r-scdblfinder
- [ ] r-scds
- [ ] r-scfa
- [ ] r-scfeaturefilter
- [ ] r-schex
- [ ] r-schot
- [ ] r-scico
- [ ] r-sciplot
- [ ] r-scisi
- [ ] r-scmerge
- [ ] r-scmeth
- [ ] r-scnorm
- [ ] r-scone
- [ ] r-sconify
- [ ] r-scope
- [ ] r-scoreinvhap
- [ ] r-scpca
- [ ] r-scp
- [ ] r-screclassify
- [ ] r-screcover
- [ ] r-screpertoire
- [ ] r-scrime
- [ ] r-scrnaseq
- [ ] r-scruff
- [ ] r-scry
- [ ] r-sctensor
- [ ] r-sctgif
- [ ] r-scthi
- [ ] r-sctreeviz
- [ ] r-sdams
- [ ] r-sechm
- [ ] r-segmented
- [ ] r-segmenter
- [ ] r-segmentseq
- [ ] r-selectr
- [ ] r-selex
- [ ] r-semdist
- [ ] r-semisup
- [ ] r-semplot
- [ ] r-semtools
- [ ] r-sendmailr
- [ ] r-sepira
- [ ] r-seq2pathway.data
- [ ] r-seq2pathway
- [ ] r-seqcat
- [ ] r-seqcna.annot
- [ ] r-seqcombo
- [ ] r-seqgate
- [ ] r-seqgsea
- [ ] r-seqlogo
- [ ] r-seqmagick
- [ ] r-seqpattern
- [ ] r-seqsetvis
- [ ] r-seqsqc
- [ ] r-seqvartools
- [ ] r-servr
- [ ] r-sesamedata
- [ ] r-sesame
- [ ] r-sessioninfo
- [ ] r-setools
- [ ] r-setrng
- [ ] r-settings
- [ ] r-sevenbridges
- [ ] r-sevenc
- [ ] r-sfsmisc
- [ ] r-sgseq
- [ ] r-sgt
- [ ] r-shades
- [ ] r-shadowtext
- [ ] r-shape
- [ ] r-shinyace
- [ ] r-shinyalert
- [ ] r-shinybs
- [ ] r-shinybusy
- [ ] r-shinycssloaders
- [ ] r-shinycustomloader
- [ ] r-shinydashboard
- [ ] r-shinydashboardplus
- [ ] r-shinyepico
- [ ] r-shinyfeedback
- [ ] r-shinyfiles
- [ ] r-shinyheatmaply
- [ ] r-shinyhelper
- [ ] r-shinyjqui
- [ ] r-shinyjs
- [ ] r-shinymatrix
- [ ] r-shinymethyl
- [ ] r-shinypanel
- [ ] r-shiny
- [ ] r-shinyscreenshot
- [ ] r-shinystan
- [ ] r-shinythemes
- [ ] r-shinytoastr
- [ ] r-shinytree
- [ ] r-shinywidgets
- [ ] r-siamcat
- [ ] r-sift.hsapiens.dbsnp137
- [ ] r-sigcheck
- [ ] r-sigclust
- [ ] r-sigfeature
- [ ] r-sigfuge
- [ ] r-siggenes
- [ ] r-sights
- [ ] r-sigspack
- [ ] r-sigsquared
- [ ] r-simat
- [ ] r-simbindprofiles
- [ ] r-simffpe
- [ ] r-similarpeak
- [ ] r-simpintlists
- [ ] r-simplecache
- [ ] r-simplifyenrichment
- [ ] r-singlecellexperiment
- [ ] r-singlecellsignalr
- [ ] r-singlecelltk
- [ ] r-singlemoleculefootprinting
- [ ] r-singscore
- [ ] r-sispa
- [ ] r-sitadela
- [ ] r-sizepower
- [ ] r-sjlabelled
- [ ] r-sjmisc
- [ ] r-skewr
- [ ] r-skmeans
- [ ] r-slgi
- [ ] r-slingshot
- [ ] r-slinky
- [ ] r-slqpcr
- [ ] r-smatr
- [ ] r-smite
- [ ] r-smoother
- [ ] r-smoothie
- [ ] r-smoothwin
- [ ] r-smvar
- [ ] r-snageedata
- [ ] r-snagee
- [ ] r-snakecase
- [ ] r-snapcount
- [ ] r-snifter
- [ ] r-snm
- [ ] r-snowfall
- [ ] r-snow
- [ ] r-snpediar
- [ ] r-snphood
- [ ] r-sn
- [ ] r-snplocs.hsapiens.dbsnp144.grch37
- [ ] r-snplocs.hsapiens.dbsnp150.grch38
- [ ] r-soggi
- [ ] r-sojourner
- [ ] r-somaticsignatures
- [ ] r-sombrero
- [ ] r-somnibus
- [ ] r-soniclength
- [ ] r-sortable
- [ ] r-soupx
- [ ] r-spacepac
- [ ] r-spacetime
- [ ] r-spaniel
- [ ] r-sparql
- [ ] r-sparrow
- [ ] r-sparsebn
- [ ] r-sparsebnutils
- [ ] r-sparsedossa
- [ ] r-sparsemvn
- [ ] r-sparsenetgls
- [ ] r-sparsepca
- [ ] r-sparsesignatures
- [ ] r-spatest
- [ ] r-spatialcpie
- [ ] r-spatialdecon
- [ ] r-spatialde
- [ ] r-spatialexperiment
- [ ] r-spatialheatmap
- [ ] r-spatstat.data
- [ ] r-spatzie
- [ ] r-speaq
- [ ] r-specl
- [ ] r-specond
- [ ] r-spectraltad
- [ ] r-spectra
- [ ] r-speedglm
- [ ] r-spem
- [ ] r-spia
- [ ] r-spicyr
- [ ] r-spidermir
- [ ] r-spikeli
- [ ] r-spiky
- [ ] r-spktools
- [ ] r-splatter
- [ ] r-splicingfactory
- [ ] r-splicinggraphs
- [ ] r-splinetimer
- [ ] r-splinter
- [ ] r-splitstackshape
- [ ] r-splots
- [ ] r-sponge
- [ ] r-spqn
- [ ] r-spscomps
- [ ] r-spsimseq
- [ ] r-spsutil
- [ ] r-sqldataframe
- [ ] r-sqldf
- [ ] r-squadd
- [ ] r-squarem
- [ ] r-squash
- [ ] r-sradb
- [ ] r-srgnet
- [ ] r-sscore
- [ ] r-sscu
- [ ] r-sseq
- [ ] r-ssize
- [ ] r-sspaths
- [ ] r-ssrch
- [ ] r-ssviz
- [ ] r-stabledist
- [ ] r-stabs
- [ ] r-stager
- [ ] r-starank
- [ ] r-starbiotrek
- [ ] r-startupmsg
- [ ] r-statebins
- [ ] r-stategra
- [ ] r-stattarget
- [ ] r-stemhypoxia
- [ ] r-stepnorm
- [ ] r-stopwords
- [ ] r-strandcheckr
- [ ] r-stringdb
- [ ] r-stringr
- [ ] r-stroma4
- [ ] r-struct
- [ ] r-structtoolbox
- [ ] r-structuralvariantannotation
- [ ] r-styler
- [ ] r-subcellbarcode
- [ ] r-subseq
- [ ] r-subspace
- [ ] r-summarizedbenchmark
- [ ] r-summarizedexperiment
- [ ] r-summarytools
- [ ] r-summix
- [ ] r-superheat
- [ ] r-superlearner
- [ ] r-supersigs
- [ ] r-suprahex
- [ ] r-surfaltr
- [ ] r-survey
- [ ] r-survivalroc
- [ ] r-survivalsvm
- [ ] r-survminer
- [ ] r-survmisc
- [ ] r-survtype
- [ ] r-sushi
- [ ] r-svanumt
- [ ] r-svaretro
- [ ] r-svdialogs
- [ ] r-svgpanzoom
- [ ] r-svgui
- [ ] r-svmisc
- [ ] r-svunit
- [ ] r-swamp
- [ ] r-swath2stats
- [ ] r-swathxtend
- [ ] r-swfdr
- [ ] r-swimr
- [ ] r-switchde
- [ ] r-sylly.en
- [ ] r-sylly
- [ ] r-synapsis
- [ ] r-synapter
- [ ] r-synergyfinder
- [ ] r-synextend
- [ ] r-synlet
- [ ] r-synmut
- [ ] r-systempiperdata
- [ ] r-systempiper
- [ ] r-systempipeshiny
- [ ] r-systempipetools
- [ ] r-syuzhet
- [ ] r-tadcompare
- [ ] r-tanggle
- [ ] r-tapseq
- [ ] r-targetdecoy
- [ ] r-target
- [ ] r-targetscore
- [ ] r-tarifx
- [ ] r-tarseqqc
- [ ] r-tbsignatureprofiler
- [ ] r-tbx20bamsubset
- [ ] r-tcc
- [ ] r-tcgabiolinksgui.data
- [ ] r-tcgabiolinksgui
- [ ] r-tcgabiolinks
- [ ] r-tcgautils
- [ ] r-tcltk2
- [ ] r-tcseq
- [ ] r-tdaracne
- [ ] r-teachingdemos
- [ ] r-tensorflow
- [ ] r-tensor
- [ ] r-tenxpbmcdata
- [ ] r-tenxplore
- [ ] r-teqc
- [ ] r-tester
- [ ] r-textclean
- [ ] r-textshape
- [ ] r-textstem
- [ ] r-tfarm
- [ ] r-tfautograph
- [ ] r-tfea.chip
- [ ] r-tfhaz
- [ ] r-tfisher
- [ ] r-tfruns
- [ ] r-tfutils
- [ ] r-th.data
- [ ] r-threejs
- [ ] r-tictoc
- [ ] r-tidybayes
- [ ] r-tidybulk
- [ ] r-tidysinglecellexperiment
- [ ] r-tidysummarizedexperiment
- [ ] r-tidytext
- [ ] r-tidytree
- [ ] r-tidyverse
- [ ] r-timecourse
- [ ] r-timedate
- [ ] r-timeomics
- [ ] r-timescape
- [ ] r-timeseriesexperiment
- [ ] r-timeseries
- [ ] r-timirgen
- [ ] r-tin
- [ ] r-tinytex
- [ ] r-tippy
- [ ] r-tissueenrich
- [ ] r-tkwidgets
- [ ] r-tloh
- [ ] r-tmixclust
- [ ] r-tnbc.cms
- [ ] r-tnet
- [ ] r-tnt
- [ ] r-toast
- [ ] r-tomoda
- [ ] r-topconfects
- [ ] r-topdownr
- [ ] r-topgo
- [ ] r-toster
- [ ] r-toxicogx
- [ ] r-tpp2d
- [ ] r-tpp
- [ ] r-tracktables
- [ ] r-tractor.base
- [ ] r-tradeseq
- [ ] r-trajectorygeometry
- [ ] r-trajectoryutils
- [ ] r-transcriptogramer
- [ ] r-transcriptr
- [ ] r-transformgampoi
- [ ] r-translatome
- [ ] r-transomics2cytoscape
- [ ] r-trare
- [ ] r-traser
- [ ] r-traviz
- [ ] r-treeandleaf
- [ ] r-treeio
- [ ] r-treekor
- [ ] r-treemap
- [ ] r-treesummarizedexperiment
- [ ] r-trena
- [ ] r-trendy
- [ ] r-tress
- [ ] r-tricycle
- [ ] r-trio
- [ ] r-tripr
- [ ] r-trnadbimport
- [ ] r-trna
- [ ] r-trnascanimport
- [ ] r-tronco
- [ ] r-truncdist
- [ ] r-trust
- [ ] r-tsa
- [ ] r-tscan
- [ ] r-tsne
- [ ] r-tsrchitect
- [ ] r-ttgsea
- [ ] r-ttmap
- [ ] r-ttservice
- [ ] r-tvtb
- [ ] r-twoddpcr
- [ ] r-txcutr
- [ ] r-txdb.celegans.ucsc.ce6.ensgene
- [ ] r-txdb.dmelanogaster.ucsc.dm3.ensgene
- [ ] r-txdb.dmelanogaster.ucsc.dm6.ensgene
- [ ] r-txdb.hsapiens.ucsc.hg18.knowngene
- [ ] r-txdb.hsapiens.ucsc.hg19.knowngene
- [ ] r-txdb.hsapiens.ucsc.hg38.knowngene
- [ ] r-txdb.mmusculus.ucsc.mm10.knowngene
- [ ] r-txdb.mmusculus.ucsc.mm9.knowngene
- [ ] r-txdb.rnorvegicus.ucsc.rn4.ensgene
- [ ] r-tximeta
- [ ] r-tximport
- [ ] r-typeinfo
- [ ] r-ucell
- [ ] r-udapi
- [ ] r-ularcirc
- [ ] r-umi4cats
- [ ] r-uncoverapplib
- [ ] r-undo
- [ ] r-unifiedwmwqpcr
- [ ] r-uniprot.ws
- [ ] r-uniqtag
- [ ] r-uniquorn
- [ ] r-upsetr
- [ ] r-urlchecker
- [ ] r-usethis
- [ ] r-usort
- [ ] r-vaexprs
- [ ] r-vam
- [ ] r-varcon
- [ ] r-varfrompdb
- [ ] r-varhandle
- [ ] r-variancepartition
- [ ] r-variantexperiment
- [ ] r-varianttools
- [ ] r-varselrf
- [ ] r-vasp
- [ ] r-vbmp
- [ ] r-vcdextra
- [ ] r-vcd
- [ ] r-vcfarray
- [ ] r-velociraptor
- [ ] r-venndetail
- [ ] r-venndiagram
- [ ] r-venn
- [ ] r-verification
- [ ] r-verso
- [ ] r-vidger
- [ ] r-vioplot
- [ ] r-viper
- [ ] r-vipor
- [ ] r-viridislite
- [ ] r-viridis
- [ ] r-viseago
- [ ] r-visnetwork
- [ ] r-visse
- [ ] r-vplotr
- [ ] r-vtpnet
- [ ] r-vulcan
- [ ] r-waffle
- [ ] r-waiter
- [ ] r-waldo
- [ ] r-watermelon
- [ ] r-wavcluster
- [ ] r-weaver
- [ ] r-webbioc
- [ ] r-webchem
- [ ] r-webshot
- [ ] r-weibullness
- [ ] r-weightr
- [ ] r-weitrix
- [ ] r-wesanderson
- [ ] r-wheatmap
- [ ] r-whisker
- [ ] r-widgettools
- [ ] r-wiggleplotr
- [ ] r-withr
- [ ] r-wordcloud2
- [ ] r-wpm
- [ ] r-wppi
- [ ] r-wrench
- [ ] r-writexls
- [ ] r-xcir
- [ ] r-xeva
- [ ] r-xina
- [ ] r-xlsxjars
- [ ] r-xlsx
- [ ] r-xmapbridge
- [ ] r-xml2r
- [ ] r-xmlparsedata
- [ ] r-xopen
- [ ] r-xtable
- [ ] r-xtrasnplocs.hsapiens.dbsnp144.grch37
- [ ] r-yamss
- [ ] r-yapsa
- [ ] r-yarn
- [ ] r-yeastcc
- [ ] r-yeastexpdata
- [ ] r-yesno
- [ ] r-yulab.utils
- [ ] r-zcompositions
- [ ] r-zeallot
- [ ] r-zellkonverter
- [ ] r-zfpkm
- [ ] r-zinbwave
| main | rm r alias from these packages r r r r r r r abadata r abarray r abind r abseqr r absseq r acde r ace r adabag r adamgui r ada r additivitytests r adductdata r adductomicsr r adgoftest r adimpute r afex r affixcan r affycompatible r affycomp r affycontam r affycoretools r affydata r affyilm r affylmgui r affypara r affyrnadegradation r agdex r aggregatebiovar r aggregation r agilp r agimicrorna r agricolae r aiccmodavg r aims r airpart r airway r akmbiclust r alabama r r alevinqc r allelicimbalance r all r alluvial r alphabeta r alpine r alpsnmr r alps r alsace r als r altcdfenvs r amaretto r anaquin r ancombc r aneufinderdata r anf r animalcules r annaffy r annmap r annotate r annotationdbi r annotationfilter r annotationforge r annotationhubdata r annotationtools r annotatr r anocva r r anota r antiprofiles r anvilbilling r anvil r anvilpublish r anylib r aod r r apalyzer r apcomplex r aplot r aplpack r r argparse r arm r aroma affymetrix r aroma apd r aroma core r aroma light r arrayexpress r arrayhelpers r arraymvout r arrayqualitymetrics r arrayquality r arrmdata r arrmnormalization r arsenal r artms r asafe r asgsca r asics r aspediafi r aspli r assertive base r assertive code r assertive data r assertive data uk r assertive data us r assertive datetimes r assertive files r assertive matrices r assertive models r assertive numbers r assertive r assertive properties r assertive reflection r assertive sets r assertive strings r assertive types r assertthat r assessorf r asset r assign r atacseqqc r atena r atsa r attempt r attract r aucell r auc r autonomics r autotuner r available r aws r aws signature r awst r baalchip r babelgene r badregionfinder r balcony r ballgown r banocc r barcodetrackr r r basecallqc r baseline r basespacer r r basicstarrseq r basictrendline r basilisk r basilisk utils r batchjobs r batchqc r bayesknockdown r bayesplay r bayesplot r bayesrules r bayestestr r bayestools r bayseq r bbcanalyzer r bbmle r bb r r bcellviper r beadarraysnp r beanplot r bearscc r beat r benchdamic r benchmarkmedata r benchmarkme r betareg r bezier r bgeecall r bgeedb r bh r bibitr r bifet r bigassertr r biggr r bigmelon r bigmemory sri r bigparallelr r bigpint r bindingsitefinder r binr r bioassayr r biobroom r biobtreer r biocancer r bioccheck r biocdockermanager r biocfilecache r biocgenerics r biocgraph r biocio r biocmanager r bioconcotk r biocor r biocpkgtools r biocset r biocsklearn r biocstyle r biocthis r biocversion r biocviews r biocworkflowtools r biodbchebi r biodbkegg r biodblipidmaps r biodbuniprot r biodist r biomart r biomformat r biomm r biomvcclass r bionero r bionet r bionetstat r bioplex r biosigner r biotip r biotmle r biscuiteerdata r biscuiteer r biseq r biwt r blacksheepr r bladderbatch r blandaltmanleh r blma r blme r blob r r bmp r bnem r bookdown r bootnet r brainflowprobes r brain r brainsaber r brainstars r branchpointer r breakpointrdata r breakpointr r breastcancervdx r brew r brgenomics r bridgedbr r bridgesampling r brobdingnag r broom mixed r broom r browserviz r r bsgenome celegans ucsc r bsgenome drerio ucsc r bsgenome ecoli ncbi r bsgenome hsapiens ucsc r bsgenome hsapiens ucsc r bsgenome hsapiens ucsc r bsgenome mmusculus ucsc r bsgenome mmusculus ucsc r bsgenome r bslib r bsplus r bspm r bubbletree r bugsigdbr r bumhmm r bumphunter r bumpymatrix r r caen r cafe r cagefightr r cageminer r cager r calibrate r callr r calm r cancer r cancersubtypes r candisc r cand r caomicsv r ca r capushe r cardata r caretensemble r carnival r car r catalyst r catdata r categorycompare r category r catencoders r causalr r cbaf r cbioportaldata r cbpmanager r ccdata r ccmap r ccp r ccpromise r ccrepe r cctensor r cdft r celaref r celestial r cellbaser r cellbench r celldex r r cellity r cellmapper r cellmigration r cellmixs r cellranger r cellscape r cellscore r celltrails r celltree r cemitool r censcyt r cepo r cernanetsim r cexor r cfassay r cfdnapro r cgdsr r cghbase r cghcall r cghmcr r cghnormaliter r cghregions r champdata r champ r chemometrics r chetah r chicago r chic data r chic r chimeraviz r chipanalyser r chipenrich data r chipenrich r chipexoqual r chippeakanno r chipqc r chipseeker r chipsim r chipxpressdata r chipxpress r chk r chromheatmap r chromhmmdata r chromplot r chromstardata r chromswitch r chronos r cicero r cimice r cindex r circlize r circrnaprofiler r circstats r citefuse r classifyr r cleanupdtseq r cleaver r clippda r clipper r cliprofiler r clipr r clisymbols r clomial r clonality r clonotyper r clst r clstutils r clumsid r clustcomp r clusterjudge r clusterprofiler r clusterrepro r clusterseq r clustersignificance r clusterstab r clustifyr r clustree r clustvarsel r clvalid r r cma r cmap r cmapr r cmdfun r cmplot r cnorfeeder r cnorm r cnvfilter r cnvgears r cnvgsa r cnviz r cnvpanelizer r cnvranger r r cocitestats r cocoa r cocor r coda r codedepends r codelink r codex r coexnet r cogena r cogito r cogps r cohcapanno r cointreg r colorramps r colortools r colourpicker r combinat r combinepvalue r combi r comet r compartmap r compcoder r compepitools r complexheatmap r complexupset r compran r comprehenr r concaveman r conclus r condformat r condiments r conf design r confess r config r configr r confintr r conicfit r consensusclusterplus r consensusde r consensusov r consensus r consensusseeker r constand r conting r contrast r conumee r convert r copyhelper r copynumber r copynumberplots r copywriter r cordon r coregx r cormotif r corncob r corpcor r corral r correp r corrgram r corrplot r coseq r cosmic r cosmosr r countclust r countrycode r countsimqc r coveb r coverageview r covrna r cowplot r r cpgassoc r r cpvsnp r cqn r crayon r credentials r crimage r crisprseek r crisprseekplus r crisprvariants r crmn r crossmeta r crosstalk r crul r cssam r cssq r ctc r ctdquerier r ctggem r ctrap r ctsge r cummerbund r curatedtcgadata r curry r customcmpdb r customprodb r cvauc r cvms r cyanofilter r cycle r cyclocomp r cytodx r cytofpower r cytoglmm r cytomapper r daewr r daglogo r dama r damefinder r damirseq r dapardata r dapar r dart r dasper r datamods r data tree r datawizard r dbi r dbplyr r dcanr r dce r dcgsa r ddct r ddpcrclust r ddpcr r dearseq r debcam r debrowser r r deconrnaseq r deconstructsigs r decontam r deconvr r deco r decoupler r deepbluer r deeppincs r deformats r degraph r degreport r delayeddataframe r delayedmatrixstats r delayedtensor r deltacapturec r deltagseg r demand r dendextend r deoptimr r depmap r dep r deqms r derfinderhelper r derfinder r derfinderplot r deriv r desc r desingle r desirability r desubs r detectseparation r devtools r dewseq r dexmadata r dexma r dexseq r dfp r diagrammer r diagram r dichromat r diffcoexp r diffcorr r diffcyt r diffgeneanalysis r difflogo r diffloop r diffr r diffutr r diggit r digittests r dino r director r dir expiry r dirmult r discorhythm r discriminer r distillery r distributional r dittoseq r divergence r dks r dmcfb r dmchmm r dml r dmrcaller r dmrcate r dmrforpairs r dmrscan r dmrseq r dmt r r dnabarcodecompatibility r dnet r doby r dockerfiler r docopt r do db r doe base r dominoeffect r doparallel r doppelgangr r dorng r dorothea r doscheda r dose r doser r dosnow r downlit r downloader r drawer r drawproteins r drawr r drc r drimseq r drivernet r drtmle r drugtargetinteractions r drugvsdiseasedata r drugvsdisease r dstruct r dtangle r dta r dt r dtplyr r dtt r dualks r dune r dunn test r dupradar r dyebias r dygraphs r dynamictreecut r dyndoc r easierdata r easier r easypubmed r easyreporting r easyrnaseq r ebsea r ebseqhmm r ebseq r r ecolitk r ecume r edaseq r eegc r effectsize r effsize r egad r egg r egseadata r egsea r eigenmodel r eisar r elasticnet r elitism r ellipse r elliptic r elmer data r elmer r emdbook r emdist r emdomics r emmeans r empiricalbrownsmethod r emt r encodexplorerdata r encodexplorer r english r enhancedvolcano r enmcb r enmix r enrichmentbrowser r enrichplot r enrichr r enrichtf r ensdb hsapiens r ensdb hsapiens r ensembldb r ensemblvep r ensurer r entropyexplorer r entropy r envisionquery r envstats r epidecoder r epidish r epigenomix r epihet r epinem r epir r epistack r epitxdb r epivizrchart r epivizrdata r epivizr r epivizrserver r epivizrstandalone r erccdashboard r erma r erssa r escape r esetvis r estimability r etrunct r eudysbiome r evaluate r evaluomer r eva r evmix r ewcedata r ewce r exact r excelr r excluster r eximir r r experimenthubdata r experimenthub r experimentsubset r exploremodelmatrix r expressionatlas r extdist r extrafontdb r extrafont r faahko r factdesign r factoextra r factominer r fadist r famagg r famat r farms r fastdummies r fastliquidassociation r fcbf r fccac r fci r fcoex r fcscan r fda r fdb infiniummethylation r fds r feature r fedup r fella r ffield r ffpe r fgga r fgnet r filematrix r filterffpe r r findpython r fishalyser r fis r fission r fitdistrplus r fit models r flashclust r flexdashboard r flexmix r flextable r flowai r flowbeads r flowbin r flowcatchr r flowchic r flowclean r flowcl r flowcut r flowcybar r flowdensity r flowgraph r flowmap r flowmeans r flowmerge r flowploidy r flowplots r flowsorted blood r flowspecs r flowstats r flowtime r flowtrans r flowutils r flowviz r flowvs r fmsb r fmstable r fobitools r foldgo r fontawesome r forcats r foreach r forestplot r formatr r formattable r formula r formula tools r fpc r frenchfish r freqprof r fresh r r frgepistasis r frma r frmatools r fsa r fscanr r fselector r funtoonorm r furrr r futile logger r futile options r future apply r future r r r gage r gaggle r gaia r gamlss data r gap datasets r gapgom r gaprediction r gargle r gars r gatefinder r gbrd r gcapc r gclus r gcrisprtools r gcsfilesystem r gcspikelite r gcsscore r gdata r gdcrnatools r gdsarray r geem r gemini r gem r genalg r genarise r genbankr r geneaccord r geneanswers r geneattribution r genebreak r geneclassifiers r geneexpressionsignature r genefu r genega r genelendatabase r genemeta r genenet r geneoverlap r geneplast r geneplotter r generecommender r generegionscan r generics r genestructuretools r genetclassifier r genetics r genetonic r genomeinfodbdata r genomeinfodb r genomeintervals r genomes r genomicdatacommons r genomicdistributions r genomicfeatures r genomicfiles r genomicinstability r genomicinteractions r genomicozone r genomicscores r genomicstate r genomicsupersignature r genomictools filehandler r genotypeeval r genphen r genvisr r geoexplorer r geofastq r geometadb r geomxtools r geoquery r geosubmission r r gesper r r getoptlong r getopt r geva r gewist r gfa r ggalluvial r ggally r ggalt r gganimate r ggbeeswarm r ggbio r ggcorrplot r ggcyto r ggdendro r ggdist r ggextra r ggfittext r ggformula r ggfortify r ggfun r gggenes r gghalves r gghighlight r gginnards r ggmcmc r ggm r ggmsa r ggnetwork r ggnewscale r ggparty r r ggplotify r ggplot multistats r ggpmisc r ggpol r ggpp r ggprism r ggpubr r ggrastr r ggridges r ggsci r ggseqlogo r ggside r ggsignif r ggspavis r ggstance r ggstar r ggtext r ggthemes r ggtreeextra r ggtree r ggvis r gh r gigsea r gispa r gistr r gitcreds r gladiatox r glimma r r glmpca r glmsparsenet r globaloptions r globalseq r globals r globaltest r gmicr r gmodels r gmoviz r gmrp r gnorm r go db r goexpress r gofkernel r golem r googleauthr r googlecloudstorager r googledrive r r googlevis r goprofiles r goric r goseq r gostag r gostats r gothic r gotools r gparotation r gplots r gpls r gprege r r gprofiler r gptk r graddescent r r granulator r graphat r graphite r graphpac r greylistchip r gridbase r gridextra r gridgraphics r gridsvg r grimport r grmetrics r r grridge r gsalightning r gsa r gsar r gsca r gscreend r gseabase r gseabenchmarker r gsealm r gseamining r gsean r gsgalgor r gsri r gsubfn r gsvadata r gtable r gtrellis r guideseq r guitar r gviz r gwascat r gwasexacthw r gwastools r gwasurvivr r gwena r r hardhat r harmonicmeanp r hash r hca r hdinterval r r heatmaply r heatmaps r heatplus r helloranges r help r heplots r here r herper r hgnchelper r db r db r db r db r r db r hh r hiannotator r hicbricks r hiccompare r hiergwas r hierinf r highcharter r highr r hilbertcurve r hipathia r hippo r hireadsprocessor r hitc r hiver r hmdbquery r hmeasure r hms r homologene r homo sapiens r howmany r hpaanalyze r hpar r hpastainr r hpip r hsmmsinglecell r r htmltable r htmlutils r htmlwidgets r htqpcr r htscluster r htseqgenie r htsfilter r httpcode r httr r hubpub r humantranscriptomecompendium r hwriter r hybridmtest r hyperdraw r hypergeo r hypergraph r hyper r iaseq r iasva r ibh r r r ica r icens r icetea r icheck r ic infer r icluster r icnv r icobra r ics r ideal r ideoviz r idiogram r idpr r r idr r ids r igc r iggeneusage r igvr r ihw r db r r r illuminahumanmethylationepicanno r illuminahumanmethylationepicanno r illuminahumanmethylationepicmanifest r iloreg r imagehts r imas r imcrtools r imman r immunespacer r immunotation r impcdata r import r imputelcmd r inaparc r indeed r ineq r infercnv r infinityflow r informeasure r ini r inline r inpas r inpower r insight r inspect r intad r intansv r interaccircos r interactivecomplexheatmap r interactivedisplaybase r interactivedisplay r intercellar r interest r intergraph r interminer r intramirexplorer r intrinsicdimension r inum r invariantcausalprediction r investr r invgamma r ioniser r ipac r ipddb r ipo r irdisplay r irkernel r irr r isanalytics r isee r iseeu r isingfit r ismev r isobar r isocodes r isocorrectorgui r isocorrector r isogenegui r isogene r isomirs r isva r italicsdata r italics r iterativebma r iterativebmasurv r iterators r iterclust r iteremoval r itertools r ivas r ivygapse r iwtomics r jackstraw r janeaustenr r janitor r r jfa r jmvcore r jquerylib r kableextra r karyoploter r kboost r kcsmart r keggandmetacoredzpathwaysgeo r kegg db r keggdzpathwaysgeo r kegggraph r kegglincs r keggorthology r keggprofile r keggrest r keras r r kinswingr r kissde r klar r km ci r kmsurv r knitrbootstrap r knitr r knowseq r kodata r korpus lang en r korpus r kpeaks r kpmt r kutils r labeling r labelled r lace r laeken r lambda r r laplacesdemon r lapmix r lassopv r r latticeextra r lavaan r lava r lbe r ldblock r learnr r ledpred r lefser r leiden r les r lexicon r lfda r lgr r lifecycle r limmagui r lim r lineagepulse r linkhd r linprog r lintr r lionessr r lipidr r liquidassociation r lisaclust r lisreltor r listenv r lmdme r lmertest r r lobstahs r locfdr r r logger r logging r logicfs r lola r longitudinaldata r longitudinal r loomexperiment r loo r loose rock r lowmacaannotation r lowmaca r lpeadj r lpe r lpnet r lrbasedbi r lrcell r lsa r lsd r lsr r lumihumanall db r lumi r lungcanceracvssccgeo r lymphoseqdb r lymphoseq r r r r r macat r macorrplot r macsquantifyr r macsr r r madseq r mafdb r mafdb exac r mafdb exac nontcga r mafdb gnomadex r magar r mageckflute r magicaxis r magic r mai r mait r mantelcorr r mapkl r mapplots r mapredictdsc r mapscape r maptree r marray r maser r masigpro r maskbad r massarray r massir r mast r matchbox r matlab r matrixcalc r matrixgenerics r matrixmodels r matrixqcvis r matrixtests r matrix utils r maxlik r mbamethyl r mbased r mbcb r mbpcr r mbqn r mbttest r mcbiclust r mcbiopi r mcl r mcseadata r mcsea r mdp r mdqc r mdscore r mdts r meal r measurementerror cor r meat r meb r medips r mefa r megadepth r meigor r melissa r memes r memoise r mergeomics r meshdbi r meshes r meshr r meskit r metabocoreutils r metabolomicsworkbenchr r metabomxtr r metabosignal r metab r metacca r metacycle r metacyto r metadat r metafor r r metagene r metagenomeseq r metama r metamisc r metams r metaneighbor r metapone r metap r metaseq r metavizr r metavolcanor r metbrewer r metcirc r methcp r methinheritsim r methped r methreg r methrix r methtargetedngs r methylaid r methylcc r methylclockdata r methylgsa r methylinheritance r methylmix r methylscaper r methylseekr r methylsig r methylumi r metid r metnet r metr r mfuzz r mgfm r mgfr r mglm r mgm r mgsub r mgsz r mia r miasim r miaviz r michip r microbiomedasim r microbiomeexplorer r microbiomemarker r microbiome r microbiomeprofiler r microbiotaprocess r midashla r migsa r milor r mimager r mineica r minfi r minimumdistance r miniui r mi r mipp r miqc r mirage r mira r mirbaseconverter r mirbase db r mirbaseversions db r mircompdata r mircomp r mirintegrator r mirlab r mirmine r mirnameconverter r mirnapath r mirnatap db r mirnatap r mirtarrnaseq r r misctools r missforest r missmda r missmethyl r missrows r mistyr r mitch r mitools r mixomics r mixsmsn r mkmisc r mlapi r mle tools r mlinterfaces r mlmetrics r mlp r r r r r mlseq r mltools r r r mmuphin r moanin r moda r modcon r modeest r modelr r modeltools r modstrings r modules r mogamun r mogsa r moma r moments r monalisa r moonlightr r mosaiccore r mosim r motifbreakr r motifdb r motifstack r mousefm r mpfe r mpinet r mpm r mppa r mpranalyze r mpra r mqmetrics r msar r msbackendmassbank r msbackendmgf r msfeatures r msgbsr r msgfgui r msgfplus r msigdb r msigdbr r msimpute r msmseda r msmstests r msnid r msprep r mspurity r msqc r r msstatsconvert r msstatslobd r msstatsqcgui r msstatsqc r msstatssamplesize r msstatstmt r multcomp r multcompview r multiassayexperiment r multibac r multiclust r multicrispr r multidataset r multigsea r multihiccompare r multimed r multimir r multiomicsviz r multipanelfigure r multisight r mumin r mumosa r mungesumstats r munsell r muscat r musicatk r mus musculus r mustat r mutationalpatterns r mutoss r mvcclass r mvoutlier r mwastools r mygene r myvariant r mzid r nada r nadfinder r naivebayes r nanostringnctools r nanostringqcpro r nanotator r nanotube r naturalsort r nbamseq r nbclust r nbsplice r ncigraph r ncmisc r ncrnatools r ndexr r nearbynding r nebulosa r neighbornet r nempi r r netbiov r netboxr r netdx r netomics r netprior r netsam r netsmooth r networkcomparisontest r r networktoolbox r networktools r neuca r neuralnet r newwave r ngsreports r nhpoisson r nistunits r nlp r r nmi r nnlasso r nnls r nnnorm r nntensor r noiseq r nondetects r r norce r r normalyzerde r normqpcr r nortest r nozzle r nparc r npgsea r r nsprcomp r ntw r nucleosim r nucler r nullranges r numbers r numderiv r nxtirfdata r objectproperties r objectsignals r occugene r ocplus r oder r odseq r officer r oligoclasses r olingui r olin r omadb r r omiccircos r omicplotr r omicrexposome r omicslonda r omicspcadata r omicspca r omicsprint r omixer r omnipathr r onassisjavalibs r onassis r oncomix r oncoscore r onesense r onewaytests r ontologyindex r ontologyplot r ontoproc r opencpu r openprimer r openprimerui r openstats r operator tools r oppti r optextras r optimalflowdata r optimalflow r optimr r optimx r optparse r opweight r orcme r orderedlist r organismdbi r organism dplyr r org bt eg db r org dm eg db r org dr eg db r org hs eg db r orgmassspecr r org mm eg db r org rn eg db r org sc sgd db r oriclust r origami r orqa r orthogene r osat r oscope r osfr r otubase r outliers r packfinder r padma r padog r pagerank r paintmap r pairadise r paircompviz r paireddata r pairkat r r pak r palmerpenguins r pals r pandar r panelcn mops r panp r panr r panvizgenerator r paper r paradox r parallellogger r parallelly r parallelmap r parameters r parglms r parody r pasilla r pastecs r past r patchwork r r pathifier r pathnet r pathostat r pathrender r pathvar r pathview r pathwaypca r paxtoolsr r pbapply r pbkrtest r pcaexplorer r pcan r pcxndata r pcxn r pdatk r pdist r pd r peacoqc r peakpanther r peca r peco r pengls r pepsnmr r pepstat r pepxmltab r perfect r performance r periodicdna r permute r perturbatr r pfam db r pfp r pgca r phantasus r pharmacogx r ucsc r ucsc r phater r pheatmap r phemd r phenogeneranker r phenotest r phenstat r philr r phipdata r phosphonormalizer r phosphoricons r phosr r phylogram r phyloprofile r phyloseq r piano r pickgene r pigengene r pillar r r pipecomp r pipeframe r pi r pixmap r pkgbuild r pkgconfig r pkgdeptools r pkgdown r pkgload r pkgmaker r planet r plethy r plgem r r plogr r r plotgrouper r plotly r plotmo r plotrix r plotroc r plpe r plsgenomics r pls r plsvarsel r plyranges r pmm r pmp r podcall r pogos r poiclaclu r poilog r polychrome r polyester r polynom r polyphen hsapiens r poma r poorman r posterior r potra r powerlaw r powertcr r powsc r ppclust r ppcor r ppinfer r ppistats r prabclus r pracma r praise r pram r prebs r precisetad r precisiontrialdrawer r preda r preseqr r prettydoc r prettyunits r primirtss r prince r proactiv r probamr r probatch r process r procoil r proda r profilemodel r profileplyr r profmem r proftools r progeny r progress r progressr r projectr r prolocgui r promise r proper r props r prostar r proteinprofiles r proteodisco r proteomicsannotationhubdata r proteomm r protgenerics r proto r protr r prroc r pscbs r psea r psicquic r psych r r pubscore r pulsedsilac r purecn r pvac r pvca r pvclust r pviz r pwmenrich r pwomics r pwrewas data r pwrewas r pwr r pzfx r qcc r qcmetrics r qdapregex r qdaptools r qdnaseq r qfeatures r qlcmatrix r qpcrnorm r qplexanalyzer r qqman r qsmooth r qsutils r qtlizer r quantiseqr r quantmod r quantro r quantsmooth r quartpac r questionr r qusage r qvalue r qvcalc r r r r r r r radiant data r radiogx r rafalib r raggedexperiment r rainbow r rain r ramr r randomcolor r randomwalkrestartmh r randpack r randrotation r randtests r rankprod r rapiclient r rapportools r rarevariantvis r rarpack r rastervis r rawrr r r rbiopaxparser r rbm r rbokeh r rbsurv r r cache r rcade r rcapture r rcaspar r rcas r rcdklibs r rcdk r rcellminerdata r rcellminer r rcgh r rcgmin r rcircos r rcistarget r rclipboard r rcmdcheck r rcmdrmisc r rcm r rcolorbrewer r rcompanion r rcpi r rcppdate r rcppprogress r rcppthread r rcsl r rcwlpipelines r rcwl r rcx r r rcyjs r r devices r rdgidb r rdpack r rdrtoolbox r reactable r r reactome db r r reactomegsa r reactomepa r reactr r readbitmap r reader r readjdx r readqpcr r rearrr r rebook r rebus base r rebus datetimes r rebus numbers r rebus r rebus unicode r receptloss r recipes r reconsi r r recountmethylation r recount r recoup r reder r redseq r reffreeewas r refmanager r refplus r regenrich r regioner r regionreport r registry r regsplice r regutools r relations r reldist r relimp r r rematch r remotes r remp r rentrez r renv r repmis r repo r reportingtools r report r reportroc r reportr r reprex r repr r repviz r reqon r residualmatrix r restfulsedata r restfulse r restriktor r rex r rexposome r rfarm r r filesets r rfoc r rgalaxy r rgenometracksdata r rgenometracks r rgmqllib r rgmql r r rgreat r rgsea r rgsepd r rhandsontable r r r huge r ribocrypt r riboprofiling r ribor r riboseqr r ribosomeprofilingqc r rimmport r rintrojs r rio r ripat r risa r rismed r ritandata r ritan r river r rlab r rlassocox r rlhub r rlist r rlmm r rlseq r rmagic r rmagpie r rmallow r rmarkdown r rmassbank r r matlab r rmdformats r rmelting r rmeta r r r rmio r rmir hs mirna r rmir r rmisc r rmspc r rmtstat r rnaagecalc r rnaeditr r rnainteract r rnamodr alkanilineseq r rnamodr ml r rnamodr r rnamodr ribomethseq r rnasense r rnaseqcomp r rnaseqpower r rnaseqr r rnaseqsamplesizedata r rnbeads r rnbeads r rnexml r rngtools r rnits r roar r robustrankaggreg r rocit r rockchalk r rocpai r rocr r roi r roi plugin lpsolve r rols r rontotools r r oo r ropls r roseq r rpa r rpart plot r rpdb r rpmg r rpmm r rprojroot r rpsixml r rpx r rqt r rrdp r rrho r r rsp r rrvgo r rsample r rscudo r rsemmed r rslurm r rsm r rsnps r rsolnp r rspc r rsq r rstantools r rstatix r rstudioapi r rsvd r rsvgtipsdevice r rsvsim r rsweep r rtca r rtcga r rtcgatoolbox r rtensor r rtnduals r rtn r rtnsurvival r rtopper r rtpca r rtrm r rtrmui r runit r r utils r ruvcorr r ruvnormalizedata r ruvnormalize r ruvseq r rversions r rvest r rvmmin r rvs r rwekajars r rweka r rwikipathways r r safe r sagenhaft r sampleclassifier r sampling r sampsurf r sandwich r sangeranalyser r sangerseqr r sarks r saturn r saver r savr r sbgnview data r sbgnview r sbmlr r r scaledmatrix r scales r scalign r scanmirapp r scanmirdata r scanmir r scannotatr r scan upc r scanvis r scatedata r scate r scater r scatterhatch r scatterpie r r scbfa r scbn r scclassifr r scclassify r scdataviz r scdblfinder r scds r scfa r scfeaturefilter r schex r schot r scico r sciplot r scisi r scmerge r scmeth r scnorm r scone r sconify r scope r scoreinvhap r scpca r scp r screclassify r screcover r screpertoire r scrime r scrnaseq r scruff r scry r sctensor r sctgif r scthi r sctreeviz r sdams r sechm r segmented r segmenter r segmentseq r selectr r selex r semdist r semisup r semplot r semtools r sendmailr r sepira r data r r seqcat r seqcna annot r seqcombo r seqgate r seqgsea r seqlogo r seqmagick r seqpattern r seqsetvis r seqsqc r seqvartools r servr r sesamedata r sesame r sessioninfo r setools r setrng r settings r sevenbridges r sevenc r sfsmisc r sgseq r sgt r shades r shadowtext r shape r shinyace r shinyalert r shinybs r shinybusy r shinycssloaders r shinycustomloader r shinydashboard r shinydashboardplus r shinyepico r shinyfeedback r shinyfiles r shinyheatmaply r shinyhelper r shinyjqui r shinyjs r shinymatrix r shinymethyl r shinypanel r shiny r shinyscreenshot r shinystan r shinythemes r shinytoastr r shinytree r shinywidgets r siamcat r sift hsapiens r sigcheck r sigclust r sigfeature r sigfuge r siggenes r sights r sigspack r sigsquared r simat r simbindprofiles r simffpe r similarpeak r simpintlists r simplecache r simplifyenrichment r singlecellexperiment r singlecellsignalr r singlecelltk r singlemoleculefootprinting r singscore r sispa r sitadela r sizepower r sjlabelled r sjmisc r skewr r skmeans r slgi r slingshot r slinky r slqpcr r smatr r smite r smoother r smoothie r smoothwin r smvar r snageedata r snagee r snakecase r snapcount r snifter r snm r snowfall r snow r snpediar r snphood r sn r snplocs hsapiens r snplocs hsapiens r soggi r sojourner r somaticsignatures r sombrero r somnibus r soniclength r sortable r soupx r spacepac r spacetime r spaniel r sparql r sparrow r sparsebn r sparsebnutils r sparsedossa r sparsemvn r sparsenetgls r sparsepca r sparsesignatures r spatest r spatialcpie r spatialdecon r spatialde r spatialexperiment r spatialheatmap r spatstat data r spatzie r speaq r specl r specond r spectraltad r spectra r speedglm r spem r spia r spicyr r spidermir r spikeli r spiky r spktools r splatter r splicingfactory r splicinggraphs r splinetimer r splinter r splitstackshape r splots r sponge r spqn r spscomps r spsimseq r spsutil r sqldataframe r sqldf r squadd r squarem r squash r sradb r srgnet r sscore r sscu r sseq r ssize r sspaths r ssrch r ssviz r stabledist r stabs r stager r starank r starbiotrek r startupmsg r statebins r stategra r stattarget r stemhypoxia r stepnorm r stopwords r strandcheckr r stringdb r stringr r r struct r structtoolbox r structuralvariantannotation r styler r subcellbarcode r subseq r subspace r summarizedbenchmark r summarizedexperiment r summarytools r summix r superheat r superlearner r supersigs r suprahex r surfaltr r survey r survivalroc r survivalsvm r survminer r survmisc r survtype r sushi r svanumt r svaretro r svdialogs r svgpanzoom r svgui r svmisc r svunit r swamp r r swathxtend r swfdr r swimr r switchde r sylly en r sylly r synapsis r synapter r synergyfinder r synextend r synlet r synmut r systempiperdata r systempiper r systempipeshiny r systempipetools r syuzhet r tadcompare r tanggle r tapseq r targetdecoy r target r targetscore r tarifx r tarseqqc r tbsignatureprofiler r r tcc r tcgabiolinksgui data r tcgabiolinksgui r tcgabiolinks r tcgautils r r tcseq r tdaracne r teachingdemos r tensorflow r tensor r tenxpbmcdata r tenxplore r teqc r tester r textclean r textshape r textstem r tfarm r tfautograph r tfea chip r tfhaz r tfisher r tfruns r tfutils r th data r threejs r tictoc r tidybayes r tidybulk r tidysinglecellexperiment r tidysummarizedexperiment r tidytext r tidytree r tidyverse r timecourse r timedate r timeomics r timescape r timeseriesexperiment r timeseries r timirgen r tin r tinytex r tippy r tissueenrich r tkwidgets r tloh r tmixclust r tnbc cms r tnet r tnt r toast r tomoda r topconfects r topdownr r topgo r toster r toxicogx r r tpp r tracktables r tractor base r tradeseq r trajectorygeometry r trajectoryutils r transcriptogramer r transcriptr r transformgampoi r translatome r r trare r traser r traviz r treeandleaf r treeio r treekor r treemap r treesummarizedexperiment r trena r trendy r tress r tricycle r trio r tripr r trnadbimport r trna r trnascanimport r tronco r truncdist r trust r tsa r tscan r tsne r tsrchitect r ttgsea r ttmap r ttservice r tvtb r twoddpcr r txcutr r txdb celegans ucsc ensgene r txdb dmelanogaster ucsc ensgene r txdb dmelanogaster ucsc ensgene r txdb hsapiens ucsc knowngene r txdb hsapiens ucsc knowngene r txdb hsapiens ucsc knowngene r txdb mmusculus ucsc knowngene r txdb mmusculus ucsc knowngene r txdb rnorvegicus ucsc ensgene r tximeta r tximport r typeinfo r ucell r udapi r ularcirc r r uncoverapplib r undo r unifiedwmwqpcr r uniprot ws r uniqtag r uniquorn r upsetr r urlchecker r usethis r usort r vaexprs r vam r varcon r varfrompdb r varhandle r variancepartition r variantexperiment r varianttools r varselrf r vasp r vbmp r vcdextra r vcd r vcfarray r velociraptor r venndetail r venndiagram r venn r verification r verso r vidger r vioplot r viper r vipor r viridislite r viridis r viseago r visnetwork r visse r vplotr r vtpnet r vulcan r waffle r waiter r waldo r watermelon r wavcluster r weaver r webbioc r webchem r webshot r weibullness r weightr r weitrix r wesanderson r wheatmap r whisker r widgettools r wiggleplotr r withr r r wpm r wppi r wrench r writexls r xcir r xeva r xina r xlsxjars r xlsx r xmapbridge r r xmlparsedata r xopen r xtable r xtrasnplocs hsapiens r yamss r yapsa r yarn r yeastcc r yeastexpdata r yesno r yulab utils r zcompositions r zeallot r zellkonverter r zfpkm r zinbwave | 1 |
231,204 | 18,752,740,954 | IssuesEvent | 2021-11-05 05:57:07 | NixOS/nixpkgs | https://api.github.com/repos/NixOS/nixpkgs | closed | nixosTests.pt2-clone and others hang | 0.kind: bug 0.kind: regression 6.topic: testing | ### Describe the bug
`pt2-clone.tests`/`nixosTests.pt2-clone`, `nixosTests.ft2-clone`, `nixosTests.shattered-pixel-dungeon`, `nixosTests.xterm` (and probably others) hangs:
```
[...]
machine # [ 25.071572] systemd[952]: Reached target Current graphical user session.
(27.39 seconds)
machine # [ 26.830709] systemd-udevd[687]: controlC0: Process '/nix/store/i1jkln6xh32aw11xmjk4p8f14cpzszjz-alsa-utils-1.2.5.1/sbin/alsactl restore 0' failed with exit code 99.
machine # [ 26.889435] systemd[1]: Reached target Sound Card.
machine # [ 26.918075] systemd[952]: Reached target Sound Card.
^Cerror: interrupted by the user
```
Full log: [pt2-clone.tests.txt](https://github.com/NixOS/nixpkgs/files/7474917/pt2-clone.tests.txt)
### Steps To Reproduce
`nix-build -A pt2-clone.tests`
### Expected behavior
```
[...]
machine: must succeed: xwininfo -root -tree | sed 's/.*0x[0-9a-f]* \"\([^\"]*\)\".*/\1/; t; d'
(0.08 seconds)
(3.31 seconds)
machine: must succeed: sleep 5
(5.10 seconds)
machine: sending monitor command: screendump /build/tmp2_cesjz4/ppm
machine: making screenshot /nix/store/yscyb0ymgmn8nshkb260gmqca05krsg0-vm-test-run-pt2-clone/screen.png
machine: sending monitor command: screendump /nix/store/yscyb0ymgmn8nshkb260gmqca05krsg0-vm-test-run-pt2-clone/screen.png.ppm
(0.15 seconds)
(62.30 seconds)
test script finished in 62.45s
cleanup
kill machine (pid 8)
machine # qemu-system-x86_64: terminating on signal 15 from pid 6 (/nix/store/8dxxjbiyxwkvh53q5kh6nydla2anacgi-python3-3.9.6/bin/python3)
(0.09 seconds)
/nix/store/yscyb0ymgmn8nshkb260gmqca05krsg0-vm-test-run-pt2-clone
```
### Additional context
I ran a bisect and it looks like 1640359f333d8af40bf1f3e7961943ea04c6d1a1 (PR #142747) is the cause
```
1640359f333d8af40bf1f3e7961943ea04c6d1a1 is the first bad commit
commit 1640359f333d8af40bf1f3e7961943ea04c6d1a1
Author: Janne Heß <janne@hess.ooo>
Date: Sun Oct 24 15:46:45 2021 +0200
nixos/test-runner: Fix execute() flakiness
Instead of using the magic string, we now just base64-encode everything
and check for a newline.
.../development/writing-nixos-tests.section.md | 5 +++
.../development/writing-nixos-tests.section.xml | 8 ++++-
nixos/lib/test-driver/test-driver.py | 40 +++++++++++++++-------
nixos/tests/hibernate.nix | 4 +--
nixos/tests/kexec.nix | 2 +-
5 files changed, 43 insertions(+), 16 deletions(-)
```
### Notify maintainers
Author of the above commit: @dasJ
### Metadata
Please run `nix-shell -p nix-info --run "nix-info -m"` and paste the result.
```console
[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
- system: `"x86_64-linux"`
- host os: `Linux 5.10.48, NixOS, 21.05.1412.cf59fbd5396 (Okapi)`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.4pre20210601_5985b8b`
- channels(root): `"nixos-21.05.1412.cf59fbd5396"`
- channels(fgaz): `"nixpkgs-21.11pre326821.509d236edf0, stable-20.09.4407.1c1f5649bb9"`
- nixpkgs: `/home/fgaz/.nix-defexpr/channels/nixpkgs`
```
Maintainer information:
```yaml
# a list of nixpkgs attributes affected by the problem
attribute:
- nixosTests.pt2-clone
- nixosTests.ft2-clone
- nixosTests.shattered-pixel-dungeon
- nixosTests.xterm
# a list of nixos modules affected by the problem
module:
```
| 1.0 | nixosTests.pt2-clone and others hang - ### Describe the bug
`pt2-clone.tests`/`nixosTests.pt2-clone`, `nixosTests.ft2-clone`, `nixosTests.shattered-pixel-dungeon`, `nixosTests.xterm` (and probably others) hangs:
```
[...]
machine # [ 25.071572] systemd[952]: Reached target Current graphical user session.
(27.39 seconds)
machine # [ 26.830709] systemd-udevd[687]: controlC0: Process '/nix/store/i1jkln6xh32aw11xmjk4p8f14cpzszjz-alsa-utils-1.2.5.1/sbin/alsactl restore 0' failed with exit code 99.
machine # [ 26.889435] systemd[1]: Reached target Sound Card.
machine # [ 26.918075] systemd[952]: Reached target Sound Card.
^Cerror: interrupted by the user
```
Full log: [pt2-clone.tests.txt](https://github.com/NixOS/nixpkgs/files/7474917/pt2-clone.tests.txt)
### Steps To Reproduce
`nix-build -A pt2-clone.tests`
### Expected behavior
```
[...]
machine: must succeed: xwininfo -root -tree | sed 's/.*0x[0-9a-f]* \"\([^\"]*\)\".*/\1/; t; d'
(0.08 seconds)
(3.31 seconds)
machine: must succeed: sleep 5
(5.10 seconds)
machine: sending monitor command: screendump /build/tmp2_cesjz4/ppm
machine: making screenshot /nix/store/yscyb0ymgmn8nshkb260gmqca05krsg0-vm-test-run-pt2-clone/screen.png
machine: sending monitor command: screendump /nix/store/yscyb0ymgmn8nshkb260gmqca05krsg0-vm-test-run-pt2-clone/screen.png.ppm
(0.15 seconds)
(62.30 seconds)
test script finished in 62.45s
cleanup
kill machine (pid 8)
machine # qemu-system-x86_64: terminating on signal 15 from pid 6 (/nix/store/8dxxjbiyxwkvh53q5kh6nydla2anacgi-python3-3.9.6/bin/python3)
(0.09 seconds)
/nix/store/yscyb0ymgmn8nshkb260gmqca05krsg0-vm-test-run-pt2-clone
```
### Additional context
I ran a bisect and it looks like 1640359f333d8af40bf1f3e7961943ea04c6d1a1 (PR #142747) is the cause
```
1640359f333d8af40bf1f3e7961943ea04c6d1a1 is the first bad commit
commit 1640359f333d8af40bf1f3e7961943ea04c6d1a1
Author: Janne Heß <janne@hess.ooo>
Date: Sun Oct 24 15:46:45 2021 +0200
nixos/test-runner: Fix execute() flakiness
Instead of using the magic string, we now just base64-encode everything
and check for a newline.
.../development/writing-nixos-tests.section.md | 5 +++
.../development/writing-nixos-tests.section.xml | 8 ++++-
nixos/lib/test-driver/test-driver.py | 40 +++++++++++++++-------
nixos/tests/hibernate.nix | 4 +--
nixos/tests/kexec.nix | 2 +-
5 files changed, 43 insertions(+), 16 deletions(-)
```
### Notify maintainers
Author of the above commit: @dasJ
### Metadata
Please run `nix-shell -p nix-info --run "nix-info -m"` and paste the result.
```console
[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
- system: `"x86_64-linux"`
- host os: `Linux 5.10.48, NixOS, 21.05.1412.cf59fbd5396 (Okapi)`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.4pre20210601_5985b8b`
- channels(root): `"nixos-21.05.1412.cf59fbd5396"`
- channels(fgaz): `"nixpkgs-21.11pre326821.509d236edf0, stable-20.09.4407.1c1f5649bb9"`
- nixpkgs: `/home/fgaz/.nix-defexpr/channels/nixpkgs`
```
Maintainer information:
```yaml
# a list of nixpkgs attributes affected by the problem
attribute:
- nixosTests.pt2-clone
- nixosTests.ft2-clone
- nixosTests.shattered-pixel-dungeon
- nixosTests.xterm
# a list of nixos modules affected by the problem
module:
```
| non_main | nixostests clone and others hang describe the bug clone tests nixostests clone nixostests clone nixostests shattered pixel dungeon nixostests xterm and probably others hangs machine systemd reached target current graphical user session seconds machine systemd udevd process nix store alsa utils sbin alsactl restore failed with exit code machine systemd reached target sound card machine systemd reached target sound card cerror interrupted by the user full log steps to reproduce nix build a clone tests expected behavior machine must succeed xwininfo root tree sed s t d seconds seconds machine must succeed sleep seconds machine sending monitor command screendump build ppm machine making screenshot nix store vm test run clone screen png machine sending monitor command screendump nix store vm test run clone screen png ppm seconds seconds test script finished in cleanup kill machine pid machine qemu system terminating on signal from pid nix store bin seconds nix store vm test run clone additional context i ran a bisect and it looks like pr is the cause is the first bad commit commit author janne heß date sun oct nixos test runner fix execute flakiness instead of using the magic string we now just encode everything and check for a newline development writing nixos tests section md development writing nixos tests section xml nixos lib test driver test driver py nixos tests hibernate nix nixos tests kexec nix files changed insertions deletions notify maintainers author of the above commit dasj metadata please run nix shell p nix info run nix info m and paste the result console nix shell p nix info run nix info m system linux host os linux nixos okapi multi user yes sandbox yes version nix env nix channels root nixos channels fgaz nixpkgs stable nixpkgs home fgaz nix defexpr channels nixpkgs maintainer information yaml a list of nixpkgs attributes affected by the problem attribute nixostests clone nixostests clone nixostests shattered pixel dungeon nixostests xterm a list of nixos modules affected by the problem module | 0 |
64,514 | 7,809,039,944 | IssuesEvent | 2018-06-11 22:22:55 | dracidoupe/graveyard | https://api.github.com/repos/dracidoupe/graveyard | opened | Redo stars as SVGs | designer needed help wanted | Rating stars have the g'old feeling...that doesn't scale to new monitors. Also, GIFs.
Redo those as scalable SVGs. | 1.0 | Redo stars as SVGs - Rating stars have the g'old feeling...that doesn't scale to new monitors. Also, GIFs.
Redo those as scalable SVGs. | non_main | redo stars as svgs rating stars have the g old feeling that doesn t scale to new monitors also gifs redo those as scalable svgs | 0 |
688 | 4,234,488,281 | IssuesEvent | 2016-07-05 12:09:40 | Particular/NServiceBus.AzureServiceBus | https://api.github.com/repos/Particular/NServiceBus.AzureServiceBus | closed | Namespace naming Vs Multiple Namespaces | State: In Progress - Maintainer Prio Type: Discussion | 'Multi namespace' is used for 2 scenario's
* Targetted sending (from an endpoint in a namespace to one in another)
* partitioning (2 endpoints communicating over a set of namespaces)
Combining namespace naming with the multi namespace seems to lead to a few issues in this context:
* endpoints in different namespaces cannot talk to each other anymore because the namespace name 'default' (coming from the connectionstring extension method) has a different mapping for both.
* namespaces registered are considered for partitioning only, so direct sending from an endpoint in namespace1 to an endpoint in namespace2 is no longer possible.
Changes required (still under analysis by @yvesgoeleven):
**Connectionstring to addnamespace mapping:**
- [x] default namespace name should be settable.
- [x] connectionstring should not be required so the addnamespace api can be used for all config.
**AddNamespace API:**
- [x] some kind of usage indicator should be introduced to indicate whether a registered namespaces is for targetted sending only, or can be used in the implicit model (with or without @destination in the address) for send or receive.
**Dispatcher changes (probably in impl of ITopologySectionManager):**
- *Option 1*: When a targetted send (or publish) is requested, it should bypass the partitioning logic so that the message is sent to the targetted namespace.
- *Option 2*: Change the PartitioningIntent to include info about the targetted namespace, so that partitioning logic can use it in it's logic (to choose it in our impl's, but user could than decide for custom strategies).
**Partitioning Strategy Changes:**
- [x] The validation logic of partitioning strategies should be changed to take into account / ignore namespaces registered for targetted sending.
---
Original issue by @SeanFeldman
Going through [configuration API for secured connection strings](http://docs.particular.net/nservicebus/azure-service-bus/securing-connection-strings), as a reader I could not find any information how
`.ConnectionString("...");` from the [transport getting started doco](http://docs.particular.net/nservicebus/azure-service-bus/#setting-the-connection-string) relates to
```c#
var namespacePartitioning = transport.NamespacePartitioning();
namespacePartitioning.UseStrategy<SingleNamespacePartitioning>();
namespacePartitioning.AddNamespace("namespaceName", "connString");
```
Questions I had:
1. What's the relationship between `.ConnectionString();` and `.AddNamespace()`? If `.AddNamespace()` is used, do I still need to provide `.ConnectionString();`? If `default` namespace derived from a single registered namespace with a name?
1. Should documentation first explain `.ConnectionString();` and that it's mapped automatically to the `default` name, and then describe `.AddNamespace()`?
/cc @melkio | True | Namespace naming Vs Multiple Namespaces - 'Multi namespace' is used for 2 scenario's
* Targetted sending (from an endpoint in a namespace to one in another)
* partitioning (2 endpoints communicating over a set of namespaces)
Combining namespace naming with the multi namespace seems to lead to a few issues in this context:
* endpoints in different namespaces cannot talk to each other anymore because the namespace name 'default' (coming from the connectionstring extension method) has a different mapping for both.
* namespaces registered are considered for partitioning only, so direct sending from an endpoint in namespace1 to an endpoint in namespace2 is no longer possible.
Changes required (still under analysis by @yvesgoeleven):
**Connectionstring to addnamespace mapping:**
- [x] default namespace name should be settable.
- [x] connectionstring should not be required so the addnamespace api can be used for all config.
**AddNamespace API:**
- [x] some kind of usage indicator should be introduced to indicate whether a registered namespaces is for targetted sending only, or can be used in the implicit model (with or without @destination in the address) for send or receive.
**Dispatcher changes (probably in impl of ITopologySectionManager):**
- *Option 1*: When a targetted send (or publish) is requested, it should bypass the partitioning logic so that the message is sent to the targetted namespace.
- *Option 2*: Change the PartitioningIntent to include info about the targetted namespace, so that partitioning logic can use it in it's logic (to choose it in our impl's, but user could than decide for custom strategies).
**Partitioning Strategy Changes:**
- [x] The validation logic of partitioning strategies should be changed to take into account / ignore namespaces registered for targetted sending.
---
Original issue by @SeanFeldman
Going through [configuration API for secured connection strings](http://docs.particular.net/nservicebus/azure-service-bus/securing-connection-strings), as a reader I could not find any information how
`.ConnectionString("...");` from the [transport getting started doco](http://docs.particular.net/nservicebus/azure-service-bus/#setting-the-connection-string) relates to
```c#
var namespacePartitioning = transport.NamespacePartitioning();
namespacePartitioning.UseStrategy<SingleNamespacePartitioning>();
namespacePartitioning.AddNamespace("namespaceName", "connString");
```
Questions I had:
1. What's the relationship between `.ConnectionString();` and `.AddNamespace()`? If `.AddNamespace()` is used, do I still need to provide `.ConnectionString();`? If `default` namespace derived from a single registered namespace with a name?
1. Should documentation first explain `.ConnectionString();` and that it's mapped automatically to the `default` name, and then describe `.AddNamespace()`?
/cc @melkio | main | namespace naming vs multiple namespaces multi namespace is used for scenario s targetted sending from an endpoint in a namespace to one in another partitioning endpoints communicating over a set of namespaces combining namespace naming with the multi namespace seems to lead to a few issues in this context endpoints in different namespaces cannot talk to each other anymore because the namespace name default coming from the connectionstring extension method has a different mapping for both namespaces registered are considered for partitioning only so direct sending from an endpoint in to an endpoint in is no longer possible changes required still under analysis by yvesgoeleven connectionstring to addnamespace mapping default namespace name should be settable connectionstring should not be required so the addnamespace api can be used for all config addnamespace api some kind of usage indicator should be introduced to indicate whether a registered namespaces is for targetted sending only or can be used in the implicit model with or without destination in the address for send or receive dispatcher changes probably in impl of itopologysectionmanager option when a targetted send or publish is requested it should bypass the partitioning logic so that the message is sent to the targetted namespace option change the partitioningintent to include info about the targetted namespace so that partitioning logic can use it in it s logic to choose it in our impl s but user could than decide for custom strategies partitioning strategy changes the validation logic of partitioning strategies should be changed to take into account ignore namespaces registered for targetted sending original issue by seanfeldman going through as a reader i could not find any information how connectionstring from the relates to c var namespacepartitioning transport namespacepartitioning namespacepartitioning usestrategy namespacepartitioning addnamespace namespacename connstring questions i had what s the relationship between connectionstring and addnamespace if addnamespace is used do i still need to provide connectionstring if default namespace derived from a single registered namespace with a name should documentation first explain connectionstring and that it s mapped automatically to the default name and then describe addnamespace cc melkio | 1 |
166,789 | 6,311,476,120 | IssuesEvent | 2017-07-23 19:52:26 | gregswindle/generator-apiproxy | https://api.github.com/repos/gregswindle/generator-apiproxy | closed | feat(update-notifications): notify when there are updates to generator-apiproxy | Points: 1 Priority: Low Status: Available Type: Chore Type: Feature | ## User story
As an engineer,
I want to be notified whenever there are updates available for `generator-apiproxy`
In order to install new features and address potential vulnerabilities.
## Acceptance criteria
- [x] [`update-notifier`](https://github.com/yeoman/update-notifier) informs users about updates
<!-- DEFECTS -->
<!--- If you're describing a bug, tell us what should happen -->
<!-- ## Expected Behavior -->
<!-- ## Current Behavior -->
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
<!-- ## Possible Solution -->
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
<!-- ## Steps to Reproduce (for bugs) -->
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
<!-- 1.
2.
3.
4. -->
<!-- ## Context -->
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
<!-- ## Your Environment -->
<!--- Include as many relevant details about the environment you experienced the Type: Defect in -->
<!-- * Version used:
* Environment name and version (e.g. Chrome 39, node.js 5.4):
* Operating System and version (desktop or mobile):
* Link to your project: -->
<!-- DECISION LOG -->
<!-- decision-log
## Decision Log
| Category | |
|:-----------------|:-------------------------------|
| **Status** | TODO \| IN-PROGRESS \| DECIDED |
| **Stakeholders** | |
| **Outcome** | |
| **Due date** | DD, MMM, dd, yyyy |
| **Owner** | |
## Background, motivations, and goals
## Actions
decision-log-end -->
| 1.0 | feat(update-notifications): notify when there are updates to generator-apiproxy - ## User story
As an engineer,
I want to be notified whenever there are updates available for `generator-apiproxy`
In order to install new features and address potential vulnerabilities.
## Acceptance criteria
- [x] [`update-notifier`](https://github.com/yeoman/update-notifier) informs users about updates
<!-- DEFECTS -->
<!--- If you're describing a bug, tell us what should happen -->
<!-- ## Expected Behavior -->
<!-- ## Current Behavior -->
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
<!-- ## Possible Solution -->
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
<!-- ## Steps to Reproduce (for bugs) -->
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
<!-- 1.
2.
3.
4. -->
<!-- ## Context -->
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
<!-- ## Your Environment -->
<!--- Include as many relevant details about the environment you experienced the Type: Defect in -->
<!-- * Version used:
* Environment name and version (e.g. Chrome 39, node.js 5.4):
* Operating System and version (desktop or mobile):
* Link to your project: -->
<!-- DECISION LOG -->
<!-- decision-log
## Decision Log
| Category | |
|:-----------------|:-------------------------------|
| **Status** | TODO \| IN-PROGRESS \| DECIDED |
| **Stakeholders** | |
| **Outcome** | |
| **Due date** | DD, MMM, dd, yyyy |
| **Owner** | |
## Background, motivations, and goals
## Actions
decision-log-end -->
| non_main | feat update notifications notify when there are updates to generator apiproxy user story as an engineer i want to be notified whenever there are updates available for generator apiproxy in order to install new features and address potential vulnerabilities acceptance criteria informs users about updates version used environment name and version e g chrome node js operating system and version desktop or mobile link to your project decision log decision log category status todo in progress decided stakeholders outcome due date dd mmm dd yyyy owner background motivations and goals actions decision log end | 0 |
3,382 | 13,100,589,760 | IssuesEvent | 2020-08-04 01:02:26 | GraphQLSwift/Graphiti | https://api.github.com/repos/GraphQLSwift/Graphiti | opened | Fix "method_complexity" issue in Sources/Graphiti/Definition/Reflection.swift | Improve Maintainability | Function `name` has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
https://codeclimate.com/github/GraphQLSwift/Graphiti/Sources/Graphiti/Definition/Reflection.swift#issue_5f28b20e356d980001000037 | True | Fix "method_complexity" issue in Sources/Graphiti/Definition/Reflection.swift - Function `name` has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
https://codeclimate.com/github/GraphQLSwift/Graphiti/Sources/Graphiti/Definition/Reflection.swift#issue_5f28b20e356d980001000037 | main | fix method complexity issue in sources graphiti definition reflection swift function name has a cognitive complexity of exceeds allowed consider refactoring | 1 |
32,369 | 7,531,103,790 | IssuesEvent | 2018-04-15 00:39:54 | dahall/TaskScheduler | https://api.github.com/repos/dahall/TaskScheduler | closed | "StartWhenAvailable" not checked in Scheduler | codeplex-disc | Hey there,
First of all, thanks for making this Wrapper. It's amazing.
I need to change desktop background every day based on time user picks. If machine is not working I need this task to start after user logs on at some point.
This is the code that I have at the moment :
using (TaskService taskSer = new TaskService())
{
TaskDefinition td = taskSer.NewTask();
DailyTrigger dt = new DailyTrigger();
dt.StartBoundary = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, startHour.Hours, startHour.Minutes, startHour.Seconds);
taskSer.AddTask("Task", dt, new ExecAction(execPath));
td.Settings.StartWhenAvailable = true;
td.Settings.Compatibility = TaskCompatibility.V2_3;
td.Settings.RestartInterval = TimeSpan.Zero;
}
However, when I go to Task Scheduler, Settings tab, checkbox for starting the task after missing it, is not checked.
How can I set "StartWhenAvailable" checkbox marked through the code ?
I did check Discussions and only found [one](https://taskscheduler.codeplex.com/discussions/398027) topic which covered this question, but it doesn't apply to me as I tried already to set RestartInterval to TimeInterval.Zero. I need this task to be infinite, so I'm not sure how would I set EndBoundry in that case ?
Thanks,
S. M.
Originally posted: 2016-04-07T16:28:58 | 1.0 | "StartWhenAvailable" not checked in Scheduler - Hey there,
First of all, thanks for making this Wrapper. It's amazing.
I need to change desktop background every day based on time user picks. If machine is not working I need this task to start after user logs on at some point.
This is the code that I have at the moment :
using (TaskService taskSer = new TaskService())
{
TaskDefinition td = taskSer.NewTask();
DailyTrigger dt = new DailyTrigger();
dt.StartBoundary = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, startHour.Hours, startHour.Minutes, startHour.Seconds);
taskSer.AddTask("Task", dt, new ExecAction(execPath));
td.Settings.StartWhenAvailable = true;
td.Settings.Compatibility = TaskCompatibility.V2_3;
td.Settings.RestartInterval = TimeSpan.Zero;
}
However, when I go to Task Scheduler, Settings tab, checkbox for starting the task after missing it, is not checked.
How can I set "StartWhenAvailable" checkbox marked through the code ?
I did check Discussions and only found [one](https://taskscheduler.codeplex.com/discussions/398027) topic which covered this question, but it doesn't apply to me as I tried already to set RestartInterval to TimeInterval.Zero. I need this task to be infinite, so I'm not sure how would I set EndBoundry in that case ?
Thanks,
S. M.
Originally posted: 2016-04-07T16:28:58 | non_main | startwhenavailable not checked in scheduler hey there first of all thanks for making this wrapper it s amazing i need to change desktop background every day based on time user picks if machine is not working i need this task to start after user logs on at some point this is the code that i have at the moment using taskservice taskser new taskservice taskdefinition td taskser newtask dailytrigger dt new dailytrigger dt startboundary new datetime datetime now year datetime now month datetime now day starthour hours starthour minutes starthour seconds taskser addtask quot task quot dt new execaction execpath td settings startwhenavailable true td settings compatibility taskcompatibility td settings restartinterval timespan zero however when i go to task scheduler settings tab checkbox for starting the task after missing it is not checked how can i set startwhenavailable checkbox marked through the code i did check discussions and only found topic which covered this question but it doesn t apply to me as i tried already to set restartinterval to timeinterval zero i need this task to be infinite so i m not sure how would i set endboundry in that case thanks s m originally posted | 0 |
256,335 | 19,407,737,444 | IssuesEvent | 2021-12-20 04:46:15 | ubsuny/CP21_final_project_SA | https://api.github.com/repos/ubsuny/CP21_final_project_SA | closed | Introduction | documentation | The detailed description of the task 1 , which includes the following :
-Introduction; What, Why
- Physics
- Comparisons
- references
- clarity | 1.0 | Introduction - The detailed description of the task 1 , which includes the following :
-Introduction; What, Why
- Physics
- Comparisons
- references
- clarity | non_main | introduction the detailed description of the task which includes the following introduction what why physics comparisons references clarity | 0 |
352,243 | 25,050,022,467 | IssuesEvent | 2022-11-05 19:15:59 | umgc/fall2022 | https://api.github.com/repos/umgc/fall2022 | closed | Confirm/determine programming libraries used for Contacts integration | documentation *** HIGH PRIORITY *** | Consider programming requirements for both Android and iOS.
Document findings of approaches considered, and why they should be selected or excluded as we need this information in the TDD. Place findings in the documents as a draft, no need for extensive polishing within this task. Some content may be moved out later to the Programmers Guide.
Additionally, if implementation appears to be simple, developing a proof of concept (or locating an existing one built by someone else) would also be great for our next presentation. | 1.0 | Confirm/determine programming libraries used for Contacts integration - Consider programming requirements for both Android and iOS.
Document findings of approaches considered, and why they should be selected or excluded as we need this information in the TDD. Place findings in the documents as a draft, no need for extensive polishing within this task. Some content may be moved out later to the Programmers Guide.
Additionally, if implementation appears to be simple, developing a proof of concept (or locating an existing one built by someone else) would also be great for our next presentation. | non_main | confirm determine programming libraries used for contacts integration consider programming requirements for both android and ios document findings of approaches considered and why they should be selected or excluded as we need this information in the tdd place findings in the documents as a draft no need for extensive polishing within this task some content may be moved out later to the programmers guide additionally if implementation appears to be simple developing a proof of concept or locating an existing one built by someone else would also be great for our next presentation | 0 |
344,025 | 10,339,359,900 | IssuesEvent | 2019-09-03 19:08:32 | CodeForFoco/volunteercore | https://api.github.com/repos/CodeForFoco/volunteercore | closed | Bug: Admin can delete itself | priority:2 | Confirmed that Admins can delete themselves! Need to fix this on the back-end. | 1.0 | Bug: Admin can delete itself - Confirmed that Admins can delete themselves! Need to fix this on the back-end. | non_main | bug admin can delete itself confirmed that admins can delete themselves need to fix this on the back end | 0 |
5,885 | 32,031,566,736 | IssuesEvent | 2023-09-22 12:42:48 | carbon-design-system/carbon | https://api.github.com/repos/carbon-design-system/carbon | closed | [a11y]: The scrollable element <pre> with non-interactive content is not tabbable | type: a11y ♿ status: needs triage 🕵️♀️ status: waiting for maintainer response 💬 status: needs reproduction | ### Package
carbon-components
### Browser
Chrome
### Operating System
Windows
### Package version
V10
### React version
_No response_
### Automated testing tool and ruleset
IBM Accessbility Checker
### Assistive technology
_No response_
### Description
===== DEFECT DESCRIPTION =====
Problem 1: The scrollable element
with non-interactive content is not tabbable
I also noticed another one in "Deploy with IBM Cloud Schematics" in the dropdown selectors which is using NestedFilterableDropdown from pal which also has a missing role prop.
=====STEPS TO REPRODUCE =====
Press the "Review Deployment Options" button and select the radio offering "Create from CLI" which will show the CodeSnippet with the accessibility issue which Flannan found.
===== EXPECTED RESULT =====
IBM 2.1.1 Keyboard
https://www.ibm.com/able/requirements/requirements/#2_1_1
This requirement ensures that content can be navigated with a keyboard or keyboard interface. When interactive content is operated using a keyboard, it is accessible to vision impaired people who cannot use devices requiring hand-eye coordination (e.g., a mouse) and by people who use alternative keyboards or input devices that act as keyboard emulators. Keyboard emulators include speech input, sip and puff devices, on-screen keyboards, scanning software, and a variety of assistive technologies. This requirement does not forbid or discourage providing mouse input or other input methods in addition to keyboard operation.
===== SCREEN CAPTURE =====
<img width="721" alt="image" src="https://github.com/carbon-design-system/carbon/assets/110212663/edceca7c-91b4-4f00-92b6-8eb09992e8a3">
### WCAG 2.1 Violation
_No response_
### Reproduction/example
The scrollable element <pre> with non-interactive content is not tabbable
### Steps to reproduce
1. Using Static Website: https://dev.console.test.cloud.ibm.com/catalog/architecture/static-website-7fdfef2c-cf6c-4513-aed3-295cfb33623f-global?catalog_query=aHR0cHM6Ly9kZXYuY29uc29sZS50ZXN0LmNsb3VkLmlibS5jb20vY2F0YWxvZz9zZWFyY2g9c3RhdGljI3NlYXJjaF9yZXN1bHRz
2. Press the "Review Deployment Options" button and select the radio offering "Create from CLI" which will show the CodeSnippet with the accessibility issue which Flannan found.
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md)
- [ ] I checked the [current issues](https://github.com/carbon-design-system/carbon/issues) for duplicate problems | True | [a11y]: The scrollable element <pre> with non-interactive content is not tabbable - ### Package
carbon-components
### Browser
Chrome
### Operating System
Windows
### Package version
V10
### React version
_No response_
### Automated testing tool and ruleset
IBM Accessbility Checker
### Assistive technology
_No response_
### Description
===== DEFECT DESCRIPTION =====
Problem 1: The scrollable element
with non-interactive content is not tabbable
I also noticed another one in "Deploy with IBM Cloud Schematics" in the dropdown selectors which is using NestedFilterableDropdown from pal which also has a missing role prop.
=====STEPS TO REPRODUCE =====
Press the "Review Deployment Options" button and select the radio offering "Create from CLI" which will show the CodeSnippet with the accessibility issue which Flannan found.
===== EXPECTED RESULT =====
IBM 2.1.1 Keyboard
https://www.ibm.com/able/requirements/requirements/#2_1_1
This requirement ensures that content can be navigated with a keyboard or keyboard interface. When interactive content is operated using a keyboard, it is accessible to vision impaired people who cannot use devices requiring hand-eye coordination (e.g., a mouse) and by people who use alternative keyboards or input devices that act as keyboard emulators. Keyboard emulators include speech input, sip and puff devices, on-screen keyboards, scanning software, and a variety of assistive technologies. This requirement does not forbid or discourage providing mouse input or other input methods in addition to keyboard operation.
===== SCREEN CAPTURE =====
<img width="721" alt="image" src="https://github.com/carbon-design-system/carbon/assets/110212663/edceca7c-91b4-4f00-92b6-8eb09992e8a3">
### WCAG 2.1 Violation
_No response_
### Reproduction/example
The scrollable element <pre> with non-interactive content is not tabbable
### Steps to reproduce
1. Using Static Website: https://dev.console.test.cloud.ibm.com/catalog/architecture/static-website-7fdfef2c-cf6c-4513-aed3-295cfb33623f-global?catalog_query=aHR0cHM6Ly9kZXYuY29uc29sZS50ZXN0LmNsb3VkLmlibS5jb20vY2F0YWxvZz9zZWFyY2g9c3RhdGljI3NlYXJjaF9yZXN1bHRz
2. Press the "Review Deployment Options" button and select the radio offering "Create from CLI" which will show the CodeSnippet with the accessibility issue which Flannan found.
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md)
- [ ] I checked the [current issues](https://github.com/carbon-design-system/carbon/issues) for duplicate problems | main | the scrollable element with non interactive content is not tabbable package carbon components browser chrome operating system windows package version react version no response automated testing tool and ruleset ibm accessbility checker assistive technology no response description defect description
problem the scrollable element with non interactive content is not tabbable i also noticed another one in deploy with ibm cloud schematics in the dropdown selectors which is using nestedfilterabledropdown from pal which also has a missing role prop steps to reproduce press the review deployment options button and select the radio offering create from cli which will show the codesnippet with the accessibility issue which flannan found expected result ibm keyboard this requirement ensures that content can be navigated with a keyboard or keyboard interface when interactive content is operated using a keyboard it is accessible to vision impaired people who cannot use devices requiring hand eye coordination e g a mouse and by people who use alternative keyboards or input devices that act as keyboard emulators keyboard emulators include speech input sip and puff devices on screen keyboards scanning software and a variety of assistive technologies this requirement does not forbid or discourage providing mouse input or other input methods in addition to keyboard operation screen capture img width alt image src wcag violation no response reproduction example the scrollable element with non interactive content is not tabbable steps to reproduce using static website press the review deployment options button and select the radio offering create from cli which will show the codesnippet with the accessibility issue which flannan found code of conduct i agree to follow this project s i checked the for duplicate problems | 1 |
1,254 | 5,317,027,828 | IssuesEvent | 2017-02-13 21:27:02 | duckduckgo/zeroclickinfo-fathead | https://api.github.com/repos/duckduckgo/zeroclickinfo-fathead | closed | C++ Reference Docs: Improve triggering (more lenient) | Maintainer Input Requested Mission: Programming Skill: Python Status: Work In Progress Suggestion Topic: C++ Triggering | The IA triggers on ['cpp std::unordered_set'](https://duckduckgo.com/?q=cpp+std%3A%3Aunordered_set&ia=about), but not on ['cpp unordered_set'](https://duckduckgo.com/?q=cpp+unordered_set&ia=about) or ['cpp unordered set'](https://duckduckgo.com/?q=cpp+unordered+set&ia=about).
We should improve triggering by allowing the `::` header to be omitted, and we should allow whitespace in place of underscores. Anywhere this causes a clash we should just build a disambiguation page with the entries pointing to the full titles.
---
IA Page: http://duck.co/ia/view/cppreference_doc
[Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @ManrajGrover | True | C++ Reference Docs: Improve triggering (more lenient) - The IA triggers on ['cpp std::unordered_set'](https://duckduckgo.com/?q=cpp+std%3A%3Aunordered_set&ia=about), but not on ['cpp unordered_set'](https://duckduckgo.com/?q=cpp+unordered_set&ia=about) or ['cpp unordered set'](https://duckduckgo.com/?q=cpp+unordered+set&ia=about).
We should improve triggering by allowing the `::` header to be omitted, and we should allow whitespace in place of underscores. Anywhere this causes a clash we should just build a disambiguation page with the entries pointing to the full titles.
---
IA Page: http://duck.co/ia/view/cppreference_doc
[Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @ManrajGrover | main | c reference docs improve triggering more lenient the ia triggers on but not on or we should improve triggering by allowing the header to be omitted and we should allow whitespace in place of underscores anywhere this causes a clash we should just build a disambiguation page with the entries pointing to the full titles ia page manrajgrover | 1 |
4,202 | 20,604,208,372 | IssuesEvent | 2022-03-06 18:33:57 | bromite/bromite | https://api.github.com/repos/bromite/bromite | closed | [Feature Request] FIDO/FIDO2/WebAuthn implementation using COTECH's SDK | enhancement enhancement-without-maintainer | <!-- Welcome! Thanks for taking time to submit a feature request.
Have you searched the issue tracker? https://github.com/bromite/bromite/issues
Have you read the F.A.Q.s? https://github.com/bromite/bromite/blob/master/FAQ.md
Have you read the README? https://github.com/bromite/bromite/blob/master/README.md
Have you read the Wiki? https://github.com/bromite/bromite/wiki
If instead of a feature request you want to ask a question then please use the GitHub Discussions: https://github.com/bromite/bromite/discussions
-->
<!-- Do not submit feature requests for extensions support or adding a search engine. -->
### Is your feature request related to privacy?
Yes.
### Is there a patch available for this feature somewhere?
https://github.com/cotechde/hwsecurity/
License: GPLv3
### Describe the solution you would like
I would like to see FIDO/FIDO2/WebAuthn implementation in Bromite. This will enhance both privacy and security, as users (especially on phones without Google Services) will be able to use security keys (NitroKey, SoloKey, YubiKey, etc.) on their phones, instead of relying on weaker 2FA. Currently, phones without Google Services don't have any way of supporting security keys, so users need to have two forms of 2FA on every account they want to be able to access from their phone, which not every online service supports (e.g. AnonAddy). A simple solution would be the above SDK, which is licensed under GPLv3 (same as Bromite) and is [successfully implemented in the Nextcloud app for Android](https://github.com/nextcloud/android/pull/4286). It doesn't depend on Google Services either.
This would make Bromite the first FIDO/FIDO2/WebAuthn enabled browser for degoogled phones.
<!-- Do not ask "I would like feature X which is available in browser Y"; such issues are closed immediately. -->
### Describe alternatives you have considered
The only currently available alternative would require Google Services, and would also require using Google Chrome, which is not desirable from a privacy-perspective.
<!-- A clear and concise description of any alternative solutions or features you have considered. -->
| True | [Feature Request] FIDO/FIDO2/WebAuthn implementation using COTECH's SDK - <!-- Welcome! Thanks for taking time to submit a feature request.
Have you searched the issue tracker? https://github.com/bromite/bromite/issues
Have you read the F.A.Q.s? https://github.com/bromite/bromite/blob/master/FAQ.md
Have you read the README? https://github.com/bromite/bromite/blob/master/README.md
Have you read the Wiki? https://github.com/bromite/bromite/wiki
If instead of a feature request you want to ask a question then please use the GitHub Discussions: https://github.com/bromite/bromite/discussions
-->
<!-- Do not submit feature requests for extensions support or adding a search engine. -->
### Is your feature request related to privacy?
Yes.
### Is there a patch available for this feature somewhere?
https://github.com/cotechde/hwsecurity/
License: GPLv3
### Describe the solution you would like
I would like to see FIDO/FIDO2/WebAuthn implementation in Bromite. This will enhance both privacy and security, as users (especially on phones without Google Services) will be able to use security keys (NitroKey, SoloKey, YubiKey, etc.) on their phones, instead of relying on weaker 2FA. Currently, phones without Google Services don't have any way of supporting security keys, so users need to have two forms of 2FA on every account they want to be able to access from their phone, which not every online service supports (e.g. AnonAddy). A simple solution would be the above SDK, which is licensed under GPLv3 (same as Bromite) and is [successfully implemented in the Nextcloud app for Android](https://github.com/nextcloud/android/pull/4286). It doesn't depend on Google Services either.
This would make Bromite the first FIDO/FIDO2/WebAuthn enabled browser for degoogled phones.
<!-- Do not ask "I would like feature X which is available in browser Y"; such issues are closed immediately. -->
### Describe alternatives you have considered
The only currently available alternative would require Google Services, and would also require using Google Chrome, which is not desirable from a privacy-perspective.
<!-- A clear and concise description of any alternative solutions or features you have considered. -->
| main | fido webauthn implementation using cotech s sdk welcome thanks for taking time to submit a feature request have you searched the issue tracker have you read the f a q s have you read the readme have you read the wiki if instead of a feature request you want to ask a question then please use the github discussions is your feature request related to privacy yes is there a patch available for this feature somewhere license describe the solution you would like i would like to see fido webauthn implementation in bromite this will enhance both privacy and security as users especially on phones without google services will be able to use security keys nitrokey solokey yubikey etc on their phones instead of relying on weaker currently phones without google services don t have any way of supporting security keys so users need to have two forms of on every account they want to be able to access from their phone which not every online service supports e g anonaddy a simple solution would be the above sdk which is licensed under same as bromite and is it doesn t depend on google services either this would make bromite the first fido webauthn enabled browser for degoogled phones describe alternatives you have considered the only currently available alternative would require google services and would also require using google chrome which is not desirable from a privacy perspective | 1 |
106,661 | 4,281,881,541 | IssuesEvent | 2016-07-15 06:24:53 | xcat2/xcat-core | https://api.github.com/repos/xcat2/xcat-core | closed | [FVT] Ubuntu packaging problem, all files and directories belong to nobody.nogroup instead of root.root | component:packaging component:security priority:normal status:pending type:bug | All files and directories in the packages of xCAT Ubuntu build belong to ``nobody.nogroup``. Which is incorrect. All the files and directories should belong to ``root.root``.
# dpkg -c xcat-server_2.12-snap201605090931_all.deb
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/bin/
-rwxr-xr-x nobody/nogroup 2555 2016-05-09 07:59 ./opt/xcat/bin/replaycons
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/sbin/
-rwxr-xr-x nobody/nogroup 4331 2016-05-09 07:59 ./opt/xcat/sbin/chtab
-rwxr-xr-x nobody/nogroup 15492 2016-05-09 07:59 ./opt/xcat/sbin/configmic
-rwxr-xr-x nobody/nogroup 6016 2016-05-09 07:59 ./opt/xcat/sbin/flashmic
-rwxr-xr-x nobody/nogroup 1534 2016-05-09 07:59 ./opt/xcat/sbin/makenamed.conf
-rwxr-xr-x nobody/nogroup 7411 2016-05-09 07:59 ./opt/xcat/sbin/pcp_collect
-rwxr-xr-x nobody/nogroup 7848 2016-05-09 07:59 ./opt/xcat/sbin/proxydhcp-xcat
-rwxr-xr-x nobody/nogroup 8381 2016-05-09 07:59 ./opt/xcat/sbin/restartxcatd
-rwxr-xr-x nobody/nogroup 972 2016-05-09 07:59 ./opt/xcat/sbin/rshell_api
-rwxr-xr-x nobody/nogroup 709 2016-05-09 07:59 ./opt/xcat/sbin/runcmdinstaller
-rwxr-xr-x nobody/nogroup 10253 2016-05-09 07:59 ./opt/xcat/sbin/runsqlcmd
-rwxr-xr-x nobody/nogroup 2427 2016-05-09 07:59 ./opt/xcat/sbin/stopstartxcatd
-rwxr-xr-x nobody/nogroup 9199 2016-05-09 07:59 ./opt/xcat/sbin/updateSNimage
-rwxr-xr-x nobody/nogroup 14727 2016-05-09 07:59 ./opt/xcat/sbin/xcat_traphandler
-rwxr-xr-x nobody/nogroup 71652 2016-05-09 07:59 ./opt/xcat/sbin/xcatconfig
-rwxr-xr-x nobody/nogroup 129689 2016-05-09 07:59 ./opt/xcat/sbin/xcatd
-rwxr-xr-x nobody/nogroup 3769 2016-05-09 07:59 ./opt/xcat/sbin/xcatdebug
-rwxr-xr-x nobody/nogroup 2655 2016-05-09 07:59 ./opt/xcat/sbin/xcatnodemon
-rwxr-xr-x nobody/nogroup 13933 2016-05-09 07:59 ./opt/xcat/sbin/xcatsnap
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/centos/
-rw-r--r-- nobody/nogroup 336 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/all.pkglist
-rw-r--r-- nobody/nogroup 3047 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/all.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos6.pkglist
-rw-r--r-- nobody/nogroup 2702 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos6.tmpl
-rw-r--r-- nobody/nogroup 139 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos7.pkglist
-rw-r--r-- nobody/nogroup 2924 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos7.tmpl
-rw-r--r-- nobody/nogroup 319 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.pkglist
-rw-r--r-- nobody/nogroup 3031 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.tmpl
-rw-r--r-- nobody/nogroup 3176 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/iscsi.centos6.tmpl
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/iscsi.pkglist
-rw-r--r-- nobody/nogroup 3180 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/iscsi.tmpl
-rw-r--r-- nobody/nogroup 2681 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/kvm.centos6.tmpl
-rw-r--r-- nobody/nogroup 3525 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/storage.centos6.tmpl
-rw-r--r-- nobody/nogroup 523 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/storage.pkglist
-rw-r--r-- nobody/nogroup 3529 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/storage.tmpl
-rw-r--r-- nobody/nogroup 2993 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/xen.centos6.tmpl
-rw-r--r-- nobody/nogroup 347 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/xen.pkglist
-rw-r--r-- nobody/nogroup 2997 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/xen.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/
-rw-r--r-- nobody/nogroup 4443 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/compute.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/debian-installer-startup.d/
-rw-r--r-- nobody/nogroup 476 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/debian-installer-startup.d/S10detectnic
-rw-r--r-- nobody/nogroup 296 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/debian-installer-startup.d/S10setserver
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/esx/
-rw-r--r-- nobody/nogroup 1403 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esx/base.esxi4.1.tmpl
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esx/esx.pkglist
-rw-r--r-- nobody/nogroup 1285 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esx/esx.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/esxi/
-rw-r--r-- nobody/nogroup 2334 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esxi/hypervisor.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/fedora/
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora12.pkglist
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora13.pkglist
-rw-r--r-- nobody/nogroup 2947 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora13.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora14.pkglist
-rw-r--r-- nobody/nogroup 2947 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora14.tmpl
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora19.pkglist
-rw-r--r-- nobody/nogroup 2860 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora19.tmpl
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora20.pkglist
-rw-r--r-- nobody/nogroup 2860 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora20.tmpl
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora21.pkglist
-rw-r--r-- nobody/nogroup 2867 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora21.tmpl
-rw-r--r-- nobody/nogroup 253 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora8.pkglist
-rw-r--r-- nobody/nogroup 3012 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora8.tmpl
-rw-r--r-- nobody/nogroup 246 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.pkglist
-rw-r--r-- nobody/nogroup 246 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3156 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3011 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.tmpl
-rw-r--r-- nobody/nogroup 246 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.pkglist
-rw-r--r-- nobody/nogroup 253 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3060 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3011 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.tmpl
-rw-r--r-- nobody/nogroup 240 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.pkglist
-rw-r--r-- nobody/nogroup 240 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3212 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3169 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.tmpl
-rw-r--r-- nobody/nogroup 247 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.pkglist
-rw-r--r-- nobody/nogroup 247 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3213 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3170 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.tmpl
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora8.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora8.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora8.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 304 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.pkglist
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3087 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3022 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.tmpl
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 324 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.pkglist
-rw-r--r-- nobody/nogroup 324 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3088 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3009 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/hyperv/
-rw-r--r-- nobody/nogroup 6289 2016-05-09 07:59 ./opt/xcat/share/xcat/install/hyperv/hypervisor.hyperv2012.x86_64.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/ol/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/pkvm/
-rw-r--r-- nobody/nogroup 872 2016-05-09 07:59 ./opt/xcat/share/xcat/install/pkvm/compute.pkvm2.ppc64.tmpl
-rw-r--r-- nobody/nogroup 1046 2016-05-09 07:59 ./opt/xcat/share/xcat/install/pkvm/compute.pkvm3.ppc64le.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/rh/
-rw-r--r-- nobody/nogroup 323 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.pkglist
-rw-r--r-- nobody/nogroup 323 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3086 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.ppc64.tmpl
-rw-r--r-- nobody/nogroup 325 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel4.pkglist
-rw-r--r-- nobody/nogroup 3011 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel4.tmpl
-rw-r--r-- nobody/nogroup 3067 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel5.ppc64.tmpl
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel5.s390x.pkglist
-rw-r--r-- nobody/nogroup 694 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel5.s390x.tmpl
-rw-r--r-- nobody/nogroup 114 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhelhpc6.pkglist
-rw-r--r-- nobody/nogroup 2910 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhelhpc6.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.pkglist
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3287 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 16 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.s390x.pkglist
-rw-r--r-- nobody/nogroup 691 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.s390x.tmpl
-rw-r--r-- nobody/nogroup 2831 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.x86_64.pkglist
-rw-r--r-- nobody/nogroup 3108 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.x86_64.tmpl
-rw-r--r-- nobody/nogroup 139 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels7.pkglist
-rw-r--r-- nobody/nogroup 3192 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels7.tmpl
-rw-r--r-- nobody/nogroup 3042 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.tmpl
-rw-r--r-- nobody/nogroup 2960 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute_ad.rhels6.tmpl
-rw-r--r-- nobody/nogroup 84 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/cudafull.rhels7.ppc64le.pkglist
-rw-r--r-- nobody/nogroup 97 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/cudaruntime.rhels7.ppc64le.pkglist
-rw-r--r-- nobody/nogroup 142 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/hpc.rhels6.pkglist
-rw-r--r-- nobody/nogroup 2910 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/hpc.rhels6.tmpl
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.pkglist
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3223 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3176 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.rhels6.tmpl
-rw-r--r-- nobody/nogroup 3180 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.tmpl
-rw-r--r-- nobody/nogroup 140 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.pkglist
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhel6.pkglist
-rw-r--r-- nobody/nogroup 2896 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhel6.tmpl
-rw-r--r-- nobody/nogroup 210 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels5.pkglist
-rw-r--r-- nobody/nogroup 3626 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels5.tmpl
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels6.pkglist
-rw-r--r-- nobody/nogroup 2932 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels6.tmpl
-rw-r--r-- nobody/nogroup 166 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels7.pkglist
-rw-r--r-- nobody/nogroup 2848 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels7.tmpl
-rw-r--r-- nobody/nogroup 3628 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.tmpl
-rw-r--r-- nobody/nogroup 388 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.pkglist
-rw-r--r-- nobody/nogroup 388 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3067 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.ppc64.tmpl
-rw-r--r-- nobody/nogroup 2920 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.raid1.multipath.rhel6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 2896 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.raid1.rhel6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 61 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels5.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 59 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels5.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 62 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels5.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 137 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 475 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3021 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 140 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 293 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.x86_64.pkglist
-rw-r--r-- nobody/nogroup 2834 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.x86_64.tmpl
-rw-r--r-- nobody/nogroup 137 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 484 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64.pkglist
-rw-r--r-- nobody/nogroup 143 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64le.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 450 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64le.pkglist
-rw-r--r-- nobody/nogroup 2922 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.tmpl
-rw-r--r-- nobody/nogroup 140 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 302 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.x86_64.pkglist
-rw-r--r-- nobody/nogroup 3022 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.tmpl
-rw-r--r-- nobody/nogroup 523 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.pkglist
-rw-r--r-- nobody/nogroup 435 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.rhels6.pkglist
-rw-r--r-- nobody/nogroup 3510 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.rhels6.tmpl
-rw-r--r-- nobody/nogroup 3529 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.tmpl
-rw-r--r-- nobody/nogroup 45 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels5.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 44 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels6.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 45 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels6.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 44 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels7.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 46 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels7.ppc64le.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 45 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels7.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 347 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/xen.pkglist
-rw-r--r-- nobody/nogroup 2993 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/xen.rhels6.tmpl
-rw-r--r-- nobody/nogroup 2997 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/xen.tmpl
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhel5.s390x.pkglist
-rw-r--r-- nobody/nogroup 706 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhel5.s390x.tmpl
-rw-r--r-- nobody/nogroup 16 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhels6.s390x.pkglist
-rw-r--r-- nobody/nogroup 706 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhels6.s390x.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/scripts/
-rw-r--r-- nobody/nogroup 2358 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/chroot.sles
-rw-r--r-- nobody/nogroup 3209 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/chroot.sles.iscsi
-rw-r--r-- nobody/nogroup 7824 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/getinstdisk
-rw-r--r-- nobody/nogroup 6486 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.debian
-rw-r--r-- nobody/nogroup 1434 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.esx
-rw-r--r-- nobody/nogroup 137 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rh
-rw-r--r-- nobody/nogroup 2571 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rh.common
-rw-r--r-- nobody/nogroup 306 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rh.iscsi
-rw-r--r-- nobody/nogroup 4923 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rhel5.s390x
-rw-r--r-- nobody/nogroup 4940 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rhel6.s390x
-rw-r--r-- nobody/nogroup 1350 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rhels7
-rw-r--r-- nobody/nogroup 377 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles
-rwxr-xr-x nobody/nogroup 1554 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles.common
-rw-r--r-- nobody/nogroup 373 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles.iscsi
-rw-r--r-- nobody/nogroup 5673 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles10.s390x
-rw-r--r-- nobody/nogroup 530 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11
-rw-r--r-- nobody/nogroup 568 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11.iscsi
-rw-r--r-- nobody/nogroup 577 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11.raid1
-rw-r--r-- nobody/nogroup 5780 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11.s390x
-rwxr-xr-x nobody/nogroup 133 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.ubuntu
-rwxr-xr-x nobody/nogroup 1702 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.ubuntu.common
-rwxr-xr-x nobody/nogroup 15405 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.xcat
-rw-r--r-- nobody/nogroup 1488 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.debian
-rwxr-xr-x nobody/nogroup 644 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.pkvm3
-rw-r--r-- nobody/nogroup 6647 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.rh
-rwxr-xr-x nobody/nogroup 5629 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.rh.rhels7
-rw-r--r-- nobody/nogroup 4893 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.sles
-rw-r--r-- nobody/nogroup 6179 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.ubuntu
-rw-r--r-- nobody/nogroup 6543 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.ubuntu.ppc64
-rw-r--r-- nobody/nogroup 1669 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/scriptlib
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/SL/
-rw-r--r-- nobody/nogroup 323 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.pkglist
-rw-r--r-- nobody/nogroup 2952 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/sles/
-rw-r--r-- nobody/nogroup 29 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.pkglist
-rw-r--r-- nobody/nogroup 3258 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sdk.sles11.tmpl
-rw-r--r-- nobody/nogroup 41 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.ppc64.pkglist
-rw-r--r-- nobody/nogroup 2774 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.ppc64.tmpl
-rw-r--r-- nobody/nogroup 19 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.s390x.pkglist
-rw-r--r-- nobody/nogroup 20478 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.s390x.tmpl
-rw-r--r-- nobody/nogroup 21 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.pkglist
-rw-r--r-- nobody/nogroup 19 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.s390x.pkglist
-rw-r--r-- nobody/nogroup 20478 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.s390x.tmpl
-rw-r--r-- nobody/nogroup 2544 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.tmpl
-rw-r--r-- nobody/nogroup 29 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles12.pkglist
-rw-r--r-- nobody/nogroup 4858 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles12.ppc64le.tmpl
-rw-r--r-- nobody/nogroup 3119 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles12.tmpl
-rw-r--r-- nobody/nogroup 3097 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.tmpl
-rw-r--r-- nobody/nogroup 33 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsi.pkglist
-rw-r--r-- nobody/nogroup 3291 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsi.tmpl
-rw-r--r-- nobody/nogroup 33 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsiibft.sles11.pkglist
-rw-r--r-- nobody/nogroup 3253 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsiibft.sles11.tmpl
-rw-r--r-- nobody/nogroup 5963 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.raid1.sles11.tmpl
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles10.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles10.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 70 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles10.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 441 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.pkglist
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 3123 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.tmpl
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 75 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/sysclone.sles10.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 47 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/sysclone.sles11.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/sysclone.sles11.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 148 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/xen.pkglist
-rw-r--r-- nobody/nogroup 4200 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/xen.tmpl
-rw-r--r-- nobody/nogroup 15 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles10.s390x.pkglist
-rw-r--r-- nobody/nogroup 18389 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles10.s390x.tmpl
-rw-r--r-- nobody/nogroup 15 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles11.s390x.pkglist
-rw-r--r-- nobody/nogroup 18389 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles11.s390x.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/suse/
-rw-r--r-- nobody/nogroup 22 2016-05-09 07:59 ./opt/xcat/share/xcat/install/suse/compute.pkglist
-rw-r--r-- nobody/nogroup 2777 2016-05-09 07:59 ./opt/xcat/share/xcat/install/suse/compute.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/ubuntu/
-rw-r--r-- nobody/nogroup 41 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.pkglist
-rw-r--r-- nobody/nogroup 4819 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 147 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu16.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 87 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 120 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.ubuntu14.04.3.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 132 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.ubuntu14.04.3.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 92 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/kvm.pkglist
-rw-r--r-- nobody/nogroup 70 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/service.pkglist
-rw-r--r-- nobody/nogroup 87 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/service.ubuntu.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/windows/
-rw-r--r-- nobody/nogroup 6505 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/datacenter.win2012.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6847 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win2k8.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6581 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win2k8r2.x86_64.tmpl
-rwxr-xr-x nobody/nogroup 5670 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win7.x86_64.tmpl
-rwxr-xr-x nobody/nogroup 5680 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win8.x86_64.tmpl
-rw-r--r-- nobody/nogroup 7619 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise_ad.win2k8r2.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6511 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/standard.win2012.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6847 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/standard.win2k8.x86_64.tmpl
-rwxr-xr-x nobody/nogroup 5666 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/ultimate.win7.x86_64.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/
-rwxr-xr-x nobody/nogroup 1486 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsc
-rwxr-xr-x nobody/nogroup 1928 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsc.pl
-rwxr-xr-x nobody/nogroup 530 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsd
-rwxr-xr-x nobody/nogroup 7412 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsd.pl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/statelite/
-rwxr-xr-x nobody/nogroup 583 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/add_passwd
-rwxr-xr-x nobody/nogroup 1858 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/add_ssh
-rwxr-xr-x nobody/nogroup 12642 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/rc.localdisk
-rwxr-xr-x nobody/nogroup 18567 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/rc.statelite
-rwxr-xr-x nobody/nogroup 18331 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/rc.statelite.ppc.redhat
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/torque/
-rwxr-xr-x nobody/nogroup 2665 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/add_torque
-rwxr-xr-x nobody/nogroup 906 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/moab
-rwxr-xr-x nobody/nogroup 1337 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs
-rwxr-xr-x nobody/nogroup 1028 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs_mom
-rwxr-xr-x nobody/nogroup 771 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs_sched
-rwxr-xr-x nobody/nogroup 988 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs_server
-rwxr-xr-x nobody/nogroup 356 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbsnodestat
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/
-rwxr-xr-x nobody/nogroup 962 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/epilogue
-rwxr-xr-x nobody/nogroup 468 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/killuser
-rwxr-xr-x nobody/nogroup 1028 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/pbspsh
-rwxr-xr-x nobody/nogroup 822 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/prologue
-rwxr-xr-x nobody/nogroup 578 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/setupnode
-rwxr-xr-x nobody/nogroup 382 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/setupnode2
-rwxr-xr-x nobody/nogroup 1657 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/takedownnode
-rwxr-xr-x nobody/nogroup 222 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/takedownnode2
-rwxr-xr-x nobody/nogroup 820 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/xpbsnodes
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/aix/
-rw-r--r-- nobody/nogroup 204 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/aix/xcatAIXpost
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/centos/
-rw-r--r-- nobody/nogroup 154 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos6.pkglist
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.exlist
-rw-r--r-- nobody/nogroup 102 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.pkglist
-rw-r--r-- nobody/nogroup 164 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/kvm.centos6.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/debian/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/debian/compute.exlist
-rw-r--r-- nobody/nogroup 108 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/debian/compute.pkglist
-rwxr-xr-x nobody/nogroup 40690 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/debian/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/esxi/
-rw-r--r-- nobody/nogroup 550 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/38.xcat-enableipv6
-rw-r--r-- nobody/nogroup 729 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/39.ipv6fixup
-rw-r--r-- nobody/nogroup 868 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/47.xcat-networking
-rw-r--r-- nobody/nogroup 453 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/48.esxifixup
-rw-r--r-- nobody/nogroup 345 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/99.esxiready
-rw-r--r-- nobody/nogroup 240 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/xcat-ipv6.json
-rw-r--r-- nobody/nogroup 52 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/xcatsplash
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.exlist
-rw-r--r-- nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora13.pkglist
-rw-r--r-- nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora14.pkglist
-rw-r--r-- nobody/nogroup 118 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.pkglist
-rw-r--r-- nobody/nogroup 117 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.ppc64.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora/dracut/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-cmdline.sh
-rwxr-xr-x nobody/nogroup 2712 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 5873 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcatroot
-rw-r--r-- nobody/nogroup 215 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.exlist
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora8.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora8.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora8.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora9.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora9.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 234 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora12/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/compute.exlist
-rw-r--r-- nobody/nogroup 101 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/compute.pkglist
-rw-r--r-- nobody/nogroup 117 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/compute.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 37099 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/genimage
-rwxr-xr-x nobody/nogroup 38877 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/geninitrd
-rw-r--r-- nobody/nogroup 215 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/service.exlist
-rw-r--r-- nobody/nogroup 177 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/service.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/imgutils/
-rw-r--r-- nobody/nogroup 5553 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/imgutils/imgutils.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/mic/
-rwxr-xr-x nobody/nogroup 7939 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/mic/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/ol/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/
-rw-r--r-- nobody/nogroup 257 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.exlist
-rw-r--r-- nobody/nogroup 58 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.imgcapture.exlist
-rw-r--r-- nobody/nogroup 131 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.pkglist
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.ppc64.postinstall
-rw-r--r-- nobody/nogroup 150 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhas4.pkglist
-rw-r--r-- nobody/nogroup 154 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel5.s390x.pkglist
-rw-r--r-- nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.pkglist
-rw-r--r-- nobody/nogroup 203 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.ppc64.postinstall
-rw-r--r-- nobody/nogroup 142 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.s390x.pkglist
-rw-r--r-- nobody/nogroup 187 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhelhpc6.pkglist
-rw-r--r-- nobody/nogroup 149 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels5.pkglist
-rw-r--r-- nobody/nogroup 159 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels5.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels5.ppc64.postinstall
-rw-r--r-- nobody/nogroup 138 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.pkglist
-rw-r--r-- nobody/nogroup 799 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.ppc64.exlist
-rw-r--r-- nobody/nogroup 223 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2022 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.ppc64.postinstall
-rw-r--r-- nobody/nogroup 798 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.x86_64.exlist
-rw-r--r-- nobody/nogroup 190 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 2022 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.x86_64.postinstall
-rw-r--r-- nobody/nogroup 799 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64.exlist
-rw-r--r-- nobody/nogroup 220 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 1867 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64.postinstall
-rw-r--r-- nobody/nogroup 799 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.x86_64.exlist
-rw-r--r-- nobody/nogroup 187 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 1867 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.x86_64.postinstall
-rw-r--r-- nobody/nogroup 52 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/cudafull.rhels7.ppc64le.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 64 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/cudaruntime.rhels7.ppc64le.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/dracut/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/check
-rwxr-xr-x nobody/nogroup 403 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/install.netboot
-rwxr-xr-x nobody/nogroup 386 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/installkernel
-rw-r--r-- nobody/nogroup 91 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-cmdline.sh
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-premount.sh
-rwxr-xr-x nobody/nogroup 3838 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 460 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-updateflag
-rwxr-xr-x nobody/nogroup 7428 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcatroot
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/dracut_033/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/check
-rwxr-xr-x nobody/nogroup 362 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/install.netboot
-rwxr-xr-x nobody/nogroup 346 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/installkernel
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/
-rwxr-xr-x nobody/nogroup 1277 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/module-setup.sh
-rwxr-xr-x nobody/nogroup 1247 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/rsyslogd-start.sh
-rwxr-xr-x nobody/nogroup 2979 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/syslog-genrules.sh
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-cmdline.sh
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-premount.sh
-rwxr-xr-x nobody/nogroup 5302 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 460 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-updateflag
-rwxr-xr-x nobody/nogroup 10061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcatroot
-rwxr-xr-x nobody/nogroup 77597 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/genimage
-rwxr-xr-x nobody/nogroup 40498 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/genimage.rh4
-rw-r--r-- nobody/nogroup 650 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/kvm.exlist
-rw-r--r-- nobody/nogroup 272 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/kvm.rhels5.4.pkglist
-rw-r--r-- nobody/nogroup 164 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/kvm.rhels6.pkglist
-rw-r--r-- nobody/nogroup 131 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/nfsroot.pkglist
-rw-r--r-- nobody/nogroup 1140 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/nfsroot.rwfiles
-rw-r--r-- nobody/nogroup 3162 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/readme_for_genimage.rh4
-rw-r--r-- nobody/nogroup 215 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.exlist
-rw-r--r-- nobody/nogroup 366 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.postinstall
-rw-r--r-- nobody/nogroup 377 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.ppc64.pkglist
-rw-r--r-- nobody/nogroup 61 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.ppc64.otherpkgs.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.ppc64.postinstall
-rw-r--r-- nobody/nogroup 59 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 62 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 61 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels6.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 435 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels6.ppc64.postinstall
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/xen.exlist
-rw-r--r-- nobody/nogroup 203 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/xen.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/SL/
-rw-r--r-- nobody/nogroup 257 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/compute.exlist
-rw-r--r-- nobody/nogroup 131 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/compute.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/SL/dracut/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/sles/
-rw-r--r-- nobody/nogroup 235 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.exlist
-rw-r--r-- nobody/nogroup 58 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.imgcapture.exlist
-rw-r--r-- nobody/nogroup 96 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.pkglist
-rwxr-xr-x nobody/nogroup 1827 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.postinstall
-rw-r--r-- nobody/nogroup 413 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.repolist
-rw-r--r-- nobody/nogroup 235 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles10.ppc64.exlist
-rw-r--r-- nobody/nogroup 237 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles10.ppc64.pkglist
-rw-r--r-- nobody/nogroup 2026 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles10.ppc64.postinstall
-rw-r--r-- nobody/nogroup 153 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.pkglist
-rwxr-xr-x nobody/nogroup 2061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.postinstall
-rwxr-xr-x nobody/nogroup 1152 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.ppc64.exlist
-rw-r--r-- nobody/nogroup 164 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.ppc64.pkglist
-rw-r--r-- nobody/nogroup 217 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.s390x.pkglist
-rwxr-xr-x nobody/nogroup 1154 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.x86_64.exlist
-rwxr-xr-x nobody/nogroup 1195 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.ppc64le.exlist
-rw-r--r-- nobody/nogroup 389 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.ppc64le.pkglist
-rwxr-xr-x nobody/nogroup 2061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.ppc64le.postinstall
-rwxr-xr-x nobody/nogroup 1132 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.x86_64.exlist
-rw-r--r-- nobody/nogroup 389 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 2061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.x86_64.postinstall
-rwxr-xr-x nobody/nogroup 301 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/copy_profile.sh
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/sles/dracut_033/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/check
-rwxr-xr-x nobody/nogroup 362 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/install.netboot
-rwxr-xr-x nobody/nogroup 346 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/installkernel
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/
-rwxr-xr-x nobody/nogroup 1277 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/module-setup.sh
-rwxr-xr-x nobody/nogroup 1247 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/rsyslogd-start.sh
-rwxr-xr-x nobody/nogroup 2979 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/syslog-genrules.sh
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-cmdline.sh
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-premount.sh
-rwxr-xr-x nobody/nogroup 5254 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 460 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-updateflag
-rwxr-xr-x nobody/nogroup 9728 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcatroot
-rwxr-xr-x nobody/nogroup 84259 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/genimage
-rwxr-xr-x nobody/nogroup 22832 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/genimage.yum
-rw-r--r-- nobody/nogroup 218 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.exlist
-rw-r--r-- nobody/nogroup 177 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.pkglist
-rw-r--r-- nobody/nogroup 413 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.repolist
-rw-r--r-- nobody/nogroup 2526 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.postinstall
-rw-r--r-- nobody/nogroup 218 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.exlist
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 464 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.pkglist
-rw-r--r-- nobody/nogroup 2526 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.postinstall
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 75 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 613 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.pkglist
-rwxr-xr-x nobody/nogroup 2733 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.postinstall
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 623 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.ppc64.pkglist
-rw-r--r-- nobody/nogroup 622 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.ppc64.repolist
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 75 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.x86_64.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/suse/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/compute.exlist
-rw-r--r-- nobody/nogroup 121 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/compute.suse11.pkglist
-rwxr-xr-x nobody/nogroup 2062 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/compute.suse11.postinstall
-rwxr-xr-x nobody/nogroup 29534 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/ubuntu/
-rwxr-xr-x nobody/nogroup 175 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.exlist
-rw-r--r-- nobody/nogroup 139 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.pkglist
-rwxr-xr-x nobody/nogroup 2128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.postinstall
-rw-r--r-- nobody/nogroup 138 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu12.04.1.pkglist
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu12.04.2.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.2.x86_64.pkglist
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.3.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.3.x86_64.pkglist
-rw-r--r-- nobody/nogroup 156 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.4.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 156 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.4.x86_64.pkglist
-rw-r--r-- nobody/nogroup 138 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.pkglist
-rw-r--r-- nobody/nogroup 147 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 150 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.x86_64.pkglist
-rw-r--r-- nobody/nogroup 5 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 114 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 17 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/check
-rwxr-xr-x nobody/nogroup 267 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/install.netboot
-rwxr-xr-x nobody/nogroup 202 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/installkernel
-rw-r--r-- nobody/nogroup 91 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/xcat-cmdline.sh
-rwxr-xr-x nobody/nogroup 2635 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 5280 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/xcatroot
-rwxr-xr-x nobody/nogroup 70642 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/windows/
-rwxr-xr-x nobody/nogroup 512 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/detectefi.cpp
-rwxr-xr-x nobody/nogroup 52224 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/detectefi.exe
-rw-r--r-- nobody/nogroup 3809 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/fixupunattend.vbs
-rw-r--r-- nobody/nogroup 5160 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/genimage.bat
-rw-r--r-- nobody/nogroup 7089 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/genimage.cmd
-rwxr-xr-x nobody/nogroup 816 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/getnextserver.cpp
-rwxr-xr-x nobody/nogroup 52736 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/getnextserver.exe
-rw-r--r-- nobody/nogroup 912 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/nextdestiny.ps1
-rw-r--r-- nobody/nogroup 1966 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/startnet.cmd
-rw-r--r-- nobody/nogroup 3071 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/xCAT.format.ps1xml
-rwxr-xr-x nobody/nogroup 5458 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/xCAT.psd1
-rw-r--r-- nobody/nogroup 17680 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/xCAT.psm1
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/templates/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ca/
-rw-r--r-- nobody/nogroup 2023 2016-05-09 07:59 ./opt/xcat/share/xcat/ca/Makefile
-rw-r--r-- nobody/nogroup 9855 2016-05-09 07:59 ./opt/xcat/share/xcat/ca/openssl.cnf.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/scripts/
-rwxr-xr-x nobody/nogroup 312 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/bitscount.pl
-rwxr-xr-x nobody/nogroup 12134 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/cfm2xcat
-rwxr-xr-x nobody/nogroup 212 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/countbits.pl
-rwxr-xr-x nobody/nogroup 1782 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/createdb.sql
-rwxr-xr-x nobody/nogroup 18183 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/csm2xcat
-rw-r--r-- nobody/nogroup 628 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/exportxcatcreds.sh
-rwxr-xr-x nobody/nogroup 3200 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/extractefiboot.pl
-rw-r--r-- nobody/nogroup 1010 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/genduiduuid.sh
-rw-r--r-- nobody/nogroup 1670 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/genula.sh
-rwxr-xr-x nobody/nogroup 3970 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/insptbls
-rwxr-xr-x nobody/nogroup 2392 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/ipcalc.ksh
-rw-r--r-- nobody/nogroup 69489 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/mkay4z
-rwxr-xr-x nobody/nogroup 2296 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-dockerhost-cert.sh
-rwxr-xr-x nobody/nogroup 2626 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-local-client.sh
-rwxr-xr-x nobody/nogroup 1490 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-server-cert.sh
-rwxr-xr-x nobody/nogroup 1260 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-xcat-ca.sh
-rwxr-xr-x nobody/nogroup 468 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/updateDBM.sql
-rw-r--r-- nobody/nogroup 16970 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xcatconf4z
-rw-r--r-- nobody/nogroup 298 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xcatfmcd.conf
-rwxr-xr-x nobody/nogroup 12056 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xcatvio.script
-rwxr-xr-x nobody/nogroup 1159 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xdcpappend.sh
-rwxr-xr-x nobody/nogroup 3904 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xdcpmerge.sh
-rwxr-xr-x nobody/nogroup 12983 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xHRM
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/tools/
-rwxr-xr-x nobody/nogroup 8283 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/detect_dhcpd
-rwxr-xr-x nobody/nogroup 1083 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/mac2linklocal
-rwxr-xr-x nobody/nogroup 17010 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/mktoolscenter
-rwxr-xr-x nobody/nogroup 12998 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/nodesw
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/tools/powervm/
-rw-r--r-- nobody/nogroup 971 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/README
-rw-r--r-- nobody/nogroup 18993 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/configcec.pm
-rwxr-xr-x nobody/nogroup 8234 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/configvios
-rwxr-xr-x nobody/nogroup 1472 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/installsshforvios
-rw-r--r-- nobody/nogroup 144291 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/powerVMsteps.odt
-rwxr-xr-x nobody/nogroup 859 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/vios.conf
-rw-r--r-- nobody/nogroup 970 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/xcataixpost.patch
-rwxr-xr-x nobody/nogroup 3662 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/reorgtbls
-rwxr-xr-x nobody/nogroup 3154 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/rmblade
-rwxr-xr-x nobody/nogroup 1932 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/rmnodecfg
-rwxr-xr-x nobody/nogroup 6292 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/test_hca_state
-rwxr-xr-x nobody/nogroup 63982 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/xCATreg
-rwxr-xr-x nobody/nogroup 5564 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/xcatstat
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/rollupdate/
-rw-r--r-- nobody/nogroup 1130 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/ll.tmpl
-rw-r--r-- nobody/nogroup 1170 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/llall.tmpl
-rw-r--r-- nobody/nogroup 13067 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/rollupdate.input.sample
-rw-r--r-- nobody/nogroup 9234 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/rollupdate_all.input.sample
-rw-r--r-- nobody/nogroup 9190 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/rollupdate_stateful.input.sample
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/installp_bundles/
-rw-r--r-- nobody/nogroup 291 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixCN53.bnd
-rw-r--r-- nobody/nogroup 281 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixCN61.bnd
-rw-r--r-- nobody/nogroup 347 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixCN71.bnd
-rw-r--r-- nobody/nogroup 1115 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixSN53.bnd
-rw-r--r-- nobody/nogroup 1218 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixSN61.bnd
-rw-r--r-- nobody/nogroup 1256 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixSN71.bnd
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/image_data/
-rw-r--r-- nobody/nogroup 15124 2016-05-09 07:59 ./opt/xcat/share/xcat/image_data/xCATsnData
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/cons/
-rwxr-xr-x nobody/nogroup 3882 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/blade
-rwxr-xr-x nobody/nogroup 12542 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/fsp
-rwxr-xr-x nobody/nogroup 9461 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/hmc
-rwxr-xr-x nobody/nogroup 3539 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/hpblade
-rwxr-xr-x nobody/nogroup 4824 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/ipmi
-rwxr-xr-x nobody/nogroup 9480 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/ivm
-rwxr-xr-x nobody/nogroup 2421 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/kvm
-rwxr-xr-x nobody/nogroup 6320 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/multiple
-rwxr-xr-x nobody/nogroup 2233 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/xen
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/devicetype/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/devicetype/EthSwitch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/BNT/
-rw-r--r-- nobody/nogroup 82 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/BNT/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Cisco/
-rw-r--r-- nobody/nogroup 82 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Cisco/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Jun/
-rw-r--r-- nobody/nogroup 149 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Jun/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Mellanox/
-rw-r--r-- nobody/nogroup 134 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Mellanox/config
-rw-r--r-- nobody/nogroup 439 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/Mellanox/
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/Mellanox/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/QLogic/
-rw-r--r-- nobody/nogroup 96 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/QLogic/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/vios/
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/vios/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/scripts/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/scripts/Mellanox/
-rwxr-xr-x nobody/nogroup 13284 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/Mellanox/mlnxofed_ib_install
-rwxr-xr-x nobody/nogroup 15755 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/Mellanox/mlnxofed_ib_install.v2
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/Mellanox/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/scripts/QLogic/
-rw-r--r-- nobody/nogroup 96 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/QLogic/config
-rw-r--r-- nobody/nogroup 35214 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/annotatelog
-rw-r--r-- nobody/nogroup 11352 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/annotatelog.README
-rw-r--r-- nobody/nogroup 40153 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configCECs
-rw-r--r-- nobody/nogroup 6604 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configCECs.README
-rwxr-xr-x nobody/nogroup 7303 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configiba.1port
-rwxr-xr-x nobody/nogroup 7185 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configiba.2ports
-rw-r--r-- nobody/nogroup 4661 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configiba.README
-rw-r--r-- nobody/nogroup 17634 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/getGuids
-rw-r--r-- nobody/nogroup 2576 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/getGuids.README
-rw-r--r-- nobody/nogroup 43798 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/healthCheck
-rw-r--r-- nobody/nogroup 8792 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/healthCheck.README
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/netboot/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/netboot/sles/
-rwxr-xr-x nobody/nogroup 581 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.pkglist
-rwxr-xr-x nobody/nogroup 547 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.postinstall
-rwxr-xr-x nobody/nogroup 44 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.sles11.1.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 54 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.sles11.2.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 81 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.sles12.ppc64le.pkglist
-rwxr-xr-x nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/statelite.csv
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/netboot/rh/
-rwxr-xr-x nobody/nogroup 60 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 54 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels6.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 135 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels7.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 166 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels7.ppc64le.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/mypostscript/
-rwxr-xr-x nobody/nogroup 3754 2016-05-09 07:59 ./opt/xcat/share/xcat/mypostscript/mypostscript.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/doc/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/doc/packages/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/doc/packages/xCAT-server/
-rw-r--r-- nobody/nogroup 16453 2016-05-09 07:59 ./opt/xcat/share/doc/packages/xCAT-server/LICENSE.html
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/Confluent/
-rw-r--r-- nobody/nogroup 5010 2016-05-09 07:59 ./opt/xcat/lib/perl/Confluent/Client.pm
-rw-r--r-- nobody/nogroup 1932 2016-05-09 07:59 ./opt/xcat/lib/perl/Confluent/TLV.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT/
-rw-r--r-- nobody/nogroup 21617 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/ADUtils.pm
-rw-r--r-- nobody/nogroup 5831 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/FifoPipe.pm
-rw-r--r-- nobody/nogroup 5987 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/IMMUtils.pm
-rw-r--r-- nobody/nogroup 45715 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/IPMI.pm
-rw-r--r-- nobody/nogroup 18995 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/MellanoxIB.pm
-rw-r--r-- nobody/nogroup 5726 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/PasswordUtils.pm
-rw-r--r-- nobody/nogroup 65247 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/Postage.pm
-rw-r--r-- nobody/nogroup 92619 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/PPC.pm
-rw-r--r-- nobody/nogroup 10303 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/RShellAPI.pm
-rw-r--r-- nobody/nogroup 2713 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/SSHInteract.pm
-rw-r--r-- nobody/nogroup 382 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/State.pm
-rw-r--r-- nobody/nogroup 66551 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/SvrUtils.pm
-rw-r--r-- nobody/nogroup 68892 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/Template.pm
-rw-r--r-- nobody/nogroup 31957 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/TZUtils.pm
-rw-r--r-- nobody/nogroup 1949 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/WinUtils.pm
-rw-r--r-- nobody/nogroup 11895 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/xcatd.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_plugin/
-rw-r--r-- nobody/nogroup 8749 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/00kitnodebase.pm
-rw-r--r-- nobody/nogroup 3172 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/AAAusage.pm
-rw-r--r-- nobody/nogroup 40385 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/AAsn.pm
-rw-r--r-- nobody/nogroup 13412 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/activedirectory.pm
-rw-r--r-- nobody/nogroup 465240 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/aixinstall.pm
-rw-r--r-- nobody/nogroup 128159 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/anaconda.pm
-rw-r--r-- nobody/nogroup 209253 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/blade.pm
-rw-r--r-- nobody/nogroup 6208 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/bmcconfig.pm
-rw-r--r-- nobody/nogroup 28218 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/bmcdiscover.pm
-rw-r--r-- nobody/nogroup 6101 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/boottarget.pm
-rw-r--r-- nobody/nogroup 2078 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/bpa.pm
-rw-r--r-- nobody/nogroup 15141 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/configfpc.pm
-rw-r--r-- nobody/nogroup 17386 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/confluent.pm
-rw-r--r-- nobody/nogroup 19759 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/conserver.pm
-rw-r--r-- nobody/nogroup 5549 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/copycds.pm
-rw-r--r-- nobody/nogroup 16644 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/credentials.pm
-rw-r--r-- nobody/nogroup 144685 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/DBobjectdefs.pm
-rw-r--r-- nobody/nogroup 61002 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ddns.pm
-rw-r--r-- nobody/nogroup 64301 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/debian.pm
-rw-r--r-- nobody/nogroup 30396 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/destiny.pm
-rw-r--r-- nobody/nogroup 103382 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/dhcp.pm
-rw-r--r-- nobody/nogroup 36826 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/docker.pm
-rw-r--r-- nobody/nogroup 43078 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/energy.pm
-rw-r--r-- nobody/nogroup 209930 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/esx.pm
-rw-r--r-- nobody/nogroup 13534 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/FIP.pm
-rw-r--r-- nobody/nogroup 1640 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/frusetter.pm
-rw-r--r-- nobody/nogroup 12735 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/fsp.pm
-rw-r--r-- nobody/nogroup 17058 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/genimage.pm
-rw-r--r-- nobody/nogroup 8843 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/geninitrd.pm
-rw-r--r-- nobody/nogroup 21507 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/getadapter.pm
-rw-r--r-- nobody/nogroup 4252 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/getpartition.pm
-rw-r--r-- nobody/nogroup 3142 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/getpostscript.pm
-rw-r--r-- nobody/nogroup 27634 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/grub2.pm
-rw-r--r-- nobody/nogroup 9494 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hmc.pm
-rw-r--r-- nobody/nogroup 26931 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hosts.pm
-rw-r--r-- nobody/nogroup 51946 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hpblade.pm
-rw-r--r-- nobody/nogroup 23629 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hpilo.pm
-rw-r--r-- nobody/nogroup 28492 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/imgcapture.pm
-rw-r--r-- nobody/nogroup 75157 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/imgport.pm
-rw-r--r-- nobody/nogroup 277272 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ipmi.pm
-rw-r--r-- nobody/nogroup 6227 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/iscsi.pm
-rw-r--r-- nobody/nogroup 5830 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ivm.pm
-rw-r--r-- nobody/nogroup 197078 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/kit.pm
-rw-r--r-- nobody/nogroup 21426 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/kmodules.pm
-rw-r--r-- nobody/nogroup 157871 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/kvm.pm
-rw-r--r-- nobody/nogroup 16390 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/litetree.pm
-rw-r--r-- nobody/nogroup 83849 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/lsslp.pm
-rw-r--r-- nobody/nogroup 10236 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/makeknownhosts.pm
-rw-r--r-- nobody/nogroup 13347 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/makentp.pm
-rw-r--r-- nobody/nogroup 37103 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/mic.pm
-rw-r--r-- nobody/nogroup 12964 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/mknb.pm
-rw-r--r-- nobody/nogroup 59428 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/monctrlcmds.pm
-rw-r--r-- nobody/nogroup 20603 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/networks.pm
-rw-r--r-- nobody/nogroup 17919 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/nimol.pm
-rw-r--r-- nobody/nogroup 17867 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/nodediscover.pm
-rw-r--r-- nobody/nogroup 40100 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/nodestat.pm
-rw-r--r-- nobody/nogroup 8040 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/notification.pm
-rw-r--r-- nobody/nogroup 1207 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/offline.pm
-rw-r--r-- nobody/nogroup 8836 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ontap.pm
-rw-r--r-- nobody/nogroup 6161 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/osdistro.pm
-rw-r--r-- nobody/nogroup 22906 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/packimage.pm
-rw-r--r-- nobody/nogroup 20597 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/petitboot.pm
-rw-r--r-- nobody/nogroup 14368 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/prescripts.pm
-rw-r--r-- nobody/nogroup 105216 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/profilednodes.pm
-rw-r--r-- nobody/nogroup 22397 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/pxe.pm
-rw-r--r-- nobody/nogroup 7239 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/remoteimmsetup.pm
-rw-r--r-- nobody/nogroup 4687 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rescanplugins.pm
-rw-r--r-- nobody/nogroup 152017 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rhevm.pm
-rw-r--r-- nobody/nogroup 13425 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rinstall.pm
-rw-r--r-- nobody/nogroup 8982 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rmimage.pm
-rw-r--r-- nobody/nogroup 101594 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rollupdate.pm
-rw-r--r-- nobody/nogroup 40220 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/route.pm
-rw-r--r-- nobody/nogroup 52855 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/seqdiscovery.pm
-rw-r--r-- nobody/nogroup 87101 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/setup.pm
-rw-r--r-- nobody/nogroup 3499 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/sinv.pm
-rw-r--r-- nobody/nogroup 99824 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/sles.pm
-rw-r--r-- nobody/nogroup 9215 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/slpdiscover.pm
-rw-r--r-- nobody/nogroup 64157 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/snmove.pm
-rw-r--r-- nobody/nogroup 34016 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/statelite.pm
-rw-r--r-- nobody/nogroup 16687 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/svc.pm
-rw-r--r-- nobody/nogroup 7542 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/switch.pm
-rw-r--r-- nobody/nogroup 43473 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/switchdiscover.pm
-rw-r--r-- nobody/nogroup 2543 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/syncfiles.pm
-rw-r--r-- nobody/nogroup 98450 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/tabutils.pm
-rw-r--r-- nobody/nogroup 14819 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/toolscenter.pm
-rw-r--r-- nobody/nogroup 18655 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/tree.pm
-rw-r--r-- nobody/nogroup 102243 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/updatenode.pm
-rw-r--r-- nobody/nogroup 22116 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/vbox.pm
-rw-r--r-- nobody/nogroup 16209 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/vsmppxe.pm
-rw-r--r-- nobody/nogroup 34265 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/windows.pm
-rw-r--r-- nobody/nogroup 48553 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xcat2nim.pm
-rw-r--r-- nobody/nogroup 4764 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xCATWorld.pm
-rw-r--r-- nobody/nogroup 42511 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xdsh.pm
-rw-r--r-- nobody/nogroup 32264 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xen.pm
-rw-r--r-- nobody/nogroup 23734 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xnba.pm
-rw-r--r-- nobody/nogroup 31273 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/yaboot.pm
-rw-r--r-- nobody/nogroup 31482 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/zone.pm
-rw-r--r-- nobody/nogroup 327234 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/zvm.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_schema/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_schema/samples/
-rw-r--r-- nobody/nogroup 4995 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_schema/samples/Sample.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_monitoring/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_monitoring/samples/
-rw-r--r-- nobody/nogroup 3364 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/samples/mycode.pm
-rw-r--r-- nobody/nogroup 17259 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/samples/templatemon.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_monitoring/pcp/
-rw-r--r-- nobody/nogroup 89 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/pcp/pcpmon.config
-rw-r--r-- nobody/nogroup 3305 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/bootttmon.pm
-rw-r--r-- nobody/nogroup 32448 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/gangliamon.pm
-rw-r--r-- nobody/nogroup 52174 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/monitorctrl.pm
-rw-r--r-- nobody/nogroup 4096 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/montbhandler.pm
-rw-r--r-- nobody/nogroup 45247 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/nagiosmon.pm
-rw-r--r-- nobody/nogroup 12312 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/pcpmon.pm
-rw-r--r-- nobody/nogroup 9575 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/rrdutil.pm
-rw-r--r-- nobody/nogroup 43366 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/snmpmon.pm
-rw-r--r-- nobody/nogroup 16026 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/xcatmon.pm
-rw-r--r-- nobody/nogroup 1726 2016-05-09 07:59 ./opt/xcat/lib/shfunctions
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/xdsh/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/xdsh/Context/
-rw-r--r-- nobody/nogroup 9681 2016-05-09 07:59 ./opt/xcat/xdsh/Context/DSH.pm
-rw-r--r-- nobody/nogroup 10543 2016-05-09 07:59 ./opt/xcat/xdsh/Context/XCAT.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/ws/
-rwxr-xr-x nobody/nogroup 18430 2016-05-09 07:59 ./opt/xcat/ws/genrestapidoc.pm
-rwxr-xr-x nobody/nogroup 121453 2016-05-09 07:59 ./opt/xcat/ws/restapi.pl
-rwxr-xr-x nobody/nogroup 1071 2016-05-09 07:59 ./opt/xcat/ws/xcatrhevh.cgi
-rwxr-xr-x nobody/nogroup 2763 2016-05-09 07:59 ./opt/xcat/ws/xcatws-test.pl
-rwxr-xr-x nobody/nogroup 5460 2016-05-09 07:59 ./opt/xcat/ws/xcatws-test.sh
-rwxr-xr-x nobody/nogroup 146708 2016-05-09 07:59 ./opt/xcat/ws/xcatws.cgi
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/init.d/
-rwxr-xr-x nobody/nogroup 3139 2016-05-09 07:59 ./etc/init.d/xcatd
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/xcat/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/conf-enabled/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/conf-available/
-rw-r--r-- nobody/nogroup 353 2016-05-09 08:00 ./etc/apache2/conf-available/xcat-ws.conf
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/share/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/share/doc/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/share/doc/xcat-server/
-rw-r--r-- nobody/nogroup 16453 2016-05-09 07:59 ./usr/share/doc/xcat-server/LICENSE.html
-rw-r--r-- nobody/nogroup 11252 2016-05-09 07:59 ./usr/share/doc/xcat-server/copyright
-rw-r--r-- nobody/nogroup 465 2016-05-09 08:00 ./usr/share/doc/xcat-server/changelog.Debian.gz
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esxi/base.esxi4.1.tmpl -> ../esx/base.esxi4.1.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora12.tmpl -> compute.fedora13.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora15.pkglist -> compute.fedora14.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora15.tmpl -> compute.fedora14.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ol/compute.ol6.pkglist -> ../rh/compute.rhels6.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ol/compute.ol6.tmpl -> ../rh/compute.rhels6.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.rh.rhel7 -> pre.rh.rhels7
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.SL6.pkglist -> ../rh/compute.rhels6.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.SL6.tmpl -> ../rh/compute.rhels6.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.2.ppc64le.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.3.ppc64el.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.3.ppc64le.pkglist -> compute.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.4.ppc64el.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.4.ppc64le.pkglist -> compute.ubuntu14.04.4.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.ppc64le.pkglist -> compute.ubuntu14.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu16.04.ppc64le.pkglist -> compute.ubuntu16.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.ubuntu14.04.4.ppc64el.pkglist -> cudafull.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.ubuntu14.04.4.ppc64el.pkglist -> cudaruntime.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/kvm.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/service.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos7.exlist -> ../rh/compute.rhels7.x86_64.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos7.pkglist -> ../rh/compute.rhels7.x86_64.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos7.postinstall -> ../rh/compute.rhels7.x86_64.postinstall
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/dracut -> ../rh/dracut
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/dracut_033 -> ../rh/dracut_033
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/kvm.exlist -> ../rh/kvm.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/kvm.pkglist -> ../rh/kvm.rhels5.4.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/xen.exlist -> ../rh/xen.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/xen.pkglist -> ../rh/xen.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora12.pkglist -> compute.fedora13.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora15.pkglist -> compute.fedora14.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/check -> ../../rh/dracut/check
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/install.netboot -> ../../rh/dracut/install.netboot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/install.statelite -> ../../rh/dracut/install.statelite
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/installkernel -> ../../rh/dracut/installkernel
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-cmdline.sh -> ../../rh/dracut/xcat-cmdline.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-premount.sh -> ../../rh/dracut/xcat-premount.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-prepivot.sh -> ../../rh/dracut/xcat-prepivot.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-updateflag -> ../../rh/dracut/xcat-updateflag
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcatroot -> ../../rh/dracut/xcatroot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/check -> ../../rh/dracut/check
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/install.netboot -> ../../rh/dracut/install.netboot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/install.statelite -> ../../rh/dracut/install.statelite
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/installkernel -> ../../rh/dracut/installkernel
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-premount.sh -> ../../rh/dracut/xcat-premount.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-updateflag -> ../../rh/dracut/xcat-updateflag
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/compute.exlist -> ../rh/compute.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/compute.ol6.pkglist -> ../rh/compute.rhels6.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/compute.pkglist -> ../rh/compute.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/dracut -> ../rh/dracut
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/dracut_033 -> ../rh/dracut_033
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64le.exlist -> compute.rhels7.ppc64.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64le.pkglist -> compute.rhels7.ppc64.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64le.postinstall -> compute.rhels7.ppc64.postinstall
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/compute.SL6.pkglist -> ../rh/compute.rhels6.x86_64.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/check -> ../../rh/dracut/check
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/install.netboot -> ../../rh/dracut/install.netboot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/install.statelite -> ../../rh/dracut/install.statelite
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/installkernel -> ../../rh/dracut/installkernel
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-cmdline.sh -> ../../rh/dracut/xcat-cmdline.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-premount.sh -> ../../rh/dracut/xcat-premount.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-prepivot.sh -> ../../rh/dracut/xcat-prepivot.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-updateflag -> ../../rh/dracut/xcat-updateflag
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcatroot -> ../../rh/dracut/xcatroot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut_033 -> ../rh/dracut_033
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.2.ppc64le.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.3.ppc64le.pkglist -> compute.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.4.ppc64le.pkglist -> compute.ubuntu14.04.4.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.ppc64le.pkglist -> compute.ubuntu14.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.ppc64le.pkglist -> compute.ubuntu16.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.ubuntu14.04.3.ppc64el.pkglist -> cudafull.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.ubuntu14.04.4.ppc64el.pkglist -> cudafull.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.ubuntu14.04.2.ppc64el.pkglist -> cudafull.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.ubuntu14.04.3.ppc64el.pkglist -> cudafull.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.ubuntu14.04.4.ppc64el.pkglist -> cudafull.ubuntu14.04.4.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/devicetype/EthSwitch/Juniper -> Jun
lrwxrwxrwx nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/conf-enabled/xcat-ws.conf -> ../conf-available/xcat-ws.conf | 1.0 | [FVT] Ubuntu packaging problem, all files and directories belong to nobody.nogroup instead of root.root - All files and directories in the packages of xCAT Ubuntu build belong to ``nobody.nogroup``. Which is incorrect. All the files and directories should belong to ``root.root``.
# dpkg -c xcat-server_2.12-snap201605090931_all.deb
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/bin/
-rwxr-xr-x nobody/nogroup 2555 2016-05-09 07:59 ./opt/xcat/bin/replaycons
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/sbin/
-rwxr-xr-x nobody/nogroup 4331 2016-05-09 07:59 ./opt/xcat/sbin/chtab
-rwxr-xr-x nobody/nogroup 15492 2016-05-09 07:59 ./opt/xcat/sbin/configmic
-rwxr-xr-x nobody/nogroup 6016 2016-05-09 07:59 ./opt/xcat/sbin/flashmic
-rwxr-xr-x nobody/nogroup 1534 2016-05-09 07:59 ./opt/xcat/sbin/makenamed.conf
-rwxr-xr-x nobody/nogroup 7411 2016-05-09 07:59 ./opt/xcat/sbin/pcp_collect
-rwxr-xr-x nobody/nogroup 7848 2016-05-09 07:59 ./opt/xcat/sbin/proxydhcp-xcat
-rwxr-xr-x nobody/nogroup 8381 2016-05-09 07:59 ./opt/xcat/sbin/restartxcatd
-rwxr-xr-x nobody/nogroup 972 2016-05-09 07:59 ./opt/xcat/sbin/rshell_api
-rwxr-xr-x nobody/nogroup 709 2016-05-09 07:59 ./opt/xcat/sbin/runcmdinstaller
-rwxr-xr-x nobody/nogroup 10253 2016-05-09 07:59 ./opt/xcat/sbin/runsqlcmd
-rwxr-xr-x nobody/nogroup 2427 2016-05-09 07:59 ./opt/xcat/sbin/stopstartxcatd
-rwxr-xr-x nobody/nogroup 9199 2016-05-09 07:59 ./opt/xcat/sbin/updateSNimage
-rwxr-xr-x nobody/nogroup 14727 2016-05-09 07:59 ./opt/xcat/sbin/xcat_traphandler
-rwxr-xr-x nobody/nogroup 71652 2016-05-09 07:59 ./opt/xcat/sbin/xcatconfig
-rwxr-xr-x nobody/nogroup 129689 2016-05-09 07:59 ./opt/xcat/sbin/xcatd
-rwxr-xr-x nobody/nogroup 3769 2016-05-09 07:59 ./opt/xcat/sbin/xcatdebug
-rwxr-xr-x nobody/nogroup 2655 2016-05-09 07:59 ./opt/xcat/sbin/xcatnodemon
-rwxr-xr-x nobody/nogroup 13933 2016-05-09 07:59 ./opt/xcat/sbin/xcatsnap
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/centos/
-rw-r--r-- nobody/nogroup 336 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/all.pkglist
-rw-r--r-- nobody/nogroup 3047 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/all.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos6.pkglist
-rw-r--r-- nobody/nogroup 2702 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos6.tmpl
-rw-r--r-- nobody/nogroup 139 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos7.pkglist
-rw-r--r-- nobody/nogroup 2924 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.centos7.tmpl
-rw-r--r-- nobody/nogroup 319 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.pkglist
-rw-r--r-- nobody/nogroup 3031 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/compute.tmpl
-rw-r--r-- nobody/nogroup 3176 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/iscsi.centos6.tmpl
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/iscsi.pkglist
-rw-r--r-- nobody/nogroup 3180 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/iscsi.tmpl
-rw-r--r-- nobody/nogroup 2681 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/kvm.centos6.tmpl
-rw-r--r-- nobody/nogroup 3525 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/storage.centos6.tmpl
-rw-r--r-- nobody/nogroup 523 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/storage.pkglist
-rw-r--r-- nobody/nogroup 3529 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/storage.tmpl
-rw-r--r-- nobody/nogroup 2993 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/xen.centos6.tmpl
-rw-r--r-- nobody/nogroup 347 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/xen.pkglist
-rw-r--r-- nobody/nogroup 2997 2016-05-09 07:59 ./opt/xcat/share/xcat/install/centos/xen.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/
-rw-r--r-- nobody/nogroup 4443 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/compute.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/debian-installer-startup.d/
-rw-r--r-- nobody/nogroup 476 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/debian-installer-startup.d/S10detectnic
-rw-r--r-- nobody/nogroup 296 2016-05-09 07:59 ./opt/xcat/share/xcat/install/debian/initoverlay/lib/debian-installer-startup.d/S10setserver
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/esx/
-rw-r--r-- nobody/nogroup 1403 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esx/base.esxi4.1.tmpl
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esx/esx.pkglist
-rw-r--r-- nobody/nogroup 1285 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esx/esx.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/esxi/
-rw-r--r-- nobody/nogroup 2334 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esxi/hypervisor.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/fedora/
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora12.pkglist
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora13.pkglist
-rw-r--r-- nobody/nogroup 2947 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora13.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora14.pkglist
-rw-r--r-- nobody/nogroup 2947 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora14.tmpl
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora19.pkglist
-rw-r--r-- nobody/nogroup 2860 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora19.tmpl
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora20.pkglist
-rw-r--r-- nobody/nogroup 2860 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora20.tmpl
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora21.pkglist
-rw-r--r-- nobody/nogroup 2867 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora21.tmpl
-rw-r--r-- nobody/nogroup 253 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora8.pkglist
-rw-r--r-- nobody/nogroup 3012 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora8.tmpl
-rw-r--r-- nobody/nogroup 246 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.pkglist
-rw-r--r-- nobody/nogroup 246 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3156 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3011 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora9.tmpl
-rw-r--r-- nobody/nogroup 246 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.pkglist
-rw-r--r-- nobody/nogroup 253 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3060 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3011 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.tmpl
-rw-r--r-- nobody/nogroup 240 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.pkglist
-rw-r--r-- nobody/nogroup 240 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3212 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3169 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.fedora9.tmpl
-rw-r--r-- nobody/nogroup 247 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.pkglist
-rw-r--r-- nobody/nogroup 247 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3213 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3170 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/iscsi.tmpl
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora8.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora8.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora8.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 304 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.pkglist
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3087 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3022 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.tmpl
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.fedora9.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 324 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.pkglist
-rw-r--r-- nobody/nogroup 324 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3088 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3009 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/service.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/hyperv/
-rw-r--r-- nobody/nogroup 6289 2016-05-09 07:59 ./opt/xcat/share/xcat/install/hyperv/hypervisor.hyperv2012.x86_64.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/ol/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/pkvm/
-rw-r--r-- nobody/nogroup 872 2016-05-09 07:59 ./opt/xcat/share/xcat/install/pkvm/compute.pkvm2.ppc64.tmpl
-rw-r--r-- nobody/nogroup 1046 2016-05-09 07:59 ./opt/xcat/share/xcat/install/pkvm/compute.pkvm3.ppc64le.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/rh/
-rw-r--r-- nobody/nogroup 323 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.pkglist
-rw-r--r-- nobody/nogroup 323 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3086 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.ppc64.tmpl
-rw-r--r-- nobody/nogroup 325 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel4.pkglist
-rw-r--r-- nobody/nogroup 3011 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel4.tmpl
-rw-r--r-- nobody/nogroup 3067 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel5.ppc64.tmpl
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel5.s390x.pkglist
-rw-r--r-- nobody/nogroup 694 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhel5.s390x.tmpl
-rw-r--r-- nobody/nogroup 114 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhelhpc6.pkglist
-rw-r--r-- nobody/nogroup 2910 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhelhpc6.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.pkglist
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3287 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 16 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.s390x.pkglist
-rw-r--r-- nobody/nogroup 691 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.s390x.tmpl
-rw-r--r-- nobody/nogroup 2831 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.x86_64.pkglist
-rw-r--r-- nobody/nogroup 3108 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels6.x86_64.tmpl
-rw-r--r-- nobody/nogroup 139 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels7.pkglist
-rw-r--r-- nobody/nogroup 3192 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.rhels7.tmpl
-rw-r--r-- nobody/nogroup 3042 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute.tmpl
-rw-r--r-- nobody/nogroup 2960 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/compute_ad.rhels6.tmpl
-rw-r--r-- nobody/nogroup 84 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/cudafull.rhels7.ppc64le.pkglist
-rw-r--r-- nobody/nogroup 97 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/cudaruntime.rhels7.ppc64le.pkglist
-rw-r--r-- nobody/nogroup 142 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/hpc.rhels6.pkglist
-rw-r--r-- nobody/nogroup 2910 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/hpc.rhels6.tmpl
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.pkglist
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3223 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.ppc64.tmpl
-rw-r--r-- nobody/nogroup 3176 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.rhels6.tmpl
-rw-r--r-- nobody/nogroup 3180 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/iscsi.tmpl
-rw-r--r-- nobody/nogroup 140 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.pkglist
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhel6.pkglist
-rw-r--r-- nobody/nogroup 2896 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhel6.tmpl
-rw-r--r-- nobody/nogroup 210 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels5.pkglist
-rw-r--r-- nobody/nogroup 3626 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels5.tmpl
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels6.pkglist
-rw-r--r-- nobody/nogroup 2932 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels6.tmpl
-rw-r--r-- nobody/nogroup 166 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels7.pkglist
-rw-r--r-- nobody/nogroup 2848 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.rhels7.tmpl
-rw-r--r-- nobody/nogroup 3628 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/kvm.tmpl
-rw-r--r-- nobody/nogroup 388 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.pkglist
-rw-r--r-- nobody/nogroup 388 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3067 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.ppc64.tmpl
-rw-r--r-- nobody/nogroup 2920 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.raid1.multipath.rhel6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 2896 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.raid1.rhel6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 61 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels5.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 59 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels5.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 62 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels5.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 137 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 475 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.ppc64.pkglist
-rw-r--r-- nobody/nogroup 3021 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.ppc64.tmpl
-rw-r--r-- nobody/nogroup 140 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 293 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.x86_64.pkglist
-rw-r--r-- nobody/nogroup 2834 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels6.x86_64.tmpl
-rw-r--r-- nobody/nogroup 137 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 484 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64.pkglist
-rw-r--r-- nobody/nogroup 143 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64le.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 450 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.ppc64le.pkglist
-rw-r--r-- nobody/nogroup 2922 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.tmpl
-rw-r--r-- nobody/nogroup 140 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 302 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.rhels7.x86_64.pkglist
-rw-r--r-- nobody/nogroup 3022 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/service.tmpl
-rw-r--r-- nobody/nogroup 523 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.pkglist
-rw-r--r-- nobody/nogroup 435 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.rhels6.pkglist
-rw-r--r-- nobody/nogroup 3510 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.rhels6.tmpl
-rw-r--r-- nobody/nogroup 3529 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/storage.tmpl
-rw-r--r-- nobody/nogroup 45 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels5.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 44 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels6.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 45 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels6.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 44 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels7.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 46 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels7.ppc64le.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 45 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/sysclone.rhels7.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 347 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/xen.pkglist
-rw-r--r-- nobody/nogroup 2993 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/xen.rhels6.tmpl
-rw-r--r-- nobody/nogroup 2997 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/xen.tmpl
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhel5.s390x.pkglist
-rw-r--r-- nobody/nogroup 706 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhel5.s390x.tmpl
-rw-r--r-- nobody/nogroup 16 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhels6.s390x.pkglist
-rw-r--r-- nobody/nogroup 706 2016-05-09 07:59 ./opt/xcat/share/xcat/install/rh/zfcp.rhels6.s390x.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/scripts/
-rw-r--r-- nobody/nogroup 2358 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/chroot.sles
-rw-r--r-- nobody/nogroup 3209 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/chroot.sles.iscsi
-rw-r--r-- nobody/nogroup 7824 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/getinstdisk
-rw-r--r-- nobody/nogroup 6486 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.debian
-rw-r--r-- nobody/nogroup 1434 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.esx
-rw-r--r-- nobody/nogroup 137 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rh
-rw-r--r-- nobody/nogroup 2571 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rh.common
-rw-r--r-- nobody/nogroup 306 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rh.iscsi
-rw-r--r-- nobody/nogroup 4923 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rhel5.s390x
-rw-r--r-- nobody/nogroup 4940 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rhel6.s390x
-rw-r--r-- nobody/nogroup 1350 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.rhels7
-rw-r--r-- nobody/nogroup 377 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles
-rwxr-xr-x nobody/nogroup 1554 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles.common
-rw-r--r-- nobody/nogroup 373 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles.iscsi
-rw-r--r-- nobody/nogroup 5673 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles10.s390x
-rw-r--r-- nobody/nogroup 530 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11
-rw-r--r-- nobody/nogroup 568 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11.iscsi
-rw-r--r-- nobody/nogroup 577 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11.raid1
-rw-r--r-- nobody/nogroup 5780 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.sles11.s390x
-rwxr-xr-x nobody/nogroup 133 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.ubuntu
-rwxr-xr-x nobody/nogroup 1702 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.ubuntu.common
-rwxr-xr-x nobody/nogroup 15405 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/post.xcat
-rw-r--r-- nobody/nogroup 1488 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.debian
-rwxr-xr-x nobody/nogroup 644 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.pkvm3
-rw-r--r-- nobody/nogroup 6647 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.rh
-rwxr-xr-x nobody/nogroup 5629 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.rh.rhels7
-rw-r--r-- nobody/nogroup 4893 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.sles
-rw-r--r-- nobody/nogroup 6179 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.ubuntu
-rw-r--r-- nobody/nogroup 6543 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.ubuntu.ppc64
-rw-r--r-- nobody/nogroup 1669 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/scriptlib
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/SL/
-rw-r--r-- nobody/nogroup 323 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.pkglist
-rw-r--r-- nobody/nogroup 2952 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/sles/
-rw-r--r-- nobody/nogroup 29 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.pkglist
-rw-r--r-- nobody/nogroup 3258 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sdk.sles11.tmpl
-rw-r--r-- nobody/nogroup 41 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.ppc64.pkglist
-rw-r--r-- nobody/nogroup 2774 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.ppc64.tmpl
-rw-r--r-- nobody/nogroup 19 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.s390x.pkglist
-rw-r--r-- nobody/nogroup 20478 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles10.s390x.tmpl
-rw-r--r-- nobody/nogroup 21 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.pkglist
-rw-r--r-- nobody/nogroup 19 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.s390x.pkglist
-rw-r--r-- nobody/nogroup 20478 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.s390x.tmpl
-rw-r--r-- nobody/nogroup 2544 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles11.tmpl
-rw-r--r-- nobody/nogroup 29 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles12.pkglist
-rw-r--r-- nobody/nogroup 4858 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles12.ppc64le.tmpl
-rw-r--r-- nobody/nogroup 3119 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.sles12.tmpl
-rw-r--r-- nobody/nogroup 3097 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/compute.tmpl
-rw-r--r-- nobody/nogroup 33 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsi.pkglist
-rw-r--r-- nobody/nogroup 3291 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsi.tmpl
-rw-r--r-- nobody/nogroup 33 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsiibft.sles11.pkglist
-rw-r--r-- nobody/nogroup 3253 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/iscsiibft.sles11.tmpl
-rw-r--r-- nobody/nogroup 5963 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.raid1.sles11.tmpl
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles10.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles10.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 70 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles10.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 441 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.pkglist
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 3123 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.tmpl
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 75 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/service.sles11.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/sysclone.sles10.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 47 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/sysclone.sles11.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/sysclone.sles11.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 148 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/xen.pkglist
-rw-r--r-- nobody/nogroup 4200 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/xen.tmpl
-rw-r--r-- nobody/nogroup 15 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles10.s390x.pkglist
-rw-r--r-- nobody/nogroup 18389 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles10.s390x.tmpl
-rw-r--r-- nobody/nogroup 15 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles11.s390x.pkglist
-rw-r--r-- nobody/nogroup 18389 2016-05-09 07:59 ./opt/xcat/share/xcat/install/sles/zfcp.sles11.s390x.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/suse/
-rw-r--r-- nobody/nogroup 22 2016-05-09 07:59 ./opt/xcat/share/xcat/install/suse/compute.pkglist
-rw-r--r-- nobody/nogroup 2777 2016-05-09 07:59 ./opt/xcat/share/xcat/install/suse/compute.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/ubuntu/
-rw-r--r-- nobody/nogroup 41 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.pkglist
-rw-r--r-- nobody/nogroup 4819 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.tmpl
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 147 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 127 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu16.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 87 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 120 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.ubuntu14.04.3.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 132 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.ubuntu14.04.3.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 92 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/kvm.pkglist
-rw-r--r-- nobody/nogroup 70 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/service.pkglist
-rw-r--r-- nobody/nogroup 87 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/service.ubuntu.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/install/windows/
-rw-r--r-- nobody/nogroup 6505 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/datacenter.win2012.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6847 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win2k8.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6581 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win2k8r2.x86_64.tmpl
-rwxr-xr-x nobody/nogroup 5670 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win7.x86_64.tmpl
-rwxr-xr-x nobody/nogroup 5680 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise.win8.x86_64.tmpl
-rw-r--r-- nobody/nogroup 7619 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/enterprise_ad.win2k8r2.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6511 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/standard.win2012.x86_64.tmpl
-rw-r--r-- nobody/nogroup 6847 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/standard.win2k8.x86_64.tmpl
-rwxr-xr-x nobody/nogroup 5666 2016-05-09 07:59 ./opt/xcat/share/xcat/install/windows/ultimate.win7.x86_64.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/
-rwxr-xr-x nobody/nogroup 1486 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsc
-rwxr-xr-x nobody/nogroup 1928 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsc.pl
-rwxr-xr-x nobody/nogroup 530 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsd
-rwxr-xr-x nobody/nogroup 7412 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/autogpfs/autogpfsd.pl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/statelite/
-rwxr-xr-x nobody/nogroup 583 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/add_passwd
-rwxr-xr-x nobody/nogroup 1858 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/add_ssh
-rwxr-xr-x nobody/nogroup 12642 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/rc.localdisk
-rwxr-xr-x nobody/nogroup 18567 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/rc.statelite
-rwxr-xr-x nobody/nogroup 18331 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/statelite/rc.statelite.ppc.redhat
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/torque/
-rwxr-xr-x nobody/nogroup 2665 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/add_torque
-rwxr-xr-x nobody/nogroup 906 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/moab
-rwxr-xr-x nobody/nogroup 1337 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs
-rwxr-xr-x nobody/nogroup 1028 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs_mom
-rwxr-xr-x nobody/nogroup 771 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs_sched
-rwxr-xr-x nobody/nogroup 988 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbs_server
-rwxr-xr-x nobody/nogroup 356 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/pbsnodestat
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/
-rwxr-xr-x nobody/nogroup 962 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/epilogue
-rwxr-xr-x nobody/nogroup 468 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/killuser
-rwxr-xr-x nobody/nogroup 1028 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/pbspsh
-rwxr-xr-x nobody/nogroup 822 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/prologue
-rwxr-xr-x nobody/nogroup 578 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/setupnode
-rwxr-xr-x nobody/nogroup 382 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/setupnode2
-rwxr-xr-x nobody/nogroup 1657 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/takedownnode
-rwxr-xr-x nobody/nogroup 222 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/scripts/takedownnode2
-rwxr-xr-x nobody/nogroup 820 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/add-on/torque/xpbsnodes
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/aix/
-rw-r--r-- nobody/nogroup 204 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/aix/xcatAIXpost
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/centos/
-rw-r--r-- nobody/nogroup 154 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos6.pkglist
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.exlist
-rw-r--r-- nobody/nogroup 102 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.pkglist
-rw-r--r-- nobody/nogroup 164 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/kvm.centos6.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/debian/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/debian/compute.exlist
-rw-r--r-- nobody/nogroup 108 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/debian/compute.pkglist
-rwxr-xr-x nobody/nogroup 40690 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/debian/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/esxi/
-rw-r--r-- nobody/nogroup 550 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/38.xcat-enableipv6
-rw-r--r-- nobody/nogroup 729 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/39.ipv6fixup
-rw-r--r-- nobody/nogroup 868 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/47.xcat-networking
-rw-r--r-- nobody/nogroup 453 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/48.esxifixup
-rw-r--r-- nobody/nogroup 345 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/99.esxiready
-rw-r--r-- nobody/nogroup 240 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/xcat-ipv6.json
-rw-r--r-- nobody/nogroup 52 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/esxi/xcatsplash
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.exlist
-rw-r--r-- nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora13.pkglist
-rw-r--r-- nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora14.pkglist
-rw-r--r-- nobody/nogroup 118 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.pkglist
-rw-r--r-- nobody/nogroup 117 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.ppc64.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora/dracut/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-cmdline.sh
-rwxr-xr-x nobody/nogroup 2712 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 5873 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcatroot
-rw-r--r-- nobody/nogroup 215 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.exlist
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora8.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 63 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora8.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora8.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 65 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora9.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 66 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.fedora9.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 234 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/service.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/fedora12/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/compute.exlist
-rw-r--r-- nobody/nogroup 101 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/compute.pkglist
-rw-r--r-- nobody/nogroup 117 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/compute.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 37099 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/genimage
-rwxr-xr-x nobody/nogroup 38877 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/geninitrd
-rw-r--r-- nobody/nogroup 215 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/service.exlist
-rw-r--r-- nobody/nogroup 177 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora12/service.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/imgutils/
-rw-r--r-- nobody/nogroup 5553 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/imgutils/imgutils.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/mic/
-rwxr-xr-x nobody/nogroup 7939 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/mic/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/ol/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/
-rw-r--r-- nobody/nogroup 257 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.exlist
-rw-r--r-- nobody/nogroup 58 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.imgcapture.exlist
-rw-r--r-- nobody/nogroup 131 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.pkglist
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.ppc64.postinstall
-rw-r--r-- nobody/nogroup 150 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhas4.pkglist
-rw-r--r-- nobody/nogroup 154 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel5.s390x.pkglist
-rw-r--r-- nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.pkglist
-rw-r--r-- nobody/nogroup 203 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.ppc64.postinstall
-rw-r--r-- nobody/nogroup 142 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhel6.s390x.pkglist
-rw-r--r-- nobody/nogroup 187 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhelhpc6.pkglist
-rw-r--r-- nobody/nogroup 149 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels5.pkglist
-rw-r--r-- nobody/nogroup 159 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels5.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels5.ppc64.postinstall
-rw-r--r-- nobody/nogroup 138 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.pkglist
-rw-r--r-- nobody/nogroup 799 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.ppc64.exlist
-rw-r--r-- nobody/nogroup 223 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2022 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.ppc64.postinstall
-rw-r--r-- nobody/nogroup 798 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.x86_64.exlist
-rw-r--r-- nobody/nogroup 190 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 2022 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels6.x86_64.postinstall
-rw-r--r-- nobody/nogroup 799 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64.exlist
-rw-r--r-- nobody/nogroup 220 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 1867 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64.postinstall
-rw-r--r-- nobody/nogroup 799 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.x86_64.exlist
-rw-r--r-- nobody/nogroup 187 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 1867 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.x86_64.postinstall
-rw-r--r-- nobody/nogroup 52 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/cudafull.rhels7.ppc64le.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 64 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/cudaruntime.rhels7.ppc64le.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/dracut/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/check
-rwxr-xr-x nobody/nogroup 403 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/install.netboot
-rwxr-xr-x nobody/nogroup 386 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/installkernel
-rw-r--r-- nobody/nogroup 91 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-cmdline.sh
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-premount.sh
-rwxr-xr-x nobody/nogroup 3838 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 460 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcat-updateflag
-rwxr-xr-x nobody/nogroup 7428 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut/xcatroot
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/dracut_033/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/check
-rwxr-xr-x nobody/nogroup 362 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/install.netboot
-rwxr-xr-x nobody/nogroup 346 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/installkernel
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/
-rwxr-xr-x nobody/nogroup 1277 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/module-setup.sh
-rwxr-xr-x nobody/nogroup 1247 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/rsyslogd-start.sh
-rwxr-xr-x nobody/nogroup 2979 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/patch/syslog/syslog-genrules.sh
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-cmdline.sh
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-premount.sh
-rwxr-xr-x nobody/nogroup 5302 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 460 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcat-updateflag
-rwxr-xr-x nobody/nogroup 10061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/dracut_033/xcatroot
-rwxr-xr-x nobody/nogroup 77597 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/genimage
-rwxr-xr-x nobody/nogroup 40498 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/genimage.rh4
-rw-r--r-- nobody/nogroup 650 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/kvm.exlist
-rw-r--r-- nobody/nogroup 272 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/kvm.rhels5.4.pkglist
-rw-r--r-- nobody/nogroup 164 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/kvm.rhels6.pkglist
-rw-r--r-- nobody/nogroup 131 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/nfsroot.pkglist
-rw-r--r-- nobody/nogroup 1140 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/nfsroot.rwfiles
-rw-r--r-- nobody/nogroup 3162 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/readme_for_genimage.rh4
-rw-r--r-- nobody/nogroup 215 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.exlist
-rw-r--r-- nobody/nogroup 366 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.postinstall
-rw-r--r-- nobody/nogroup 377 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.ppc64.pkglist
-rw-r--r-- nobody/nogroup 61 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.ppc64.otherpkgs.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.ppc64.postinstall
-rw-r--r-- nobody/nogroup 59 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 62 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels5.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 61 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels6.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 435 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 2029 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/service.rhels6.ppc64.postinstall
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/xen.exlist
-rw-r--r-- nobody/nogroup 203 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/xen.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/SL/
-rw-r--r-- nobody/nogroup 257 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/compute.exlist
-rw-r--r-- nobody/nogroup 131 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/compute.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/SL/dracut/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/sles/
-rw-r--r-- nobody/nogroup 235 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.exlist
-rw-r--r-- nobody/nogroup 58 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.imgcapture.exlist
-rw-r--r-- nobody/nogroup 96 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.pkglist
-rwxr-xr-x nobody/nogroup 1827 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.postinstall
-rw-r--r-- nobody/nogroup 413 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.repolist
-rw-r--r-- nobody/nogroup 235 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles10.ppc64.exlist
-rw-r--r-- nobody/nogroup 237 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles10.ppc64.pkglist
-rw-r--r-- nobody/nogroup 2026 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles10.ppc64.postinstall
-rw-r--r-- nobody/nogroup 153 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.pkglist
-rwxr-xr-x nobody/nogroup 2061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.postinstall
-rwxr-xr-x nobody/nogroup 1152 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.ppc64.exlist
-rw-r--r-- nobody/nogroup 164 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.ppc64.pkglist
-rw-r--r-- nobody/nogroup 217 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.s390x.pkglist
-rwxr-xr-x nobody/nogroup 1154 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles11.x86_64.exlist
-rwxr-xr-x nobody/nogroup 1195 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.ppc64le.exlist
-rw-r--r-- nobody/nogroup 389 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.ppc64le.pkglist
-rwxr-xr-x nobody/nogroup 2061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.ppc64le.postinstall
-rwxr-xr-x nobody/nogroup 1132 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.x86_64.exlist
-rw-r--r-- nobody/nogroup 389 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 2061 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/compute.sles12.x86_64.postinstall
-rwxr-xr-x nobody/nogroup 301 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/copy_profile.sh
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/sles/dracut_033/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/check
-rwxr-xr-x nobody/nogroup 362 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/install.netboot
-rwxr-xr-x nobody/nogroup 346 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/installkernel
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/
-rwxr-xr-x nobody/nogroup 1277 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/module-setup.sh
-rwxr-xr-x nobody/nogroup 1247 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/rsyslogd-start.sh
-rwxr-xr-x nobody/nogroup 2979 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/patch/syslog/syslog-genrules.sh
-rw-r--r-- nobody/nogroup 99 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-cmdline.sh
-rw-r--r-- nobody/nogroup 317 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-premount.sh
-rwxr-xr-x nobody/nogroup 5254 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 460 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcat-updateflag
-rwxr-xr-x nobody/nogroup 9728 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/dracut_033/xcatroot
-rwxr-xr-x nobody/nogroup 84259 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/genimage
-rwxr-xr-x nobody/nogroup 22832 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/genimage.yum
-rw-r--r-- nobody/nogroup 218 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.exlist
-rw-r--r-- nobody/nogroup 177 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.pkglist
-rw-r--r-- nobody/nogroup 413 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.repolist
-rw-r--r-- nobody/nogroup 2526 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.postinstall
-rw-r--r-- nobody/nogroup 218 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.exlist
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 464 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.pkglist
-rw-r--r-- nobody/nogroup 2526 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.ppc64.postinstall
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 75 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles10.x86_64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 613 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.pkglist
-rwxr-xr-x nobody/nogroup 2733 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.postinstall
-rw-r--r-- nobody/nogroup 74 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.ppc64.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 623 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.ppc64.pkglist
-rw-r--r-- nobody/nogroup 622 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.ppc64.repolist
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.x86.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 75 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/service.sles11.x86_64.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/suse/
-rw-r--r-- nobody/nogroup 232 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/compute.exlist
-rw-r--r-- nobody/nogroup 121 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/compute.suse11.pkglist
-rwxr-xr-x nobody/nogroup 2062 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/compute.suse11.postinstall
-rwxr-xr-x nobody/nogroup 29534 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/ubuntu/
-rwxr-xr-x nobody/nogroup 175 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.exlist
-rw-r--r-- nobody/nogroup 139 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.pkglist
-rwxr-xr-x nobody/nogroup 2128 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.postinstall
-rw-r--r-- nobody/nogroup 138 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu12.04.1.pkglist
-rw-r--r-- nobody/nogroup 151 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu12.04.2.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.2.x86_64.pkglist
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.3.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 157 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.3.x86_64.pkglist
-rw-r--r-- nobody/nogroup 156 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.4.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 156 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.4.x86_64.pkglist
-rw-r--r-- nobody/nogroup 138 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.pkglist
-rw-r--r-- nobody/nogroup 147 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 150 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 158 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.x86_64.pkglist
-rw-r--r-- nobody/nogroup 5 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.otherpkgs.pkglist
-rw-r--r-- nobody/nogroup 114 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.ubuntu14.04.2.ppc64el.pkglist
-rw-r--r-- nobody/nogroup 17 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.otherpkgs.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/
-rwxr-xr-x nobody/nogroup 49 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/check
-rwxr-xr-x nobody/nogroup 267 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/install.netboot
-rwxr-xr-x nobody/nogroup 202 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/install.statelite
-rwxr-xr-x nobody/nogroup 32 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/installkernel
-rw-r--r-- nobody/nogroup 91 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/xcat-cmdline.sh
-rwxr-xr-x nobody/nogroup 2635 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/xcat-prepivot.sh
-rwxr-xr-x nobody/nogroup 5280 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/dracut/xcatroot
-rwxr-xr-x nobody/nogroup 70642 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/genimage
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/netboot/windows/
-rwxr-xr-x nobody/nogroup 512 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/detectefi.cpp
-rwxr-xr-x nobody/nogroup 52224 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/detectefi.exe
-rw-r--r-- nobody/nogroup 3809 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/fixupunattend.vbs
-rw-r--r-- nobody/nogroup 5160 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/genimage.bat
-rw-r--r-- nobody/nogroup 7089 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/genimage.cmd
-rwxr-xr-x nobody/nogroup 816 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/getnextserver.cpp
-rwxr-xr-x nobody/nogroup 52736 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/getnextserver.exe
-rw-r--r-- nobody/nogroup 912 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/nextdestiny.ps1
-rw-r--r-- nobody/nogroup 1966 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/startnet.cmd
-rw-r--r-- nobody/nogroup 3071 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/xCAT.format.ps1xml
-rwxr-xr-x nobody/nogroup 5458 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/xCAT.psd1
-rw-r--r-- nobody/nogroup 17680 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/windows/xCAT.psm1
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/templates/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ca/
-rw-r--r-- nobody/nogroup 2023 2016-05-09 07:59 ./opt/xcat/share/xcat/ca/Makefile
-rw-r--r-- nobody/nogroup 9855 2016-05-09 07:59 ./opt/xcat/share/xcat/ca/openssl.cnf.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/scripts/
-rwxr-xr-x nobody/nogroup 312 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/bitscount.pl
-rwxr-xr-x nobody/nogroup 12134 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/cfm2xcat
-rwxr-xr-x nobody/nogroup 212 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/countbits.pl
-rwxr-xr-x nobody/nogroup 1782 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/createdb.sql
-rwxr-xr-x nobody/nogroup 18183 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/csm2xcat
-rw-r--r-- nobody/nogroup 628 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/exportxcatcreds.sh
-rwxr-xr-x nobody/nogroup 3200 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/extractefiboot.pl
-rw-r--r-- nobody/nogroup 1010 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/genduiduuid.sh
-rw-r--r-- nobody/nogroup 1670 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/genula.sh
-rwxr-xr-x nobody/nogroup 3970 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/insptbls
-rwxr-xr-x nobody/nogroup 2392 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/ipcalc.ksh
-rw-r--r-- nobody/nogroup 69489 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/mkay4z
-rwxr-xr-x nobody/nogroup 2296 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-dockerhost-cert.sh
-rwxr-xr-x nobody/nogroup 2626 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-local-client.sh
-rwxr-xr-x nobody/nogroup 1490 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-server-cert.sh
-rwxr-xr-x nobody/nogroup 1260 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/setup-xcat-ca.sh
-rwxr-xr-x nobody/nogroup 468 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/updateDBM.sql
-rw-r--r-- nobody/nogroup 16970 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xcatconf4z
-rw-r--r-- nobody/nogroup 298 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xcatfmcd.conf
-rwxr-xr-x nobody/nogroup 12056 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xcatvio.script
-rwxr-xr-x nobody/nogroup 1159 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xdcpappend.sh
-rwxr-xr-x nobody/nogroup 3904 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xdcpmerge.sh
-rwxr-xr-x nobody/nogroup 12983 2016-05-09 07:59 ./opt/xcat/share/xcat/scripts/xHRM
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/tools/
-rwxr-xr-x nobody/nogroup 8283 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/detect_dhcpd
-rwxr-xr-x nobody/nogroup 1083 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/mac2linklocal
-rwxr-xr-x nobody/nogroup 17010 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/mktoolscenter
-rwxr-xr-x nobody/nogroup 12998 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/nodesw
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/tools/powervm/
-rw-r--r-- nobody/nogroup 971 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/README
-rw-r--r-- nobody/nogroup 18993 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/configcec.pm
-rwxr-xr-x nobody/nogroup 8234 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/configvios
-rwxr-xr-x nobody/nogroup 1472 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/installsshforvios
-rw-r--r-- nobody/nogroup 144291 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/powerVMsteps.odt
-rwxr-xr-x nobody/nogroup 859 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/vios.conf
-rw-r--r-- nobody/nogroup 970 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/powervm/xcataixpost.patch
-rwxr-xr-x nobody/nogroup 3662 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/reorgtbls
-rwxr-xr-x nobody/nogroup 3154 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/rmblade
-rwxr-xr-x nobody/nogroup 1932 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/rmnodecfg
-rwxr-xr-x nobody/nogroup 6292 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/test_hca_state
-rwxr-xr-x nobody/nogroup 63982 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/xCATreg
-rwxr-xr-x nobody/nogroup 5564 2016-05-09 07:59 ./opt/xcat/share/xcat/tools/xcatstat
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/rollupdate/
-rw-r--r-- nobody/nogroup 1130 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/ll.tmpl
-rw-r--r-- nobody/nogroup 1170 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/llall.tmpl
-rw-r--r-- nobody/nogroup 13067 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/rollupdate.input.sample
-rw-r--r-- nobody/nogroup 9234 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/rollupdate_all.input.sample
-rw-r--r-- nobody/nogroup 9190 2016-05-09 07:59 ./opt/xcat/share/xcat/rollupdate/rollupdate_stateful.input.sample
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/installp_bundles/
-rw-r--r-- nobody/nogroup 291 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixCN53.bnd
-rw-r--r-- nobody/nogroup 281 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixCN61.bnd
-rw-r--r-- nobody/nogroup 347 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixCN71.bnd
-rw-r--r-- nobody/nogroup 1115 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixSN53.bnd
-rw-r--r-- nobody/nogroup 1218 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixSN61.bnd
-rw-r--r-- nobody/nogroup 1256 2016-05-09 07:59 ./opt/xcat/share/xcat/installp_bundles/xCATaixSN71.bnd
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/image_data/
-rw-r--r-- nobody/nogroup 15124 2016-05-09 07:59 ./opt/xcat/share/xcat/image_data/xCATsnData
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/cons/
-rwxr-xr-x nobody/nogroup 3882 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/blade
-rwxr-xr-x nobody/nogroup 12542 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/fsp
-rwxr-xr-x nobody/nogroup 9461 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/hmc
-rwxr-xr-x nobody/nogroup 3539 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/hpblade
-rwxr-xr-x nobody/nogroup 4824 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/ipmi
-rwxr-xr-x nobody/nogroup 9480 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/ivm
-rwxr-xr-x nobody/nogroup 2421 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/kvm
-rwxr-xr-x nobody/nogroup 6320 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/multiple
-rwxr-xr-x nobody/nogroup 2233 2016-05-09 07:59 ./opt/xcat/share/xcat/cons/xen
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/devicetype/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/devicetype/EthSwitch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/BNT/
-rw-r--r-- nobody/nogroup 82 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/BNT/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Cisco/
-rw-r--r-- nobody/nogroup 82 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Cisco/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Jun/
-rw-r--r-- nobody/nogroup 149 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Jun/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Mellanox/
-rw-r--r-- nobody/nogroup 134 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/Mellanox/config
-rw-r--r-- nobody/nogroup 439 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/EthSwitch/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/Mellanox/
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/Mellanox/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/QLogic/
-rw-r--r-- nobody/nogroup 96 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/IBSwitch/QLogic/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/vios/
-rw-r--r-- nobody/nogroup 72 2016-05-09 07:59 ./opt/xcat/share/xcat/devicetype/vios/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/scripts/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/scripts/Mellanox/
-rwxr-xr-x nobody/nogroup 13284 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/Mellanox/mlnxofed_ib_install
-rwxr-xr-x nobody/nogroup 15755 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/Mellanox/mlnxofed_ib_install.v2
-rw-r--r-- nobody/nogroup 48 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/Mellanox/config
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/scripts/QLogic/
-rw-r--r-- nobody/nogroup 96 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/QLogic/config
-rw-r--r-- nobody/nogroup 35214 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/annotatelog
-rw-r--r-- nobody/nogroup 11352 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/annotatelog.README
-rw-r--r-- nobody/nogroup 40153 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configCECs
-rw-r--r-- nobody/nogroup 6604 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configCECs.README
-rwxr-xr-x nobody/nogroup 7303 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configiba.1port
-rwxr-xr-x nobody/nogroup 7185 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configiba.2ports
-rw-r--r-- nobody/nogroup 4661 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/configiba.README
-rw-r--r-- nobody/nogroup 17634 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/getGuids
-rw-r--r-- nobody/nogroup 2576 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/getGuids.README
-rw-r--r-- nobody/nogroup 43798 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/healthCheck
-rw-r--r-- nobody/nogroup 8792 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/scripts/healthCheck.README
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/netboot/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/netboot/sles/
-rwxr-xr-x nobody/nogroup 581 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.pkglist
-rwxr-xr-x nobody/nogroup 547 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.postinstall
-rwxr-xr-x nobody/nogroup 44 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.sles11.1.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 54 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.sles11.2.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 81 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/ib.sles12.ppc64le.pkglist
-rwxr-xr-x nobody/nogroup 128 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/sles/statelite.csv
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/ib/netboot/rh/
-rwxr-xr-x nobody/nogroup 60 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels6.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 54 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels6.x86_64.pkglist
-rwxr-xr-x nobody/nogroup 135 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels7.ppc64.pkglist
-rwxr-xr-x nobody/nogroup 166 2016-05-09 07:59 ./opt/xcat/share/xcat/ib/netboot/rh/ib.rhels7.ppc64le.pkglist
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/mypostscript/
-rwxr-xr-x nobody/nogroup 3754 2016-05-09 07:59 ./opt/xcat/share/xcat/mypostscript/mypostscript.tmpl
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/doc/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/doc/packages/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/doc/packages/xCAT-server/
-rw-r--r-- nobody/nogroup 16453 2016-05-09 07:59 ./opt/xcat/share/doc/packages/xCAT-server/LICENSE.html
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/Confluent/
-rw-r--r-- nobody/nogroup 5010 2016-05-09 07:59 ./opt/xcat/lib/perl/Confluent/Client.pm
-rw-r--r-- nobody/nogroup 1932 2016-05-09 07:59 ./opt/xcat/lib/perl/Confluent/TLV.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT/
-rw-r--r-- nobody/nogroup 21617 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/ADUtils.pm
-rw-r--r-- nobody/nogroup 5831 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/FifoPipe.pm
-rw-r--r-- nobody/nogroup 5987 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/IMMUtils.pm
-rw-r--r-- nobody/nogroup 45715 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/IPMI.pm
-rw-r--r-- nobody/nogroup 18995 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/MellanoxIB.pm
-rw-r--r-- nobody/nogroup 5726 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/PasswordUtils.pm
-rw-r--r-- nobody/nogroup 65247 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/Postage.pm
-rw-r--r-- nobody/nogroup 92619 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/PPC.pm
-rw-r--r-- nobody/nogroup 10303 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/RShellAPI.pm
-rw-r--r-- nobody/nogroup 2713 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/SSHInteract.pm
-rw-r--r-- nobody/nogroup 382 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/State.pm
-rw-r--r-- nobody/nogroup 66551 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/SvrUtils.pm
-rw-r--r-- nobody/nogroup 68892 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/Template.pm
-rw-r--r-- nobody/nogroup 31957 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/TZUtils.pm
-rw-r--r-- nobody/nogroup 1949 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/WinUtils.pm
-rw-r--r-- nobody/nogroup 11895 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT/xcatd.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_plugin/
-rw-r--r-- nobody/nogroup 8749 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/00kitnodebase.pm
-rw-r--r-- nobody/nogroup 3172 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/AAAusage.pm
-rw-r--r-- nobody/nogroup 40385 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/AAsn.pm
-rw-r--r-- nobody/nogroup 13412 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/activedirectory.pm
-rw-r--r-- nobody/nogroup 465240 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/aixinstall.pm
-rw-r--r-- nobody/nogroup 128159 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/anaconda.pm
-rw-r--r-- nobody/nogroup 209253 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/blade.pm
-rw-r--r-- nobody/nogroup 6208 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/bmcconfig.pm
-rw-r--r-- nobody/nogroup 28218 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/bmcdiscover.pm
-rw-r--r-- nobody/nogroup 6101 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/boottarget.pm
-rw-r--r-- nobody/nogroup 2078 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/bpa.pm
-rw-r--r-- nobody/nogroup 15141 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/configfpc.pm
-rw-r--r-- nobody/nogroup 17386 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/confluent.pm
-rw-r--r-- nobody/nogroup 19759 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/conserver.pm
-rw-r--r-- nobody/nogroup 5549 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/copycds.pm
-rw-r--r-- nobody/nogroup 16644 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/credentials.pm
-rw-r--r-- nobody/nogroup 144685 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/DBobjectdefs.pm
-rw-r--r-- nobody/nogroup 61002 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ddns.pm
-rw-r--r-- nobody/nogroup 64301 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/debian.pm
-rw-r--r-- nobody/nogroup 30396 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/destiny.pm
-rw-r--r-- nobody/nogroup 103382 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/dhcp.pm
-rw-r--r-- nobody/nogroup 36826 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/docker.pm
-rw-r--r-- nobody/nogroup 43078 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/energy.pm
-rw-r--r-- nobody/nogroup 209930 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/esx.pm
-rw-r--r-- nobody/nogroup 13534 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/FIP.pm
-rw-r--r-- nobody/nogroup 1640 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/frusetter.pm
-rw-r--r-- nobody/nogroup 12735 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/fsp.pm
-rw-r--r-- nobody/nogroup 17058 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/genimage.pm
-rw-r--r-- nobody/nogroup 8843 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/geninitrd.pm
-rw-r--r-- nobody/nogroup 21507 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/getadapter.pm
-rw-r--r-- nobody/nogroup 4252 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/getpartition.pm
-rw-r--r-- nobody/nogroup 3142 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/getpostscript.pm
-rw-r--r-- nobody/nogroup 27634 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/grub2.pm
-rw-r--r-- nobody/nogroup 9494 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hmc.pm
-rw-r--r-- nobody/nogroup 26931 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hosts.pm
-rw-r--r-- nobody/nogroup 51946 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hpblade.pm
-rw-r--r-- nobody/nogroup 23629 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/hpilo.pm
-rw-r--r-- nobody/nogroup 28492 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/imgcapture.pm
-rw-r--r-- nobody/nogroup 75157 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/imgport.pm
-rw-r--r-- nobody/nogroup 277272 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ipmi.pm
-rw-r--r-- nobody/nogroup 6227 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/iscsi.pm
-rw-r--r-- nobody/nogroup 5830 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ivm.pm
-rw-r--r-- nobody/nogroup 197078 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/kit.pm
-rw-r--r-- nobody/nogroup 21426 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/kmodules.pm
-rw-r--r-- nobody/nogroup 157871 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/kvm.pm
-rw-r--r-- nobody/nogroup 16390 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/litetree.pm
-rw-r--r-- nobody/nogroup 83849 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/lsslp.pm
-rw-r--r-- nobody/nogroup 10236 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/makeknownhosts.pm
-rw-r--r-- nobody/nogroup 13347 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/makentp.pm
-rw-r--r-- nobody/nogroup 37103 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/mic.pm
-rw-r--r-- nobody/nogroup 12964 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/mknb.pm
-rw-r--r-- nobody/nogroup 59428 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/monctrlcmds.pm
-rw-r--r-- nobody/nogroup 20603 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/networks.pm
-rw-r--r-- nobody/nogroup 17919 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/nimol.pm
-rw-r--r-- nobody/nogroup 17867 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/nodediscover.pm
-rw-r--r-- nobody/nogroup 40100 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/nodestat.pm
-rw-r--r-- nobody/nogroup 8040 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/notification.pm
-rw-r--r-- nobody/nogroup 1207 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/offline.pm
-rw-r--r-- nobody/nogroup 8836 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/ontap.pm
-rw-r--r-- nobody/nogroup 6161 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/osdistro.pm
-rw-r--r-- nobody/nogroup 22906 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/packimage.pm
-rw-r--r-- nobody/nogroup 20597 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/petitboot.pm
-rw-r--r-- nobody/nogroup 14368 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/prescripts.pm
-rw-r--r-- nobody/nogroup 105216 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/profilednodes.pm
-rw-r--r-- nobody/nogroup 22397 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/pxe.pm
-rw-r--r-- nobody/nogroup 7239 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/remoteimmsetup.pm
-rw-r--r-- nobody/nogroup 4687 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rescanplugins.pm
-rw-r--r-- nobody/nogroup 152017 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rhevm.pm
-rw-r--r-- nobody/nogroup 13425 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rinstall.pm
-rw-r--r-- nobody/nogroup 8982 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rmimage.pm
-rw-r--r-- nobody/nogroup 101594 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/rollupdate.pm
-rw-r--r-- nobody/nogroup 40220 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/route.pm
-rw-r--r-- nobody/nogroup 52855 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/seqdiscovery.pm
-rw-r--r-- nobody/nogroup 87101 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/setup.pm
-rw-r--r-- nobody/nogroup 3499 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/sinv.pm
-rw-r--r-- nobody/nogroup 99824 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/sles.pm
-rw-r--r-- nobody/nogroup 9215 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/slpdiscover.pm
-rw-r--r-- nobody/nogroup 64157 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/snmove.pm
-rw-r--r-- nobody/nogroup 34016 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/statelite.pm
-rw-r--r-- nobody/nogroup 16687 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/svc.pm
-rw-r--r-- nobody/nogroup 7542 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/switch.pm
-rw-r--r-- nobody/nogroup 43473 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/switchdiscover.pm
-rw-r--r-- nobody/nogroup 2543 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/syncfiles.pm
-rw-r--r-- nobody/nogroup 98450 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/tabutils.pm
-rw-r--r-- nobody/nogroup 14819 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/toolscenter.pm
-rw-r--r-- nobody/nogroup 18655 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/tree.pm
-rw-r--r-- nobody/nogroup 102243 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/updatenode.pm
-rw-r--r-- nobody/nogroup 22116 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/vbox.pm
-rw-r--r-- nobody/nogroup 16209 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/vsmppxe.pm
-rw-r--r-- nobody/nogroup 34265 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/windows.pm
-rw-r--r-- nobody/nogroup 48553 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xcat2nim.pm
-rw-r--r-- nobody/nogroup 4764 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xCATWorld.pm
-rw-r--r-- nobody/nogroup 42511 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xdsh.pm
-rw-r--r-- nobody/nogroup 32264 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xen.pm
-rw-r--r-- nobody/nogroup 23734 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/xnba.pm
-rw-r--r-- nobody/nogroup 31273 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/yaboot.pm
-rw-r--r-- nobody/nogroup 31482 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/zone.pm
-rw-r--r-- nobody/nogroup 327234 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_plugin/zvm.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_schema/
drwxr-xr-x nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_schema/samples/
-rw-r--r-- nobody/nogroup 4995 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_schema/samples/Sample.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_monitoring/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_monitoring/samples/
-rw-r--r-- nobody/nogroup 3364 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/samples/mycode.pm
-rw-r--r-- nobody/nogroup 17259 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/samples/templatemon.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/lib/perl/xCAT_monitoring/pcp/
-rw-r--r-- nobody/nogroup 89 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/pcp/pcpmon.config
-rw-r--r-- nobody/nogroup 3305 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/bootttmon.pm
-rw-r--r-- nobody/nogroup 32448 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/gangliamon.pm
-rw-r--r-- nobody/nogroup 52174 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/monitorctrl.pm
-rw-r--r-- nobody/nogroup 4096 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/montbhandler.pm
-rw-r--r-- nobody/nogroup 45247 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/nagiosmon.pm
-rw-r--r-- nobody/nogroup 12312 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/pcpmon.pm
-rw-r--r-- nobody/nogroup 9575 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/rrdutil.pm
-rw-r--r-- nobody/nogroup 43366 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/snmpmon.pm
-rw-r--r-- nobody/nogroup 16026 2016-05-09 07:59 ./opt/xcat/lib/perl/xCAT_monitoring/xcatmon.pm
-rw-r--r-- nobody/nogroup 1726 2016-05-09 07:59 ./opt/xcat/lib/shfunctions
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/xdsh/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/xdsh/Context/
-rw-r--r-- nobody/nogroup 9681 2016-05-09 07:59 ./opt/xcat/xdsh/Context/DSH.pm
-rw-r--r-- nobody/nogroup 10543 2016-05-09 07:59 ./opt/xcat/xdsh/Context/XCAT.pm
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/ws/
-rwxr-xr-x nobody/nogroup 18430 2016-05-09 07:59 ./opt/xcat/ws/genrestapidoc.pm
-rwxr-xr-x nobody/nogroup 121453 2016-05-09 07:59 ./opt/xcat/ws/restapi.pl
-rwxr-xr-x nobody/nogroup 1071 2016-05-09 07:59 ./opt/xcat/ws/xcatrhevh.cgi
-rwxr-xr-x nobody/nogroup 2763 2016-05-09 07:59 ./opt/xcat/ws/xcatws-test.pl
-rwxr-xr-x nobody/nogroup 5460 2016-05-09 07:59 ./opt/xcat/ws/xcatws-test.sh
-rwxr-xr-x nobody/nogroup 146708 2016-05-09 07:59 ./opt/xcat/ws/xcatws.cgi
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/init.d/
-rwxr-xr-x nobody/nogroup 3139 2016-05-09 07:59 ./etc/init.d/xcatd
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/xcat/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/conf-enabled/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/conf-available/
-rw-r--r-- nobody/nogroup 353 2016-05-09 08:00 ./etc/apache2/conf-available/xcat-ws.conf
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/share/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/share/doc/
drwxr-xr-x nobody/nogroup 0 2016-05-09 08:00 ./usr/share/doc/xcat-server/
-rw-r--r-- nobody/nogroup 16453 2016-05-09 07:59 ./usr/share/doc/xcat-server/LICENSE.html
-rw-r--r-- nobody/nogroup 11252 2016-05-09 07:59 ./usr/share/doc/xcat-server/copyright
-rw-r--r-- nobody/nogroup 465 2016-05-09 08:00 ./usr/share/doc/xcat-server/changelog.Debian.gz
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/esxi/base.esxi4.1.tmpl -> ../esx/base.esxi4.1.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora12.tmpl -> compute.fedora13.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora15.pkglist -> compute.fedora14.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/fedora/compute.fedora15.tmpl -> compute.fedora14.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ol/compute.ol6.pkglist -> ../rh/compute.rhels6.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ol/compute.ol6.tmpl -> ../rh/compute.rhels6.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/scripts/pre.rh.rhel7 -> pre.rh.rhels7
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.SL6.pkglist -> ../rh/compute.rhels6.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/SL/compute.SL6.tmpl -> ../rh/compute.rhels6.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.2.ppc64le.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.3.ppc64el.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.3.ppc64le.pkglist -> compute.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.4.ppc64el.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.4.ppc64le.pkglist -> compute.ubuntu14.04.4.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu14.04.ppc64le.pkglist -> compute.ubuntu14.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/compute.ubuntu16.04.ppc64le.pkglist -> compute.ubuntu16.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudafull.ubuntu14.04.4.ppc64el.pkglist -> cudafull.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/cudaruntime.ubuntu14.04.4.ppc64el.pkglist -> cudaruntime.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/kvm.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/install/ubuntu/service.tmpl -> compute.tmpl
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos7.exlist -> ../rh/compute.rhels7.x86_64.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos7.pkglist -> ../rh/compute.rhels7.x86_64.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/compute.centos7.postinstall -> ../rh/compute.rhels7.x86_64.postinstall
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/dracut -> ../rh/dracut
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/dracut_033 -> ../rh/dracut_033
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/kvm.exlist -> ../rh/kvm.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/kvm.pkglist -> ../rh/kvm.rhels5.4.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/xen.exlist -> ../rh/xen.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/centos/xen.pkglist -> ../rh/xen.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora12.pkglist -> compute.fedora13.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/compute.fedora15.pkglist -> compute.fedora14.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/check -> ../../rh/dracut/check
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/install.netboot -> ../../rh/dracut/install.netboot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/install.statelite -> ../../rh/dracut/install.statelite
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/installkernel -> ../../rh/dracut/installkernel
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-cmdline.sh -> ../../rh/dracut/xcat-cmdline.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-premount.sh -> ../../rh/dracut/xcat-premount.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-prepivot.sh -> ../../rh/dracut/xcat-prepivot.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcat-updateflag -> ../../rh/dracut/xcat-updateflag
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut/xcatroot -> ../../rh/dracut/xcatroot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/check -> ../../rh/dracut/check
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/install.netboot -> ../../rh/dracut/install.netboot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/install.statelite -> ../../rh/dracut/install.statelite
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/installkernel -> ../../rh/dracut/installkernel
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-premount.sh -> ../../rh/dracut/xcat-premount.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/dracut_009/xcat-updateflag -> ../../rh/dracut/xcat-updateflag
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/fedora/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/compute.exlist -> ../rh/compute.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/compute.ol6.pkglist -> ../rh/compute.rhels6.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/compute.pkglist -> ../rh/compute.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/dracut -> ../rh/dracut
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/dracut_033 -> ../rh/dracut_033
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ol/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64le.exlist -> compute.rhels7.ppc64.exlist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64le.pkglist -> compute.rhels7.ppc64.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/compute.rhels7.ppc64le.postinstall -> compute.rhels7.ppc64.postinstall
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/rh/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/compute.SL6.pkglist -> ../rh/compute.rhels6.x86_64.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/check -> ../../rh/dracut/check
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/install.netboot -> ../../rh/dracut/install.netboot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/install.statelite -> ../../rh/dracut/install.statelite
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/installkernel -> ../../rh/dracut/installkernel
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-cmdline.sh -> ../../rh/dracut/xcat-cmdline.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-premount.sh -> ../../rh/dracut/xcat-premount.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-prepivot.sh -> ../../rh/dracut/xcat-prepivot.sh
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcat-updateflag -> ../../rh/dracut/xcat-updateflag
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut/xcatroot -> ../../rh/dracut/xcatroot
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/dracut_033 -> ../rh/dracut_033
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/SL/genimage -> ../rh/genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/sles/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/suse/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.2.ppc64le.pkglist -> compute.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.3.ppc64le.pkglist -> compute.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.4.ppc64le.pkglist -> compute.ubuntu14.04.4.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu14.04.ppc64le.pkglist -> compute.ubuntu14.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/compute.ubuntu16.04.ppc64le.pkglist -> compute.ubuntu16.04.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.ubuntu14.04.3.ppc64el.pkglist -> cudafull.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudafull.ubuntu14.04.4.ppc64el.pkglist -> cudafull.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.ubuntu14.04.2.ppc64el.pkglist -> cudafull.ubuntu14.04.2.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.ubuntu14.04.3.ppc64el.pkglist -> cudafull.ubuntu14.04.3.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/cudaruntime.ubuntu14.04.4.ppc64el.pkglist -> cudafull.ubuntu14.04.4.ppc64el.pkglist
lrwxrwxrwx nobody/nogroup 0 2016-05-09 07:59 ./opt/xcat/share/xcat/netboot/ubuntu/geninitrd -> genimage
lrwxrwxrwx nobody/nogroup 0 2016-05-09 08:00 ./opt/xcat/share/xcat/devicetype/EthSwitch/Juniper -> Jun
lrwxrwxrwx nobody/nogroup 0 2016-05-09 08:00 ./etc/apache2/conf-enabled/xcat-ws.conf -> ../conf-available/xcat-ws.conf | non_main | ubuntu packaging problem all files and directories belong to nobody nogroup instead of root root all files and directories in the packages of xcat ubuntu build belong to nobody nogroup which is incorrect all the files and directories should belong to root root dpkg c xcat server all deb drwxr xr x nobody nogroup drwxr xr x nobody nogroup opt drwxr xr x nobody nogroup opt xcat drwxr xr x nobody nogroup opt xcat bin rwxr xr x nobody nogroup opt xcat bin replaycons drwxr xr x nobody nogroup opt xcat sbin rwxr xr x nobody nogroup opt xcat sbin chtab rwxr xr x nobody nogroup opt xcat sbin configmic rwxr xr x nobody nogroup opt xcat sbin flashmic rwxr xr x nobody nogroup opt xcat sbin makenamed conf rwxr xr x nobody nogroup opt xcat sbin pcp collect rwxr xr x nobody nogroup opt xcat sbin proxydhcp xcat rwxr xr x nobody nogroup opt xcat sbin restartxcatd rwxr xr x nobody nogroup opt xcat sbin rshell api rwxr xr x nobody nogroup opt xcat sbin runcmdinstaller rwxr xr x nobody nogroup opt xcat sbin runsqlcmd rwxr xr x nobody nogroup opt xcat sbin stopstartxcatd rwxr xr x nobody nogroup opt xcat sbin updatesnimage rwxr xr x nobody nogroup opt xcat sbin xcat traphandler rwxr xr x nobody nogroup opt xcat sbin xcatconfig rwxr xr x nobody nogroup opt xcat sbin xcatd rwxr xr x nobody nogroup opt xcat sbin xcatdebug rwxr xr x nobody nogroup opt xcat sbin xcatnodemon rwxr xr x nobody nogroup opt xcat sbin xcatsnap drwxr xr x nobody nogroup opt xcat share drwxr xr x nobody nogroup opt xcat share xcat drwxr xr x nobody nogroup opt xcat share xcat install drwxr xr x nobody nogroup opt xcat share xcat install centos rw r r nobody nogroup opt xcat share xcat install centos all pkglist rw r r nobody nogroup opt xcat share xcat install centos all tmpl rw r r nobody nogroup opt xcat share xcat install centos compute pkglist rw r r nobody nogroup opt xcat share xcat install centos compute tmpl rw r r nobody nogroup opt xcat share xcat install centos compute pkglist rw r r nobody nogroup opt xcat share xcat install centos compute tmpl rw r r nobody nogroup opt xcat share xcat install centos compute pkglist rw r r nobody nogroup opt xcat share xcat install centos compute tmpl rw r r nobody nogroup opt xcat share xcat install centos iscsi tmpl rw r r nobody nogroup opt xcat share xcat install centos iscsi pkglist rw r r nobody nogroup opt xcat share xcat install centos iscsi tmpl rw r r nobody nogroup opt xcat share xcat install centos kvm tmpl rw r r nobody nogroup opt xcat share xcat install centos storage tmpl rw r r nobody nogroup opt xcat share xcat install centos storage pkglist rw r r nobody nogroup opt xcat share xcat install centos storage tmpl rw r r nobody nogroup opt xcat share xcat install centos xen tmpl rw r r nobody nogroup opt xcat share xcat install centos xen pkglist rw r r nobody nogroup opt xcat share xcat install centos xen tmpl drwxr xr x nobody nogroup opt xcat share xcat install debian rw r r nobody nogroup opt xcat share xcat install debian compute tmpl drwxr xr x nobody nogroup opt xcat share xcat install debian initoverlay drwxr xr x nobody nogroup opt xcat share xcat install debian initoverlay lib drwxr xr x nobody nogroup opt xcat share xcat install debian initoverlay lib debian installer startup d rw r r nobody nogroup opt xcat share xcat install debian initoverlay lib debian installer startup d rw r r nobody nogroup opt xcat share xcat install debian initoverlay lib debian installer startup d drwxr xr x nobody nogroup opt xcat share xcat install esx rw r r nobody nogroup opt xcat share xcat install esx base tmpl rw r r nobody nogroup opt xcat share xcat install esx esx pkglist rw r r nobody nogroup opt xcat share xcat install esx esx tmpl drwxr xr x nobody nogroup opt xcat share xcat install esxi rw r r nobody nogroup opt xcat share xcat install esxi hypervisor tmpl drwxr xr x nobody nogroup opt xcat share xcat install fedora rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute pkglist rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora compute tmpl rw r r nobody nogroup opt xcat share xcat install fedora iscsi pkglist rw r r nobody nogroup opt xcat share xcat install fedora iscsi pkglist rw r r nobody nogroup opt xcat share xcat install fedora iscsi tmpl rw r r nobody nogroup opt xcat share xcat install fedora iscsi tmpl rw r r nobody nogroup opt xcat share xcat install fedora iscsi pkglist rw r r nobody nogroup opt xcat share xcat install fedora iscsi pkglist rw r r nobody nogroup opt xcat share xcat install fedora iscsi tmpl rw r r nobody nogroup opt xcat share xcat install fedora iscsi tmpl rw r r nobody nogroup opt xcat share xcat install fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install fedora service pkglist rw r r nobody nogroup opt xcat share xcat install fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install fedora service pkglist rw r r nobody nogroup opt xcat share xcat install fedora service tmpl rw r r nobody nogroup opt xcat share xcat install fedora service tmpl rw r r nobody nogroup opt xcat share xcat install fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install fedora service pkglist rw r r nobody nogroup opt xcat share xcat install fedora service pkglist rw r r nobody nogroup opt xcat share xcat install fedora service tmpl rw r r nobody nogroup opt xcat share xcat install fedora service tmpl drwxr xr x nobody nogroup opt xcat share xcat install hyperv rw r r nobody nogroup opt xcat share xcat install hyperv hypervisor tmpl drwxr xr x nobody nogroup opt xcat share xcat install ol drwxr xr x nobody nogroup opt xcat share xcat install pkvm rw r r nobody nogroup opt xcat share xcat install pkvm compute tmpl rw r r nobody nogroup opt xcat share xcat install pkvm compute tmpl drwxr xr x nobody nogroup opt xcat share xcat install rh rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute pkglist rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute tmpl rw r r nobody nogroup opt xcat share xcat install rh compute ad tmpl rw r r nobody nogroup opt xcat share xcat install rh cudafull pkglist rw r r nobody nogroup opt xcat share xcat install rh cudaruntime pkglist rw r r nobody nogroup opt xcat share xcat install rh hpc pkglist rw r r nobody nogroup opt xcat share xcat install rh hpc tmpl rw r r nobody nogroup opt xcat share xcat install rh iscsi pkglist rw r r nobody nogroup opt xcat share xcat install rh iscsi pkglist rw r r nobody nogroup opt xcat share xcat install rh iscsi tmpl rw r r nobody nogroup opt xcat share xcat install rh iscsi tmpl rw r r nobody nogroup opt xcat share xcat install rh iscsi tmpl rw r r nobody nogroup opt xcat share xcat install rh kvm pkglist rw r r nobody nogroup opt xcat share xcat install rh kvm pkglist rw r r nobody nogroup opt xcat share xcat install rh kvm tmpl rw r r nobody nogroup opt xcat share xcat install rh kvm pkglist rw r r nobody nogroup opt xcat share xcat install rh kvm tmpl rw r r nobody nogroup opt xcat share xcat install rh kvm pkglist rw r r nobody nogroup opt xcat share xcat install rh kvm tmpl rw r r nobody nogroup opt xcat share xcat install rh kvm pkglist rw r r nobody nogroup opt xcat share xcat install rh kvm tmpl rw r r nobody nogroup opt xcat share xcat install rh kvm tmpl rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service tmpl rw r r nobody nogroup opt xcat share xcat install rh service multipath tmpl rw r r nobody nogroup opt xcat share xcat install rh service tmpl rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service tmpl rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service tmpl rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service tmpl rw r r nobody nogroup opt xcat share xcat install rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh service pkglist rw r r nobody nogroup opt xcat share xcat install rh service tmpl rw r r nobody nogroup opt xcat share xcat install rh storage pkglist rw r r nobody nogroup opt xcat share xcat install rh storage pkglist rw r r nobody nogroup opt xcat share xcat install rh storage tmpl rw r r nobody nogroup opt xcat share xcat install rh storage tmpl rw r r nobody nogroup opt xcat share xcat install rh sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install rh xen pkglist rw r r nobody nogroup opt xcat share xcat install rh xen tmpl rw r r nobody nogroup opt xcat share xcat install rh xen tmpl rw r r nobody nogroup opt xcat share xcat install rh zfcp pkglist rw r r nobody nogroup opt xcat share xcat install rh zfcp tmpl rw r r nobody nogroup opt xcat share xcat install rh zfcp pkglist rw r r nobody nogroup opt xcat share xcat install rh zfcp tmpl drwxr xr x nobody nogroup opt xcat share xcat install scripts rw r r nobody nogroup opt xcat share xcat install scripts chroot sles rw r r nobody nogroup opt xcat share xcat install scripts chroot sles iscsi rw r r nobody nogroup opt xcat share xcat install scripts getinstdisk rw r r nobody nogroup opt xcat share xcat install scripts post debian rw r r nobody nogroup opt xcat share xcat install scripts post esx rw r r nobody nogroup opt xcat share xcat install scripts post rh rw r r nobody nogroup opt xcat share xcat install scripts post rh common rw r r nobody nogroup opt xcat share xcat install scripts post rh iscsi rw r r nobody nogroup opt xcat share xcat install scripts post rw r r nobody nogroup opt xcat share xcat install scripts post rw r r nobody nogroup opt xcat share xcat install scripts post rw r r nobody nogroup opt xcat share xcat install scripts post sles rwxr xr x nobody nogroup opt xcat share xcat install scripts post sles common rw r r nobody nogroup opt xcat share xcat install scripts post sles iscsi rw r r nobody nogroup opt xcat share xcat install scripts post rw r r nobody nogroup opt xcat share xcat install scripts post rw r r nobody nogroup opt xcat share xcat install scripts post iscsi rw r r nobody nogroup opt xcat share xcat install scripts post rw r r nobody nogroup opt xcat share xcat install scripts post rwxr xr x nobody nogroup opt xcat share xcat install scripts post ubuntu rwxr xr x nobody nogroup opt xcat share xcat install scripts post ubuntu common rwxr xr x nobody nogroup opt xcat share xcat install scripts post xcat rw r r nobody nogroup opt xcat share xcat install scripts pre debian rwxr xr x nobody nogroup opt xcat share xcat install scripts pre rw r r nobody nogroup opt xcat share xcat install scripts pre rh rwxr xr x nobody nogroup opt xcat share xcat install scripts pre rh rw r r nobody nogroup opt xcat share xcat install scripts pre sles rw r r nobody nogroup opt xcat share xcat install scripts pre ubuntu rw r r nobody nogroup opt xcat share xcat install scripts pre ubuntu rw r r nobody nogroup opt xcat share xcat install scripts scriptlib drwxr xr x nobody nogroup opt xcat share xcat install sl rw r r nobody nogroup opt xcat share xcat install sl compute pkglist rw r r nobody nogroup opt xcat share xcat install sl compute tmpl drwxr xr x nobody nogroup opt xcat share xcat install sles rw r r nobody nogroup opt xcat share xcat install sles compute pkglist rw r r nobody nogroup opt xcat share xcat install sles compute sdk tmpl rw r r nobody nogroup opt xcat share xcat install sles compute pkglist rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles compute pkglist rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles compute pkglist rw r r nobody nogroup opt xcat share xcat install sles compute pkglist rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles compute pkglist rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles compute tmpl rw r r nobody nogroup opt xcat share xcat install sles iscsi pkglist rw r r nobody nogroup opt xcat share xcat install sles iscsi tmpl rw r r nobody nogroup opt xcat share xcat install sles iscsiibft pkglist rw r r nobody nogroup opt xcat share xcat install sles iscsiibft tmpl rw r r nobody nogroup opt xcat share xcat install sles service tmpl rw r r nobody nogroup opt xcat share xcat install sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles service pkglist rw r r nobody nogroup opt xcat share xcat install sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles service tmpl rw r r nobody nogroup opt xcat share xcat install sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles sysclone otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat install sles xen pkglist rw r r nobody nogroup opt xcat share xcat install sles xen tmpl rw r r nobody nogroup opt xcat share xcat install sles zfcp pkglist rw r r nobody nogroup opt xcat share xcat install sles zfcp tmpl rw r r nobody nogroup opt xcat share xcat install sles zfcp pkglist rw r r nobody nogroup opt xcat share xcat install sles zfcp tmpl drwxr xr x nobody nogroup opt xcat share xcat install suse rw r r nobody nogroup opt xcat share xcat install suse compute pkglist rw r r nobody nogroup opt xcat share xcat install suse compute tmpl drwxr xr x nobody nogroup opt xcat share xcat install ubuntu rw r r nobody nogroup opt xcat share xcat install ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu compute tmpl rw r r nobody nogroup opt xcat share xcat install ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu cudafull pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu cudafull pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu cudaruntime pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu cudaruntime pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu kvm pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu service pkglist rw r r nobody nogroup opt xcat share xcat install ubuntu service ubuntu otherpkgs pkglist drwxr xr x nobody nogroup opt xcat share xcat install windows rw r r nobody nogroup opt xcat share xcat install windows datacenter tmpl rw r r nobody nogroup opt xcat share xcat install windows enterprise tmpl rw r r nobody nogroup opt xcat share xcat install windows enterprise tmpl rwxr xr x nobody nogroup opt xcat share xcat install windows enterprise tmpl rwxr xr x nobody nogroup opt xcat share xcat install windows enterprise tmpl rw r r nobody nogroup opt xcat share xcat install windows enterprise ad tmpl rw r r nobody nogroup opt xcat share xcat install windows standard tmpl rw r r nobody nogroup opt xcat share xcat install windows standard tmpl rwxr xr x nobody nogroup opt xcat share xcat install windows ultimate tmpl drwxr xr x nobody nogroup opt xcat share xcat netboot drwxr xr x nobody nogroup opt xcat share xcat netboot add on drwxr xr x nobody nogroup opt xcat share xcat netboot add on autogpfs rwxr xr x nobody nogroup opt xcat share xcat netboot add on autogpfs autogpfsc rwxr xr x nobody nogroup opt xcat share xcat netboot add on autogpfs autogpfsc pl rwxr xr x nobody nogroup opt xcat share xcat netboot add on autogpfs autogpfsd rwxr xr x nobody nogroup opt xcat share xcat netboot add on autogpfs autogpfsd pl drwxr xr x nobody nogroup opt xcat share xcat netboot add on statelite rwxr xr x nobody nogroup opt xcat share xcat netboot add on statelite add passwd rwxr xr x nobody nogroup opt xcat share xcat netboot add on statelite add ssh rwxr xr x nobody nogroup opt xcat share xcat netboot add on statelite rc localdisk rwxr xr x nobody nogroup opt xcat share xcat netboot add on statelite rc statelite rwxr xr x nobody nogroup opt xcat share xcat netboot add on statelite rc statelite ppc redhat drwxr xr x nobody nogroup opt xcat share xcat netboot add on torque rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque add torque rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque moab rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque pbs rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque pbs mom rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque pbs sched rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque pbs server rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque pbsnodestat drwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts epilogue rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts killuser rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts pbspsh rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts prologue rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts setupnode rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts takedownnode rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque scripts rwxr xr x nobody nogroup opt xcat share xcat netboot add on torque xpbsnodes drwxr xr x nobody nogroup opt xcat share xcat netboot aix rw r r nobody nogroup opt xcat share xcat netboot aix xcataixpost drwxr xr x nobody nogroup opt xcat share xcat netboot centos rw r r nobody nogroup opt xcat share xcat netboot centos compute pkglist rw r r nobody nogroup opt xcat share xcat netboot centos compute exlist rw r r nobody nogroup opt xcat share xcat netboot centos compute pkglist rw r r nobody nogroup opt xcat share xcat netboot centos kvm pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot debian rw r r nobody nogroup opt xcat share xcat netboot debian compute exlist rw r r nobody nogroup opt xcat share xcat netboot debian compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot debian genimage drwxr xr x nobody nogroup opt xcat share xcat netboot esxi rw r r nobody nogroup opt xcat share xcat netboot esxi xcat rw r r nobody nogroup opt xcat share xcat netboot esxi rw r r nobody nogroup opt xcat share xcat netboot esxi xcat networking rw r r nobody nogroup opt xcat share xcat netboot esxi esxifixup rw r r nobody nogroup opt xcat share xcat netboot esxi esxiready rw r r nobody nogroup opt xcat share xcat netboot esxi xcat json rw r r nobody nogroup opt xcat share xcat netboot esxi xcatsplash drwxr xr x nobody nogroup opt xcat share xcat netboot fedora rw r r nobody nogroup opt xcat share xcat netboot fedora compute exlist rw r r nobody nogroup opt xcat share xcat netboot fedora compute pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora compute pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora compute pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora compute pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot fedora dracut drwxr xr x nobody nogroup opt xcat share xcat netboot fedora dracut rw r r nobody nogroup opt xcat share xcat netboot fedora dracut xcat cmdline sh rwxr xr x nobody nogroup opt xcat share xcat netboot fedora dracut xcat prepivot sh rwxr xr x nobody nogroup opt xcat share xcat netboot fedora dracut xcatroot rw r r nobody nogroup opt xcat share xcat netboot fedora service exlist rw r r nobody nogroup opt xcat share xcat netboot fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot fedora service pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot rw r r nobody nogroup opt xcat share xcat netboot compute exlist rw r r nobody nogroup opt xcat share xcat netboot compute pkglist rw r r nobody nogroup opt xcat share xcat netboot compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot genimage rwxr xr x nobody nogroup opt xcat share xcat netboot geninitrd rw r r nobody nogroup opt xcat share xcat netboot service exlist rw r r nobody nogroup opt xcat share xcat netboot service pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot imgutils rw r r nobody nogroup opt xcat share xcat netboot imgutils imgutils pm drwxr xr x nobody nogroup opt xcat share xcat netboot mic rwxr xr x nobody nogroup opt xcat share xcat netboot mic genimage drwxr xr x nobody nogroup opt xcat share xcat netboot ol drwxr xr x nobody nogroup opt xcat share xcat netboot rh rw r r nobody nogroup opt xcat share xcat netboot rh compute exlist rw r r nobody nogroup opt xcat share xcat netboot rh compute imgcapture exlist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rw r r nobody nogroup opt xcat share xcat netboot rh compute exlist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh compute exlist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh compute exlist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh compute exlist rw r r nobody nogroup opt xcat share xcat netboot rh compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh compute postinstall rw r r nobody nogroup opt xcat share xcat netboot rh cudafull otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot rh cudaruntime otherpkgs pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut check rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut install netboot rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut install statelite rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut installkernel rw r r nobody nogroup opt xcat share xcat netboot rh dracut xcat cmdline sh rw r r nobody nogroup opt xcat share xcat netboot rh dracut xcat premount sh rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut xcat prepivot sh rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut xcat updateflag rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut xcatroot drwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut check rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut install netboot rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut install statelite rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut installkernel drwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut patch drwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut patch syslog rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut patch syslog module setup sh rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut patch syslog rsyslogd start sh rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut patch syslog syslog genrules sh rw r r nobody nogroup opt xcat share xcat netboot rh dracut xcat cmdline sh rw r r nobody nogroup opt xcat share xcat netboot rh dracut xcat premount sh rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut xcat prepivot sh rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut xcat updateflag rwxr xr x nobody nogroup opt xcat share xcat netboot rh dracut xcatroot rwxr xr x nobody nogroup opt xcat share xcat netboot rh genimage rwxr xr x nobody nogroup opt xcat share xcat netboot rh genimage rw r r nobody nogroup opt xcat share xcat netboot rh kvm exlist rw r r nobody nogroup opt xcat share xcat netboot rh kvm pkglist rw r r nobody nogroup opt xcat share xcat netboot rh kvm pkglist rw r r nobody nogroup opt xcat share xcat netboot rh nfsroot pkglist rw r r nobody nogroup opt xcat share xcat netboot rh nfsroot rwfiles rw r r nobody nogroup opt xcat share xcat netboot rh readme for genimage rw r r nobody nogroup opt xcat share xcat netboot rh service exlist rw r r nobody nogroup opt xcat share xcat netboot rh service pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh service postinstall rw r r nobody nogroup opt xcat share xcat netboot rh service pkglist rw r r nobody nogroup opt xcat share xcat netboot rh service otherpkgs pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh service postinstall rw r r nobody nogroup opt xcat share xcat netboot rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot rh service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot rh service pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot rh service postinstall rw r r nobody nogroup opt xcat share xcat netboot rh xen exlist rw r r nobody nogroup opt xcat share xcat netboot rh xen pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot sl rw r r nobody nogroup opt xcat share xcat netboot sl compute exlist rw r r nobody nogroup opt xcat share xcat netboot sl compute pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot sl dracut drwxr xr x nobody nogroup opt xcat share xcat netboot sles rw r r nobody nogroup opt xcat share xcat netboot sles compute exlist rw r r nobody nogroup opt xcat share xcat netboot sles compute imgcapture exlist rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute postinstall rw r r nobody nogroup opt xcat share xcat netboot sles compute repolist rw r r nobody nogroup opt xcat share xcat netboot sles compute exlist rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rw r r nobody nogroup opt xcat share xcat netboot sles compute postinstall rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute postinstall rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute exlist rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute exlist rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute exlist rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute postinstall rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute exlist rw r r nobody nogroup opt xcat share xcat netboot sles compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot sles compute postinstall rwxr xr x nobody nogroup opt xcat share xcat netboot sles copy profile sh drwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut check rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut install netboot rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut install statelite rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut installkernel drwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut patch drwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut patch syslog rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut patch syslog module setup sh rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut patch syslog rsyslogd start sh rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut patch syslog syslog genrules sh rw r r nobody nogroup opt xcat share xcat netboot sles dracut xcat cmdline sh rw r r nobody nogroup opt xcat share xcat netboot sles dracut xcat premount sh rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut xcat prepivot sh rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut xcat updateflag rwxr xr x nobody nogroup opt xcat share xcat netboot sles dracut xcatroot rwxr xr x nobody nogroup opt xcat share xcat netboot sles genimage rwxr xr x nobody nogroup opt xcat share xcat netboot sles genimage yum rw r r nobody nogroup opt xcat share xcat netboot sles service exlist rw r r nobody nogroup opt xcat share xcat netboot sles service pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service repolist rw r r nobody nogroup opt xcat share xcat netboot sles service postinstall rw r r nobody nogroup opt xcat share xcat netboot sles service exlist rw r r nobody nogroup opt xcat share xcat netboot sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service postinstall rw r r nobody nogroup opt xcat share xcat netboot sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot sles service postinstall rw r r nobody nogroup opt xcat share xcat netboot sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service repolist rw r r nobody nogroup opt xcat share xcat netboot sles service otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot sles service otherpkgs pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot suse rw r r nobody nogroup opt xcat share xcat netboot suse compute exlist rw r r nobody nogroup opt xcat share xcat netboot suse compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot suse compute postinstall rwxr xr x nobody nogroup opt xcat share xcat netboot suse genimage drwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu compute exlist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu compute postinstall rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu cudafull otherpkgs pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu cudafull pkglist rw r r nobody nogroup opt xcat share xcat netboot ubuntu cudaruntime otherpkgs pkglist drwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut check rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut install netboot rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut install statelite rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut installkernel rw r r nobody nogroup opt xcat share xcat netboot ubuntu dracut xcat cmdline sh rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut xcat prepivot sh rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu dracut xcatroot rwxr xr x nobody nogroup opt xcat share xcat netboot ubuntu genimage drwxr xr x nobody nogroup opt xcat share xcat netboot windows rwxr xr x nobody nogroup opt xcat share xcat netboot windows detectefi cpp rwxr xr x nobody nogroup opt xcat share xcat netboot windows detectefi exe rw r r nobody nogroup opt xcat share xcat netboot windows fixupunattend vbs rw r r nobody nogroup opt xcat share xcat netboot windows genimage bat rw r r nobody nogroup opt xcat share xcat netboot windows genimage cmd rwxr xr x nobody nogroup opt xcat share xcat netboot windows getnextserver cpp rwxr xr x nobody nogroup opt xcat share xcat netboot windows getnextserver exe rw r r nobody nogroup opt xcat share xcat netboot windows nextdestiny rw r r nobody nogroup opt xcat share xcat netboot windows startnet cmd rw r r nobody nogroup opt xcat share xcat netboot windows xcat format rwxr xr x nobody nogroup opt xcat share xcat netboot windows xcat rw r r nobody nogroup opt xcat share xcat netboot windows xcat drwxr xr x nobody nogroup opt xcat share xcat templates drwxr xr x nobody nogroup opt xcat share xcat ca rw r r nobody nogroup opt xcat share xcat ca makefile rw r r nobody nogroup opt xcat share xcat ca openssl cnf tmpl drwxr xr x nobody nogroup opt xcat share xcat scripts rwxr xr x nobody nogroup opt xcat share xcat scripts bitscount pl rwxr xr x nobody nogroup opt xcat share xcat scripts rwxr xr x nobody nogroup opt xcat share xcat scripts countbits pl rwxr xr x nobody nogroup opt xcat share xcat scripts createdb sql rwxr xr x nobody nogroup opt xcat share xcat scripts rw r r nobody nogroup opt xcat share xcat scripts exportxcatcreds sh rwxr xr x nobody nogroup opt xcat share xcat scripts extractefiboot pl rw r r nobody nogroup opt xcat share xcat scripts genduiduuid sh rw r r nobody nogroup opt xcat share xcat scripts genula sh rwxr xr x nobody nogroup opt xcat share xcat scripts insptbls rwxr xr x nobody nogroup opt xcat share xcat scripts ipcalc ksh rw r r nobody nogroup opt xcat share xcat scripts rwxr xr x nobody nogroup opt xcat share xcat scripts setup dockerhost cert sh rwxr xr x nobody nogroup opt xcat share xcat scripts setup local client sh rwxr xr x nobody nogroup opt xcat share xcat scripts setup server cert sh rwxr xr x nobody nogroup opt xcat share xcat scripts setup xcat ca sh rwxr xr x nobody nogroup opt xcat share xcat scripts updatedbm sql rw r r nobody nogroup opt xcat share xcat scripts rw r r nobody nogroup opt xcat share xcat scripts xcatfmcd conf rwxr xr x nobody nogroup opt xcat share xcat scripts xcatvio script rwxr xr x nobody nogroup opt xcat share xcat scripts xdcpappend sh rwxr xr x nobody nogroup opt xcat share xcat scripts xdcpmerge sh rwxr xr x nobody nogroup opt xcat share xcat scripts xhrm drwxr xr x nobody nogroup opt xcat share xcat tools rwxr xr x nobody nogroup opt xcat share xcat tools detect dhcpd rwxr xr x nobody nogroup opt xcat share xcat tools rwxr xr x nobody nogroup opt xcat share xcat tools mktoolscenter rwxr xr x nobody nogroup opt xcat share xcat tools nodesw drwxr xr x nobody nogroup opt xcat share xcat tools powervm rw r r nobody nogroup opt xcat share xcat tools powervm readme rw r r nobody nogroup opt xcat share xcat tools powervm configcec pm rwxr xr x nobody nogroup opt xcat share xcat tools powervm configvios rwxr xr x nobody nogroup opt xcat share xcat tools powervm installsshforvios rw r r nobody nogroup opt xcat share xcat tools powervm powervmsteps odt rwxr xr x nobody nogroup opt xcat share xcat tools powervm vios conf rw r r nobody nogroup opt xcat share xcat tools powervm xcataixpost patch rwxr xr x nobody nogroup opt xcat share xcat tools reorgtbls rwxr xr x nobody nogroup opt xcat share xcat tools rmblade rwxr xr x nobody nogroup opt xcat share xcat tools rmnodecfg rwxr xr x nobody nogroup opt xcat share xcat tools test hca state rwxr xr x nobody nogroup opt xcat share xcat tools xcatreg rwxr xr x nobody nogroup opt xcat share xcat tools xcatstat drwxr xr x nobody nogroup opt xcat share xcat rollupdate rw r r nobody nogroup opt xcat share xcat rollupdate ll tmpl rw r r nobody nogroup opt xcat share xcat rollupdate llall tmpl rw r r nobody nogroup opt xcat share xcat rollupdate rollupdate input sample rw r r nobody nogroup opt xcat share xcat rollupdate rollupdate all input sample rw r r nobody nogroup opt xcat share xcat rollupdate rollupdate stateful input sample drwxr xr x nobody nogroup opt xcat share xcat installp bundles rw r r nobody nogroup opt xcat share xcat installp bundles bnd rw r r nobody nogroup opt xcat share xcat installp bundles bnd rw r r nobody nogroup opt xcat share xcat installp bundles bnd rw r r nobody nogroup opt xcat share xcat installp bundles bnd rw r r nobody nogroup opt xcat share xcat installp bundles bnd rw r r nobody nogroup opt xcat share xcat installp bundles bnd drwxr xr x nobody nogroup opt xcat share xcat image data rw r r nobody nogroup opt xcat share xcat image data xcatsndata drwxr xr x nobody nogroup opt xcat share xcat cons rwxr xr x nobody nogroup opt xcat share xcat cons blade rwxr xr x nobody nogroup opt xcat share xcat cons fsp rwxr xr x nobody nogroup opt xcat share xcat cons hmc rwxr xr x nobody nogroup opt xcat share xcat cons hpblade rwxr xr x nobody nogroup opt xcat share xcat cons ipmi rwxr xr x nobody nogroup opt xcat share xcat cons ivm rwxr xr x nobody nogroup opt xcat share xcat cons kvm rwxr xr x nobody nogroup opt xcat share xcat cons multiple rwxr xr x nobody nogroup opt xcat share xcat cons xen drwxr xr x nobody nogroup opt xcat share xcat devicetype drwxr xr x nobody nogroup opt xcat share xcat devicetype ethswitch drwxr xr x nobody nogroup opt xcat share xcat devicetype ethswitch bnt rw r r nobody nogroup opt xcat share xcat devicetype ethswitch bnt config drwxr xr x nobody nogroup opt xcat share xcat devicetype ethswitch cisco rw r r nobody nogroup opt xcat share xcat devicetype ethswitch cisco config drwxr xr x nobody nogroup opt xcat share xcat devicetype ethswitch jun rw r r nobody nogroup opt xcat share xcat devicetype ethswitch jun config drwxr xr x nobody nogroup opt xcat share xcat devicetype ethswitch mellanox rw r r nobody nogroup opt xcat share xcat devicetype ethswitch mellanox config rw r r nobody nogroup opt xcat share xcat devicetype ethswitch config drwxr xr x nobody nogroup opt xcat share xcat devicetype ibswitch drwxr xr x nobody nogroup opt xcat share xcat devicetype ibswitch mellanox rw r r nobody nogroup opt xcat share xcat devicetype ibswitch mellanox config drwxr xr x nobody nogroup opt xcat share xcat devicetype ibswitch qlogic rw r r nobody nogroup opt xcat share xcat devicetype ibswitch qlogic config drwxr xr x nobody nogroup opt xcat share xcat devicetype vios rw r r nobody nogroup opt xcat share xcat devicetype vios config drwxr xr x nobody nogroup opt xcat share xcat ib drwxr xr x nobody nogroup opt xcat share xcat ib scripts drwxr xr x nobody nogroup opt xcat share xcat ib scripts mellanox rwxr xr x nobody nogroup opt xcat share xcat ib scripts mellanox mlnxofed ib install rwxr xr x nobody nogroup opt xcat share xcat ib scripts mellanox mlnxofed ib install rw r r nobody nogroup opt xcat share xcat ib scripts mellanox config drwxr xr x nobody nogroup opt xcat share xcat ib scripts qlogic rw r r nobody nogroup opt xcat share xcat ib scripts qlogic config rw r r nobody nogroup opt xcat share xcat ib scripts annotatelog rw r r nobody nogroup opt xcat share xcat ib scripts annotatelog readme rw r r nobody nogroup opt xcat share xcat ib scripts configcecs rw r r nobody nogroup opt xcat share xcat ib scripts configcecs readme rwxr xr x nobody nogroup opt xcat share xcat ib scripts configiba rwxr xr x nobody nogroup opt xcat share xcat ib scripts configiba rw r r nobody nogroup opt xcat share xcat ib scripts configiba readme rw r r nobody nogroup opt xcat share xcat ib scripts getguids rw r r nobody nogroup opt xcat share xcat ib scripts getguids readme rw r r nobody nogroup opt xcat share xcat ib scripts healthcheck rw r r nobody nogroup opt xcat share xcat ib scripts healthcheck readme drwxr xr x nobody nogroup opt xcat share xcat ib netboot drwxr xr x nobody nogroup opt xcat share xcat ib netboot sles rwxr xr x nobody nogroup opt xcat share xcat ib netboot sles ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot sles ib postinstall rwxr xr x nobody nogroup opt xcat share xcat ib netboot sles ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot sles ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot sles ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot sles statelite csv drwxr xr x nobody nogroup opt xcat share xcat ib netboot rh rwxr xr x nobody nogroup opt xcat share xcat ib netboot rh ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot rh ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot rh ib pkglist rwxr xr x nobody nogroup opt xcat share xcat ib netboot rh ib pkglist drwxr xr x nobody nogroup opt xcat share xcat mypostscript rwxr xr x nobody nogroup opt xcat share xcat mypostscript mypostscript tmpl drwxr xr x nobody nogroup opt xcat share doc drwxr xr x nobody nogroup opt xcat share doc packages drwxr xr x nobody nogroup opt xcat share doc packages xcat server rw r r nobody nogroup opt xcat share doc packages xcat server license html drwxr xr x nobody nogroup opt xcat lib drwxr xr x nobody nogroup opt xcat lib perl drwxr xr x nobody nogroup opt xcat lib perl confluent rw r r nobody nogroup opt xcat lib perl confluent client pm rw r r nobody nogroup opt xcat lib perl confluent tlv pm drwxr xr x nobody nogroup opt xcat lib perl xcat rw r r nobody nogroup opt xcat lib perl xcat adutils pm rw r r nobody nogroup opt xcat lib perl xcat fifopipe pm rw r r nobody nogroup opt xcat lib perl xcat immutils pm rw r r nobody nogroup opt xcat lib perl xcat ipmi pm rw r r nobody nogroup opt xcat lib perl xcat mellanoxib pm rw r r nobody nogroup opt xcat lib perl xcat passwordutils pm rw r r nobody nogroup opt xcat lib perl xcat postage pm rw r r nobody nogroup opt xcat lib perl xcat ppc pm rw r r nobody nogroup opt xcat lib perl xcat rshellapi pm rw r r nobody nogroup opt xcat lib perl xcat sshinteract pm rw r r nobody nogroup opt xcat lib perl xcat state pm rw r r nobody nogroup opt xcat lib perl xcat svrutils pm rw r r nobody nogroup opt xcat lib perl xcat template pm rw r r nobody nogroup opt xcat lib perl xcat tzutils pm rw r r nobody nogroup opt xcat lib perl xcat winutils pm rw r r nobody nogroup opt xcat lib perl xcat xcatd pm drwxr xr x nobody nogroup opt xcat lib perl xcat plugin rw r r nobody nogroup opt xcat lib perl xcat plugin pm rw r r nobody nogroup opt xcat lib perl xcat plugin aaausage pm rw r r nobody nogroup opt xcat lib perl xcat plugin aasn pm rw r r nobody nogroup opt xcat lib perl xcat plugin activedirectory pm rw r r nobody nogroup opt xcat lib perl xcat plugin aixinstall pm rw r r nobody nogroup opt xcat lib perl xcat plugin anaconda pm rw r r nobody nogroup opt xcat lib perl xcat plugin blade pm rw r r nobody nogroup opt xcat lib perl xcat plugin bmcconfig pm rw r r nobody nogroup opt xcat lib perl xcat plugin bmcdiscover pm rw r r nobody nogroup opt xcat lib perl xcat plugin boottarget pm rw r r nobody nogroup opt xcat lib perl xcat plugin bpa pm rw r r nobody nogroup opt xcat lib perl xcat plugin configfpc pm rw r r nobody nogroup opt xcat lib perl xcat plugin confluent pm rw r r nobody nogroup opt xcat lib perl xcat plugin conserver pm rw r r nobody nogroup opt xcat lib perl xcat plugin copycds pm rw r r nobody nogroup opt xcat lib perl xcat plugin credentials pm rw r r nobody nogroup opt xcat lib perl xcat plugin dbobjectdefs pm rw r r nobody nogroup opt xcat lib perl xcat plugin ddns pm rw r r nobody nogroup opt xcat lib perl xcat plugin debian pm rw r r nobody nogroup opt xcat lib perl xcat plugin destiny pm rw r r nobody nogroup opt xcat lib perl xcat plugin dhcp pm rw r r nobody nogroup opt xcat lib perl xcat plugin docker pm rw r r nobody nogroup opt xcat lib perl xcat plugin energy pm rw r r nobody nogroup opt xcat lib perl xcat plugin esx pm rw r r nobody nogroup opt xcat lib perl xcat plugin fip pm rw r r nobody nogroup opt xcat lib perl xcat plugin frusetter pm rw r r nobody nogroup opt xcat lib perl xcat plugin fsp pm rw r r nobody nogroup opt xcat lib perl xcat plugin genimage pm rw r r nobody nogroup opt xcat lib perl xcat plugin geninitrd pm rw r r nobody nogroup opt xcat lib perl xcat plugin getadapter pm rw r r nobody nogroup opt xcat lib perl xcat plugin getpartition pm rw r r nobody nogroup opt xcat lib perl xcat plugin getpostscript pm rw r r nobody nogroup opt xcat lib perl xcat plugin pm rw r r nobody nogroup opt xcat lib perl xcat plugin hmc pm rw r r nobody nogroup opt xcat lib perl xcat plugin hosts pm rw r r nobody nogroup opt xcat lib perl xcat plugin hpblade pm rw r r nobody nogroup opt xcat lib perl xcat plugin hpilo pm rw r r nobody nogroup opt xcat lib perl xcat plugin imgcapture pm rw r r nobody nogroup opt xcat lib perl xcat plugin imgport pm rw r r nobody nogroup opt xcat lib perl xcat plugin ipmi pm rw r r nobody nogroup opt xcat lib perl xcat plugin iscsi pm rw r r nobody nogroup opt xcat lib perl xcat plugin ivm pm rw r r nobody nogroup opt xcat lib perl xcat plugin kit pm rw r r nobody nogroup opt xcat lib perl xcat plugin kmodules pm rw r r nobody nogroup opt xcat lib perl xcat plugin kvm pm rw r r nobody nogroup opt xcat lib perl xcat plugin litetree pm rw r r nobody nogroup opt xcat lib perl xcat plugin lsslp pm rw r r nobody nogroup opt xcat lib perl xcat plugin makeknownhosts pm rw r r nobody nogroup opt xcat lib perl xcat plugin makentp pm rw r r nobody nogroup opt xcat lib perl xcat plugin mic pm rw r r nobody nogroup opt xcat lib perl xcat plugin mknb pm rw r r nobody nogroup opt xcat lib perl xcat plugin monctrlcmds pm rw r r nobody nogroup opt xcat lib perl xcat plugin networks pm rw r r nobody nogroup opt xcat lib perl xcat plugin nimol pm rw r r nobody nogroup opt xcat lib perl xcat plugin nodediscover pm rw r r nobody nogroup opt xcat lib perl xcat plugin nodestat pm rw r r nobody nogroup opt xcat lib perl xcat plugin notification pm rw r r nobody nogroup opt xcat lib perl xcat plugin offline pm rw r r nobody nogroup opt xcat lib perl xcat plugin ontap pm rw r r nobody nogroup opt xcat lib perl xcat plugin osdistro pm rw r r nobody nogroup opt xcat lib perl xcat plugin packimage pm rw r r nobody nogroup opt xcat lib perl xcat plugin petitboot pm rw r r nobody nogroup opt xcat lib perl xcat plugin prescripts pm rw r r nobody nogroup opt xcat lib perl xcat plugin profilednodes pm rw r r nobody nogroup opt xcat lib perl xcat plugin pxe pm rw r r nobody nogroup opt xcat lib perl xcat plugin remoteimmsetup pm rw r r nobody nogroup opt xcat lib perl xcat plugin rescanplugins pm rw r r nobody nogroup opt xcat lib perl xcat plugin rhevm pm rw r r nobody nogroup opt xcat lib perl xcat plugin rinstall pm rw r r nobody nogroup opt xcat lib perl xcat plugin rmimage pm rw r r nobody nogroup opt xcat lib perl xcat plugin rollupdate pm rw r r nobody nogroup opt xcat lib perl xcat plugin route pm rw r r nobody nogroup opt xcat lib perl xcat plugin seqdiscovery pm rw r r nobody nogroup opt xcat lib perl xcat plugin setup pm rw r r nobody nogroup opt xcat lib perl xcat plugin sinv pm rw r r nobody nogroup opt xcat lib perl xcat plugin sles pm rw r r nobody nogroup opt xcat lib perl xcat plugin slpdiscover pm rw r r nobody nogroup opt xcat lib perl xcat plugin snmove pm rw r r nobody nogroup opt xcat lib perl xcat plugin statelite pm rw r r nobody nogroup opt xcat lib perl xcat plugin svc pm rw r r nobody nogroup opt xcat lib perl xcat plugin switch pm rw r r nobody nogroup opt xcat lib perl xcat plugin switchdiscover pm rw r r nobody nogroup opt xcat lib perl xcat plugin syncfiles pm rw r r nobody nogroup opt xcat lib perl xcat plugin tabutils pm rw r r nobody nogroup opt xcat lib perl xcat plugin toolscenter pm rw r r nobody nogroup opt xcat lib perl xcat plugin tree pm rw r r nobody nogroup opt xcat lib perl xcat plugin updatenode pm rw r r nobody nogroup opt xcat lib perl xcat plugin vbox pm rw r r nobody nogroup opt xcat lib perl xcat plugin vsmppxe pm rw r r nobody nogroup opt xcat lib perl xcat plugin windows pm rw r r nobody nogroup opt xcat lib perl xcat plugin pm rw r r nobody nogroup opt xcat lib perl xcat plugin xcatworld pm rw r r nobody nogroup opt xcat lib perl xcat plugin xdsh pm rw r r nobody nogroup opt xcat lib perl xcat plugin xen pm rw r r nobody nogroup opt xcat lib perl xcat plugin xnba pm rw r r nobody nogroup opt xcat lib perl xcat plugin yaboot pm rw r r nobody nogroup opt xcat lib perl xcat plugin zone pm rw r r nobody nogroup opt xcat lib perl xcat plugin zvm pm drwxr xr x nobody nogroup opt xcat lib perl xcat schema drwxr xr x nobody nogroup opt xcat lib perl xcat schema samples rw r r nobody nogroup opt xcat lib perl xcat schema samples sample pm drwxr xr x nobody nogroup opt xcat lib perl xcat monitoring drwxr xr x nobody nogroup opt xcat lib perl xcat monitoring samples rw r r nobody nogroup opt xcat lib perl xcat monitoring samples mycode pm rw r r nobody nogroup opt xcat lib perl xcat monitoring samples templatemon pm drwxr xr x nobody nogroup opt xcat lib perl xcat monitoring pcp rw r r nobody nogroup opt xcat lib perl xcat monitoring pcp pcpmon config rw r r nobody nogroup opt xcat lib perl xcat monitoring bootttmon pm rw r r nobody nogroup opt xcat lib perl xcat monitoring gangliamon pm rw r r nobody nogroup opt xcat lib perl xcat monitoring monitorctrl pm rw r r nobody nogroup opt xcat lib perl xcat monitoring montbhandler pm rw r r nobody nogroup opt xcat lib perl xcat monitoring nagiosmon pm rw r r nobody nogroup opt xcat lib perl xcat monitoring pcpmon pm rw r r nobody nogroup opt xcat lib perl xcat monitoring rrdutil pm rw r r nobody nogroup opt xcat lib perl xcat monitoring snmpmon pm rw r r nobody nogroup opt xcat lib perl xcat monitoring xcatmon pm rw r r nobody nogroup opt xcat lib shfunctions drwxr xr x nobody nogroup opt xcat xdsh drwxr xr x nobody nogroup opt xcat xdsh context rw r r nobody nogroup opt xcat xdsh context dsh pm rw r r nobody nogroup opt xcat xdsh context xcat pm drwxr xr x nobody nogroup opt xcat ws rwxr xr x nobody nogroup opt xcat ws genrestapidoc pm rwxr xr x nobody nogroup opt xcat ws restapi pl rwxr xr x nobody nogroup opt xcat ws xcatrhevh cgi rwxr xr x nobody nogroup opt xcat ws xcatws test pl rwxr xr x nobody nogroup opt xcat ws xcatws test sh rwxr xr x nobody nogroup opt xcat ws xcatws cgi drwxr xr x nobody nogroup etc drwxr xr x nobody nogroup etc init d rwxr xr x nobody nogroup etc init d xcatd drwxr xr x nobody nogroup etc xcat drwxr xr x nobody nogroup etc drwxr xr x nobody nogroup etc conf enabled drwxr xr x nobody nogroup etc conf available rw r r nobody nogroup etc conf available xcat ws conf drwxr xr x nobody nogroup usr drwxr xr x nobody nogroup usr share drwxr xr x nobody nogroup usr share doc drwxr xr x nobody nogroup usr share doc xcat server rw r r nobody nogroup usr share doc xcat server license html rw r r nobody nogroup usr share doc xcat server copyright rw r r nobody nogroup usr share doc xcat server changelog debian gz lrwxrwxrwx nobody nogroup opt xcat share xcat install esxi base tmpl esx base tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install fedora compute tmpl compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install fedora compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install fedora compute tmpl compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install ol compute pkglist rh compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ol compute tmpl rh compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install scripts pre rh pre rh lrwxrwxrwx nobody nogroup opt xcat share xcat install sl compute pkglist rh compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install sl compute tmpl rh compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu cudafull tmpl compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu cudafull pkglist cudafull pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu cudaruntime tmpl compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu cudaruntime pkglist cudaruntime pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu kvm tmpl compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat install ubuntu service tmpl compute tmpl lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos compute exlist rh compute exlist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos compute pkglist rh compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos compute postinstall rh compute postinstall lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos dracut rh dracut lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos dracut rh dracut lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos genimage rh genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos geninitrd genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos kvm exlist rh kvm exlist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos kvm pkglist rh kvm pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos xen exlist rh xen exlist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot centos xen pkglist rh xen pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut check rh dracut check lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut install netboot rh dracut install netboot lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut install statelite rh dracut install statelite lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut installkernel rh dracut installkernel lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcat cmdline sh rh dracut xcat cmdline sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcat premount sh rh dracut xcat premount sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcat prepivot sh rh dracut xcat prepivot sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcat updateflag rh dracut xcat updateflag lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcatroot rh dracut xcatroot lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut check rh dracut check lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut install netboot rh dracut install netboot lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut install statelite rh dracut install statelite lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut installkernel rh dracut installkernel lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcat premount sh rh dracut xcat premount sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora dracut xcat updateflag rh dracut xcat updateflag lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora genimage rh genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot fedora geninitrd genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ol compute exlist rh compute exlist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ol compute pkglist rh compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ol compute pkglist rh compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ol dracut rh dracut lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ol dracut rh dracut lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ol genimage rh genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot rh compute exlist compute exlist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot rh compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot rh compute postinstall compute postinstall lrwxrwxrwx nobody nogroup opt xcat share xcat netboot rh geninitrd genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl compute pkglist rh compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut check rh dracut check lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut install netboot rh dracut install netboot lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut install statelite rh dracut install statelite lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut installkernel rh dracut installkernel lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut xcat cmdline sh rh dracut xcat cmdline sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut xcat premount sh rh dracut xcat premount sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut xcat prepivot sh rh dracut xcat prepivot sh lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut xcat updateflag rh dracut xcat updateflag lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut xcatroot rh dracut xcatroot lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl dracut rh dracut lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sl genimage rh genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot sles geninitrd genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot suse geninitrd genimage lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu compute pkglist compute pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu cudafull pkglist cudafull pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu cudafull pkglist cudafull pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu cudaruntime pkglist cudafull pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu cudaruntime pkglist cudafull pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu cudaruntime pkglist cudafull pkglist lrwxrwxrwx nobody nogroup opt xcat share xcat netboot ubuntu geninitrd genimage lrwxrwxrwx nobody nogroup opt xcat share xcat devicetype ethswitch juniper jun lrwxrwxrwx nobody nogroup etc conf enabled xcat ws conf conf available xcat ws conf | 0 |
4,697 | 24,234,956,898 | IssuesEvent | 2022-09-26 22:00:54 | aws/aws-sam-cli | https://api.github.com/repos/aws/aws-sam-cli | closed | sam package & deploy without using an S3 bucket | type/feature stage/pm-review maintainer/need-response | ### Describe your idea/feature/enhancement
Currently sam package & deploy require an S3 bucket to store the packaged app and that the deployment be done from that location. Developers that already have an established CI/CD pipeline already have a repository for build artifacts where they'd like store the packaged sam app, and deploy packages from that location
The workaround today is to push artifacts to the developer's repository and during deployment run `sam package` and `sam deploy` just to satisfy the S3 requirement, which is inefficient and has limitations such as having to manually set up S3 buckets with the appropriate permissions as described in #1701.
### Proposal
Allow developers to specify an output folder & filename for creating a packaged application as a zip file, and allow developers to deploy from that zip file.
e.g.
```
sam package --output-zip-file my-sam-app.zip
sam deploy --zip-file my-sam-app.zip
```
| True | sam package & deploy without using an S3 bucket - ### Describe your idea/feature/enhancement
Currently sam package & deploy require an S3 bucket to store the packaged app and that the deployment be done from that location. Developers that already have an established CI/CD pipeline already have a repository for build artifacts where they'd like store the packaged sam app, and deploy packages from that location
The workaround today is to push artifacts to the developer's repository and during deployment run `sam package` and `sam deploy` just to satisfy the S3 requirement, which is inefficient and has limitations such as having to manually set up S3 buckets with the appropriate permissions as described in #1701.
### Proposal
Allow developers to specify an output folder & filename for creating a packaged application as a zip file, and allow developers to deploy from that zip file.
e.g.
```
sam package --output-zip-file my-sam-app.zip
sam deploy --zip-file my-sam-app.zip
```
| main | sam package deploy without using an bucket describe your idea feature enhancement currently sam package deploy require an bucket to store the packaged app and that the deployment be done from that location developers that already have an established ci cd pipeline already have a repository for build artifacts where they d like store the packaged sam app and deploy packages from that location the workaround today is to push artifacts to the developer s repository and during deployment run sam package and sam deploy just to satisfy the requirement which is inefficient and has limitations such as having to manually set up buckets with the appropriate permissions as described in proposal allow developers to specify an output folder filename for creating a packaged application as a zip file and allow developers to deploy from that zip file e g sam package output zip file my sam app zip sam deploy zip file my sam app zip | 1 |
179,767 | 13,901,365,636 | IssuesEvent | 2020-10-20 02:44:28 | cmu-db/noisepage | https://api.github.com/repos/cmu-db/noisepage | closed | Python Test Harness: Run DBMS with RamDisk for OLTP-Bench Tests | tests | When we invoke OTLP-Bench now in our Jenkins pipeline, we run the DBMS using whatever the default disk to store the WAL. The 'Microbenchmark' stage in the `Jenkinsfile` uses a RAM disk that is mounted on the benchmark machines.
We want to extend the `Jenkinsfile-nightly` OTLP-Bench runs to also include RAM disk runs. It can be exactly the same OLTP-Bench configurations that we have now, except it should pass the server the arguments `-log_file_path=/mnt/ramdisk/wal.log`. We may want to delete this file before each run.
We will also want to switch the 'End-to-End Performance' stage in `Jenkinsfile` to use the RAM disk as well.
This can be done as part of #1054. | 1.0 | Python Test Harness: Run DBMS with RamDisk for OLTP-Bench Tests - When we invoke OTLP-Bench now in our Jenkins pipeline, we run the DBMS using whatever the default disk to store the WAL. The 'Microbenchmark' stage in the `Jenkinsfile` uses a RAM disk that is mounted on the benchmark machines.
We want to extend the `Jenkinsfile-nightly` OTLP-Bench runs to also include RAM disk runs. It can be exactly the same OLTP-Bench configurations that we have now, except it should pass the server the arguments `-log_file_path=/mnt/ramdisk/wal.log`. We may want to delete this file before each run.
We will also want to switch the 'End-to-End Performance' stage in `Jenkinsfile` to use the RAM disk as well.
This can be done as part of #1054. | non_main | python test harness run dbms with ramdisk for oltp bench tests when we invoke otlp bench now in our jenkins pipeline we run the dbms using whatever the default disk to store the wal the microbenchmark stage in the jenkinsfile uses a ram disk that is mounted on the benchmark machines we want to extend the jenkinsfile nightly otlp bench runs to also include ram disk runs it can be exactly the same oltp bench configurations that we have now except it should pass the server the arguments log file path mnt ramdisk wal log we may want to delete this file before each run we will also want to switch the end to end performance stage in jenkinsfile to use the ram disk as well this can be done as part of | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.