forked from ungleich-public/cdist
Update old homepage residual refs and non working git protocol
This commit is contained in:
parent
73fd1ffbc1
commit
15f01149f9
8 changed files with 12 additions and 9 deletions
|
@ -9,7 +9,7 @@ pkgver=$version
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='A Usable Configuration Management System"'
|
pkgdesc='A Usable Configuration Management System"'
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url='http://www.nico.schottelius.org/software/cdist/'
|
url='https://www.cdi.st/'
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=('python>=3.2.0')
|
depends=('python>=3.2.0')
|
||||||
source=("http://pypi.python.org/packages/source/c/cdist/cdist-\${pkgver}.tar.gz")
|
source=("http://pypi.python.org/packages/source/c/cdist/cdist-\${pkgver}.tar.gz")
|
||||||
|
|
|
@ -13,7 +13,7 @@ BETA_COMMANDS = set(('install', 'inventory', ))
|
||||||
BETA_ARGS = {
|
BETA_ARGS = {
|
||||||
'config': set(('tag', 'all_tagged_hosts', 'use_archiving', )),
|
'config': set(('tag', 'all_tagged_hosts', 'use_archiving', )),
|
||||||
}
|
}
|
||||||
EPILOG = "Get cdist at http://www.nico.schottelius.org/software/cdist/"
|
EPILOG = "Get cdist at https://code.ungleich.ch/ungleich-public/cdist"
|
||||||
# Parser others can reuse
|
# Parser others can reuse
|
||||||
parser = None
|
parser = None
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ username
|
||||||
|
|
||||||
source
|
source
|
||||||
Select the source from which to clone cdist from.
|
Select the source from which to clone cdist from.
|
||||||
Defaults to "git://code.ungleich.ch/ungleich-public/cdist.git".
|
Defaults to "git@code.ungleich.ch:ungleich-public/cdist.git".
|
||||||
|
|
||||||
|
|
||||||
branch
|
branch
|
||||||
|
@ -47,7 +47,7 @@ EXAMPLES
|
||||||
__cdist /home/cdist/cdist
|
__cdist /home/cdist/cdist
|
||||||
|
|
||||||
# Use alternative source
|
# Use alternative source
|
||||||
__cdist --source "git://code.ungleich.ch/ungleich-public/cdist" /home/cdist/cdist
|
__cdist --source "git@code.ungleich.ch:ungleich-public/cdist.git" /home/cdist/cdist
|
||||||
|
|
||||||
|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
git://code.ungleich.ch/ungleich-public/cdist.git
|
git@code.ungleich.ch:ungleich-public/cdist.git
|
||||||
|
|
|
@ -44,7 +44,7 @@ EXAMPLES
|
||||||
__git /home/services/dokuwiki --source git://github.com/splitbrain/dokuwiki.git
|
__git /home/services/dokuwiki --source git://github.com/splitbrain/dokuwiki.git
|
||||||
|
|
||||||
# Checkout cdist, stay on branch 2.1
|
# Checkout cdist, stay on branch 2.1
|
||||||
__git /home/nico/cdist --source git://code.ungleich.ch/ungleich-public/cdist.git --branch 2.1
|
__git /home/nico/cdist --source git@code.ungleich.ch:ungleich-public/cdist.git --branch 2.1
|
||||||
|
|
||||||
|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
|
|
|
@ -4,6 +4,9 @@ Changelog
|
||||||
next:
|
next:
|
||||||
* Documentation: Add 'Perils of CDIST_ORDER_DEPENDENCY' sub-section (Darko Poljak)
|
* Documentation: Add 'Perils of CDIST_ORDER_DEPENDENCY' sub-section (Darko Poljak)
|
||||||
* Build: Clean and separate end user targets into Makefile and maintainer targets into build-helper (Darko Poljak)
|
* Build: Clean and separate end user targets into Makefile and maintainer targets into build-helper (Darko Poljak)
|
||||||
|
* Core: Update residual references to old cdist homepage (Darko Poljak)
|
||||||
|
* Documentation: Update residual references to old cdist homepage and git source (Darko Poljak)
|
||||||
|
* Type __cdist: Fix non working 'git://' protocol source (Darko Poljak)
|
||||||
|
|
||||||
5.0.0: 2019-05-05
|
5.0.0: 2019-05-05
|
||||||
* Type __zypper_service: Fix spelling error in manpage (Dmitry Bogatov)
|
* Type __zypper_service: Fix spelling error in manpage (Dmitry Bogatov)
|
||||||
|
|
|
@ -43,6 +43,8 @@ To install cdist, execute the following commands:
|
||||||
From version 4.2.0 cdist tags and releases are signed.
|
From version 4.2.0 cdist tags and releases are signed.
|
||||||
You can get GPG public key used for signing `here <_static/pgp-key-EFD2AE4EC36B6901.asc>`_.
|
You can get GPG public key used for signing `here <_static/pgp-key-EFD2AE4EC36B6901.asc>`_.
|
||||||
|
|
||||||
|
You can also get cdist from `github mirror <https://github.com/ungleich/cdist>`_.
|
||||||
|
|
||||||
To install cdist with distutils from cloned repository, first you have to
|
To install cdist with distutils from cloned repository, first you have to
|
||||||
create version.py:
|
create version.py:
|
||||||
|
|
||||||
|
|
|
@ -54,9 +54,7 @@ we can use cdist to configure it. You can copy and paste the following
|
||||||
code into your shell to get started and configure localhost::
|
code into your shell to get started and configure localhost::
|
||||||
|
|
||||||
# Get cdist
|
# Get cdist
|
||||||
# Mirrors can be found on
|
git clone git@code.ungleich.ch:ungleich-public/cdist.git
|
||||||
# http://www.nico.schottelius.org/software/cdist/install/#index2h4
|
|
||||||
git clone git://code.ungleich.ch/ungleich-public/cdist
|
|
||||||
|
|
||||||
# Create manifest (maps configuration to host(s)
|
# Create manifest (maps configuration to host(s)
|
||||||
cd cdist
|
cd cdist
|
||||||
|
|
Loading…
Reference in a new issue