Code Monkey home page Code Monkey logo

ansible-collection-nextcloud-admin's Introduction

Ansible-lint status YAML-lint status Tests for all supported versions Tests for latest

ansible collection for nextcloud administration

This repository hosts the nextcloud.admin Ansible Collection (formerly the role aalaesar.install_nextcloud).

The collection includes a variety of Ansible content to help automate the management of nextcloud, as well as provisioning and maintenance of instances of nextcloud.

Ansible version compatibility

This collection has been tested against following Ansible versions: >=2.11.0.

Plugins and modules within a collection may be tested with only specific Ansible versions.

Python Support

  • Collection tested on 3.10+

Supported nextcloud version

This collection supports Nextcloud versions: 24, 25, 26 (latest)

Included content

Modules

Name Description
nextcloud.admin.run_occ Run the occ command line tool with given arguments

Roles

Name Description
nextcloud.admin.backup (beta) Create a backup of a Nextcloud server - formerly aalaesar.backup_nextcloud
nextcloud.admin.install_nextcloud Install and configure an Nextcloud instance for a Debian/Ubuntu server - formerly aalaesar.install_nextcloud

Installation and Usage

Dependencies

netaddr Python Library

Content in this collection requires the network address manipulation library to manipulate network address. You can install it with:

    pip3 install netaddr

required standalone roles

By default, some roles in this collection are dependant of standalone roles from other namespaces. (this can be disabled).

Due to some limitations, ansible-galaxy does not install them automatically, them need to be installed afterward.

Once the collection is installed, run the command ansible-galaxy role install -r <this_collection_folder>/requirements.yml.

Alternatively, you can also add the content of this file in your own requirements.yml file prior to installing the collection

Installing the Collection from Ansible Galaxy

Before using the nextcloud collection, you need to install it with the Ansible Galaxy CLI:

ansible-galaxy collection install nextcloud.admin

You can also include it in a requirements.yml file and install it via ansible-galaxy collection install -r requirements.yml, using the format:

---
collections:
  - name: nextcloud.admin
    version: 2.0.0

Using modules from the Nextcloud Collection in your playbooks

It's preferable to use content in this collection using their Fully Qualified Collection Namespace (FQCN), for example nextcloud.admin.run_occ:

---
- hosts: nextcloud_host
  gather_facts: false
  become: true
  tasks:
    - name: list installed apps
      nextcloud.admin.run_occ:
        nextcloud_path: /var/www/nextcloud
        command: app:list

If upgrading older playbooks from <2.0.0, you can minimise your changes by defining collections in your play and refer to this collection's role as install_nextcloud, instead of nextcloud.admin.install_nextcloud, as in this example:

---
- hosts: localhost
  gather_facts: false
  connection: local

  collections:
    - nextcloud.admin

  tasks:
    - name: deploy nextcloud and dependencies
      include_role:
        name: install_nextcloud
        # previously:
        # name: aalaesar.install_nextcloud

For documentation on how to use:

  • individual modules: please use ansible-doc command after installing this collection.
  • included roles: as per ansible standard, ansible role are documented in their own README file.

Testing and Development

If you want to develop new content for this collection or improve what's already here, the easiest way to work on the collection is to clone it into one of the configured COLLECTIONS_PATHS, and work on it there.

Testing with molecule

The tests directory contains playbooks for running integration tests on various scenarios. There are also integration tests in the molecule directory

Publishing New Versions

Releases are automatically built and pushed to Ansible Galaxy for any new tag.

License

BSD

See LICENCE to see the full text.

ansible-collection-nextcloud-admin's People

Contributors

aalaesar avatar arenius avatar belidzs avatar bemyak avatar cloudartadmins avatar dependabot[bot] avatar do1jlr avatar dosenpfand avatar egmont1227 avatar haelle avatar hispanico avatar jaywink avatar jpiron avatar jspaans91 avatar juius-b avatar klemens-u avatar krichtof avatar marioqxx avatar martinverges avatar maxhoesel avatar mihailstoynov avatar noplanman avatar pheanex avatar robinnepomukmai avatar santiagomr avatar seikexyz avatar staticdev avatar stevenengland avatar teadur avatar wiktor2200 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.