From 46d1a8199bae8280e39abb1359e77412759aa975 Mon Sep 17 00:00:00 2001 From: Matt Apperson Date: Thu, 18 Oct 2018 12:16:01 -0400 Subject: [PATCH] merge RPM and DEB as they are the same command (#24209) --- .../public/pages/main/enroll_fragment.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/x-pack/plugins/beats_management/public/pages/main/enroll_fragment.tsx b/x-pack/plugins/beats_management/public/pages/main/enroll_fragment.tsx index 2cc249127e5b14..8de416675325d8 100644 --- a/x-pack/plugins/beats_management/public/pages/main/enroll_fragment.tsx +++ b/x-pack/plugins/beats_management/public/pages/main/enroll_fragment.tsx @@ -140,7 +140,7 @@ export class EnrollBeat extends React.Component { -

Select your operating system:

+

Select your platform:

@@ -149,7 +149,7 @@ export class EnrollBeat extends React.Component { options={[ { value: `sudo ${this.state.beatType}`, - label: 'DEB', + label: 'DEB / RPM', }, { value: `PS C:\\Program Files\\${capitalize(this.state.beatType)}> ${ @@ -161,10 +161,6 @@ export class EnrollBeat extends React.Component { value: `./${this.state.beatType}`, label: 'MacOS', }, - { - value: `sudo ${this.state.beatType}`, - label: 'RPM', - }, ]} onChange={(e: any) => this.setState({ command: e.target.value })} fullWidth={true}