-1

When I try to update on landscape client machine I get this error.

$ sudo apt-get update
N: Skipping acquire of configured file 'restricted/binary-i386/Packages'
 as repository 'http://landscape/repository/standalone/xenial xenial-updates InRelease'
 doesn't support architecture 'i386'

Is there any simple way to add arch i386 without having to create a new pocket, using only CLI?

Zanna
  • 72,312
tho
  • 7

1 Answers1

0

The APi has an EditPocket method which takes a list of architectures. Something like this should allow you to change the list of architectures of a pocket:

landscape-api edit-pocket pocket series distribution --architectures amd64,i386
simpoir
  • 580