Merge pull request #164 from ronivay/chore/remove-libxml-pkg

This commit is contained in:
Roni Väyrynen
2023-01-13 20:32:03 +02:00
committed by GitHub
2 changed files with 6 additions and 8 deletions

View File

@@ -120,7 +120,6 @@ rpm:
- cifs-utils - cifs-utils
- lvm2 - lvm2
- ntfs-3g - ntfs-3g
- libxml2
- sudo (if set in xo-install.cfg) - sudo (if set in xo-install.cfg)
deb: deb:
@@ -143,7 +142,6 @@ deb:
- gnupg (debian 10/11) - gnupg (debian 10/11)
- software-properties-common (ubuntu) - software-properties-common (ubuntu)
- ntfs-3g - ntfs-3g
- libxml2-utils
- sudo (if set in xo-install.cfg) - sudo (if set in xo-install.cfg)
``` ```

View File

@@ -204,9 +204,9 @@ function InstallDependenciesRPM {
# install packages # install packages
echo echo
printprog "Installing build dependencies, redis server, python3, git, nfs-utils, cifs-utils, lvm2, ntfs-3g, libxml2" printprog "Installing build dependencies, redis server, python3, git, nfs-utils, cifs-utils, lvm2, ntfs-3g"
runcmd "yum -y install gcc gcc-c++ make openssl-devel redis libpng-devel python3 git nfs-utils cifs-utils lvm2 ntfs-3g libxml2" runcmd "yum -y install gcc gcc-c++ make openssl-devel redis libpng-devel python3 git nfs-utils cifs-utils lvm2 ntfs-3g"
printok "Installing build dependencies, redis server, python3, git, nfs-utils, cifs-utils, lvm2, ntfs-3g, libxml2" printok "Installing build dependencies, redis server, python3, git, nfs-utils, cifs-utils, lvm2, ntfs-3g"
# only run automated node install if executable not found # only run automated node install if executable not found
if [[ -z $(runcmd_stdout "command -v node") ]]; then if [[ -z $(runcmd_stdout "command -v node") ]]; then
@@ -288,9 +288,9 @@ function InstallDependenciesDeb {
# install packages # install packages
echo echo
printprog "Installing build dependencies, redis server, python3-minimal, git, libvhdi-utils, lvm2, nfs-common, cifs-utils, curl, ntfs-3g, libxml2-utils" printprog "Installing build dependencies, redis server, python3-minimal, git, libvhdi-utils, lvm2, nfs-common, cifs-utils, curl, ntfs-3g"
runcmd "apt-get install -y build-essential redis-server libpng-dev git libvhdi-utils python3-minimal lvm2 nfs-common cifs-utils curl ntfs-3g libxml2-utils" runcmd "apt-get install -y build-essential redis-server libpng-dev git libvhdi-utils python3-minimal lvm2 nfs-common cifs-utils curl ntfs-3g"
printok "Installing build dependencies, redis server, python3-minimal, git, libvhdi-utils, lvm2, nfs-common, cifs-utils, curl, ntfs-3g, libxml2-utils" printok "Installing build dependencies, redis server, python3-minimal, git, libvhdi-utils, lvm2, nfs-common, cifs-utils, curl, ntfs-3g"
# Install apt-transport-https and ca-certificates because of yarn https repo url # Install apt-transport-https and ca-certificates because of yarn https repo url
echo echo