mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-07 05:42:42 +00:00
Update system tests after help changes.
This commit is contained in:
@@ -3,11 +3,11 @@ aptly - Debian repository management tool
|
|||||||
Commands:
|
Commands:
|
||||||
|
|
||||||
db manage aptly's internal database and package pool
|
db manage aptly's internal database and package pool
|
||||||
graph display graph of dependencies between aptly objects (requires graphviz)
|
graph render graph of relationships
|
||||||
mirror manage mirrors of remote repositories
|
mirror manage mirrors of remote repositories
|
||||||
publish manage published repositories
|
publish manage published repositories
|
||||||
repo manage local package repositories
|
repo manage local package repositories
|
||||||
serve start embedded HTTP server to serve published repositories
|
serve HTTP serve published repositories
|
||||||
snapshot manage snapshots of repositories
|
snapshot manage snapshots of repositories
|
||||||
version display version
|
version display version
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,13 @@ repositories, manage local repositories, filter them, merge,
|
|||||||
upgrade individual packages, take snapshots and publish them
|
upgrade individual packages, take snapshots and publish them
|
||||||
back as Debian repositories.
|
back as Debian repositories.
|
||||||
|
|
||||||
|
aptly goal is to establish repeatiblity and controlled changes
|
||||||
|
in package environment. aptly allows to fix set of packages in
|
||||||
|
repository, so that package installation and upgrade becomes
|
||||||
|
deterministic. At the same time aptly allows to perform controlled,
|
||||||
|
fine-grained changes in repository contents to transition your
|
||||||
|
package environment to new version.
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-architectures="": list of architectures to consider during (comma-separated), default to all available
|
-architectures="": list of architectures to consider during (comma-separated), default to all available
|
||||||
-config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf)
|
-config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf)
|
||||||
|
|||||||
@@ -3,11 +3,11 @@ aptly - Debian repository management tool
|
|||||||
Commands:
|
Commands:
|
||||||
|
|
||||||
db manage aptly's internal database and package pool
|
db manage aptly's internal database and package pool
|
||||||
graph display graph of dependencies between aptly objects (requires graphviz)
|
graph render graph of relationships
|
||||||
mirror manage mirrors of remote repositories
|
mirror manage mirrors of remote repositories
|
||||||
publish manage published repositories
|
publish manage published repositories
|
||||||
repo manage local package repositories
|
repo manage local package repositories
|
||||||
serve start embedded HTTP server to serve published repositories
|
serve HTTP serve published repositories
|
||||||
snapshot manage snapshots of repositories
|
snapshot manage snapshots of repositories
|
||||||
version display version
|
version display version
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
Usage: aptly mirror create <name> <archive url> <distribution> [<component1> ...]
|
Usage: aptly mirror create <name> <archive url> <distribution> [<component1> ...]
|
||||||
|
|
||||||
Create records information about new mirror and fetches Release file (it doesn't download packages).
|
Creates mirror <name> of remote repository, aptly supports both regular and flat Debian repositories exported
|
||||||
|
via HTTP. aptly would try download Release file from remote repository and verify its signature.
|
||||||
|
|
||||||
PPA url could specified in short format when running on Debian/Ubuntu:
|
PPA urls could specified in short format:
|
||||||
$ aptly mirror create some_ppa ppa:user/project
|
|
||||||
|
$ aptly mirror create <name> ppa:<user>/<project>
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
ex:
|
|
||||||
$ aptly mirror create wheezy-main http://mirror.yandex.ru/debian/ wheezy main
|
$ aptly mirror create wheezy-main http://mirror.yandex.ru/debian/ wheezy main
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-ignore-signatures=false: disable verification of Release file signatures
|
-ignore-signatures=false: disable verification of Release file signatures
|
||||||
-keyring=: gpg keyring to use when verifying Release file (could be specified multiple times)
|
-keyring=: gpg keyring to use when verifying Release file (could be specified multiple times)
|
||||||
-with-sources=false: download source packages
|
-with-sources=false: download source packages in addition to binary packages
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
Usage: aptly mirror create <name> <archive url> <distribution> [<component1> ...]
|
Usage: aptly mirror create <name> <archive url> <distribution> [<component1> ...]
|
||||||
|
|
||||||
aptly mirror create - create new mirror of Debian repository
|
aptly mirror create - create new mirror
|
||||||
|
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-ignore-signatures=false: disable verification of Release file signatures
|
-ignore-signatures=false: disable verification of Release file signatures
|
||||||
-keyring=: gpg keyring to use when verifying Release file (could be specified multiple times)
|
-keyring=: gpg keyring to use when verifying Release file (could be specified multiple times)
|
||||||
-with-sources=false: download source packages
|
-with-sources=false: download source packages in addition to binary packages
|
||||||
|
|||||||
@@ -2,11 +2,11 @@ aptly mirror - manage mirrors of remote repositories
|
|||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
|
|
||||||
create create new mirror of Debian repository
|
create create new mirror
|
||||||
drop delete remote repository mirror
|
drop delete mirror
|
||||||
list list mirrors of remote repositories
|
list list mirrors
|
||||||
show show details about remote repository mirror
|
show show details about mirror
|
||||||
update update packages from remote mirror
|
update update mirror
|
||||||
|
|
||||||
Use "mirror help <command>" for more information about a command.
|
Use "mirror help <command>" for more information about a command.
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,11 @@ aptly mirror - manage mirrors of remote repositories
|
|||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
|
|
||||||
create create new mirror of Debian repository
|
create create new mirror
|
||||||
drop delete remote repository mirror
|
drop delete mirror
|
||||||
list list mirrors of remote repositories
|
list list mirrors
|
||||||
show show details about remote repository mirror
|
show show details about mirror
|
||||||
update update packages from remote mirror
|
update update mirror
|
||||||
|
|
||||||
Use "mirror help <command>" for more information about a command.
|
Use "mirror help <command>" for more information about a command.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user