mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[deb] Add adduser as a dependency (#185048)
adduser is used in the deb post install script. Installing kibana.deb in a container won't have the necessary dependencies by default Closes #182537 --------- Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
e026c2a2a9
commit
d8302eb2ec
2 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,7 @@ steps:
|
|||
preemptible: true
|
||||
key: build
|
||||
if: "build.env('KIBANA_BUILD_ID') == null || build.env('KIBANA_BUILD_ID') == ''"
|
||||
timeout_in_minutes: 60
|
||||
timeout_in_minutes: 90
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
|
|
|
@ -28,6 +28,8 @@ export const CreateDebPackage: Task = {
|
|||
'amd64',
|
||||
'--deb-priority',
|
||||
'optional',
|
||||
'--depends',
|
||||
' adduser',
|
||||
]);
|
||||
|
||||
await runFpm(config, log, build, 'deb', 'arm64', [
|
||||
|
@ -35,6 +37,8 @@ export const CreateDebPackage: Task = {
|
|||
'arm64',
|
||||
'--deb-priority',
|
||||
'optional',
|
||||
'--depends',
|
||||
' adduser',
|
||||
]);
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue