Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
cms:repository [2018/10/30 12:54] Andrey Tataranovichcms:repository [2020/02/02 09:22] Andrey Tataranovich
Line 19: Line 19:
     versions = {     versions = {
         'debian': ['Jessie', 'Stretch', 'Buster', 'Sid'],         'debian': ['Jessie', 'Stretch', 'Buster', 'Sid'],
-        'ubuntu': ['Trusty', 'Xenial', 'Bionic', 'Cosmic']+        'ubuntu': ['Trusty', 'Xenial', 'Bionic', 'Eoan']
     }     }
     dist = document.getElementById('distribution');     dist = document.getElementById('distribution');
Line 38: Line 38:
         'debian-jessie': 'deb http://www.tataranovich.com/debian jessie main backports',         'debian-jessie': 'deb http://www.tataranovich.com/debian jessie main backports',
         'debian-stretch': 'deb http://www.tataranovich.com/debian stretch main backports',         'debian-stretch': 'deb http://www.tataranovich.com/debian stretch main backports',
-        'debian-buster': 'deb http://www.tataranovich.com/debian buster main',+        'debian-buster': 'deb http://www.tataranovich.com/debian buster main backports',
         'debian-sid': 'deb http://www.tataranovich.com/debian sid main',         'debian-sid': 'deb http://www.tataranovich.com/debian sid main',
         'ubuntu-trusty': 'deb http://www.tataranovich.com/ubuntu trusty main',         'ubuntu-trusty': 'deb http://www.tataranovich.com/ubuntu trusty main',
         'ubuntu-xenial': 'deb http://www.tataranovich.com/ubuntu xenial main',         'ubuntu-xenial': 'deb http://www.tataranovich.com/ubuntu xenial main',
         'ubuntu-bionic': 'deb http://www.tataranovich.com/ubuntu bionic main',         'ubuntu-bionic': 'deb http://www.tataranovich.com/ubuntu bionic main',
-        'ubuntu-cosmic': 'deb http://www.tataranovich.com/ubuntu cosmic main'+        'ubuntu-eoan': 'deb http://www.tataranovich.com/ubuntu eoan main',
     }     }
     dist = document.getElementById('distribution');     dist = document.getElementById('distribution');
Line 52: Line 52:
     key = distribution + '-' + version;     key = distribution + '-' + version;
     if (key in sources) {     if (key in sources) {
-        text = 'sudo apt-get install curl gnupg\n';+        text = 'sudo apt-get install -y curl gnupg\n';
         text = text + 'curl -fsSL http://www.tataranovich.com/debian/gpg | sudo apt-key add -\n';         text = text + 'curl -fsSL http://www.tataranovich.com/debian/gpg | sudo apt-key add -\n';
         text = text + `APT_SOURCE='${sources[key]}'\n`;         text = text + `APT_SOURCE='${sources[key]}'\n`;
Line 91: Line 91:
 <p>Debian Buster</p> <p>Debian Buster</p>
 <pre> <pre>
-deb http://www.tataranovich.com/debian buster main +deb http://www.tataranovich.com/debian buster main backports 
-deb-src http://www.tataranovich.com/debian buster main+deb-src http://www.tataranovich.com/debian buster main backports
 </pre> </pre>
  
Line 122: Line 122:
  
  
-<p>Ubuntu Cosmic</p>+<p>Ubuntu Eoan</p>
 <pre> <pre>
-deb http://www.tataranovich.com/ubuntu cosmic main +deb http://www.tataranovich.com/ubuntu eoan main 
-deb-src http://www.tataranovich.com/ubuntu cosmic main+deb-src http://www.tataranovich.com/ubuntu eoan main
 </pre> </pre>
 </noscript> </noscript>