├── .apidoc └── id-rename.js ├── .devcontainer └── devcontainer.json ├── .github └── workflows │ ├── analyze-module.yml │ ├── apidoc.yml │ ├── build-disk-images.yml │ ├── core.yml │ ├── images_cleanup.yml │ ├── swagdoc.yml │ ├── test-agent.yml │ └── tests.yml ├── .vscode └── settings.json ├── CONTRIBUTING ├── LICENSE ├── README.md ├── core ├── .gitignore ├── agent │ ├── .gitignore │ ├── README.md │ ├── agent.go │ ├── envstate.go │ ├── go.mod │ ├── go.sum │ ├── hbuiltin.go │ ├── hevent.go │ ├── htask.go │ ├── models │ │ ├── event.go │ │ ├── processor.go │ │ └── task.go │ ├── test-agent.sh │ ├── test │ │ ├── actions │ │ │ ├── fail-validation │ │ │ │ └── 10validation │ │ │ ├── obfuscate-test │ │ │ │ └── 10success │ │ │ ├── read-environment │ │ │ │ └── 30printvar │ │ │ ├── run-failure │ │ │ │ ├── 10failure │ │ │ │ └── 20success │ │ │ ├── run-longlasting │ │ │ │ ├── 10step1 │ │ │ │ ├── 20step2 │ │ │ │ └── 30step3 │ │ │ ├── run-success │ │ │ │ └── 10success │ │ │ ├── run-termhandler │ │ │ │ ├── 10step1 │ │ │ │ ├── 20step2 │ │ │ │ └── 30step3 │ │ │ ├── set-weight │ │ │ │ ├── 00noweight │ │ │ │ ├── 10step1 │ │ │ │ ├── 20step2 │ │ │ │ ├── 30step3 │ │ │ │ └── 40step4 │ │ │ ├── simulate-update-fail │ │ │ │ ├── 10controller │ │ │ │ ├── 20skipped_step │ │ │ │ ├── 30skipped_step │ │ │ │ └── 40failure │ │ │ ├── simulate-update │ │ │ │ ├── 10controller │ │ │ │ ├── 20skipped_step │ │ │ │ └── 30skipped_step │ │ │ └── validate-schema │ │ │ │ ├── 10echoinput │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ ├── events │ │ │ ├── echo-received │ │ │ │ └── 10handler │ │ │ ├── handler-errored │ │ │ │ ├── 10failing │ │ │ │ └── 20never_run │ │ │ ├── long-run │ │ │ │ └── 10handler │ │ │ └── update-received │ │ │ │ ├── 10controller │ │ │ │ ├── 20skipped_step │ │ │ │ └── 30skipped_step │ │ ├── requirements.txt │ │ └── suite │ │ │ ├── 10__exit_codes.robot │ │ │ ├── 10__obfuscate_input.robot │ │ │ ├── 20__environment.robot │ │ │ ├── 30__events.robot │ │ │ ├── 30__heartbeat.robot │ │ │ ├── 30__progress.robot │ │ │ ├── 40__validation.robot │ │ │ ├── 50__cancellation.robot │ │ │ ├── 60__shutdown.robot │ │ │ └── taskrun.resource │ ├── validation │ │ └── validation.go │ └── worklimit.go ├── api-moduled │ ├── .gitignore │ ├── README.md │ ├── api-moduled.go │ ├── example │ │ ├── handlers │ │ │ ├── create │ │ │ │ ├── post │ │ │ │ └── validate-input.json │ │ │ ├── list │ │ │ │ ├── post │ │ │ │ └── validate-output.json │ │ │ └── login │ │ │ │ └── post │ │ └── public │ │ │ └── index.html │ ├── go.mod │ ├── go.sum │ └── validation │ │ └── validation.go ├── api-server │ ├── .gitignore │ ├── README.md │ ├── api-server-logs.go │ ├── api-server.go │ ├── audit │ │ └── audit.go │ ├── configuration │ │ └── configuration.go │ ├── go.mod │ ├── go.sum │ ├── methods │ │ ├── audit.go │ │ ├── auth.go │ │ └── tasks.go │ ├── middleware │ │ └── middleware.go │ ├── models │ │ ├── audit.go │ │ ├── event.go │ │ ├── socket.go │ │ ├── task.go │ │ └── user_authorizations.go │ ├── redis │ │ └── redis.go │ ├── response │ │ └── response.go │ ├── socket │ │ ├── action.go │ │ └── socket.go │ └── utils │ │ ├── muclock.go │ │ └── utils.go ├── build-image.sh ├── imageroot │ ├── etc │ │ ├── containers │ │ │ ├── containers.conf │ │ │ └── registries.conf.d │ │ │ │ └── 800-nethserver.conf │ │ ├── nethserver │ │ │ ├── agent.env │ │ │ ├── nethserver.repo │ │ │ ├── password_warning │ │ │ │ ├── default_en.sbj │ │ │ │ ├── default_en.tmpl │ │ │ │ ├── default_it.sbj │ │ │ │ └── default_it.tmpl │ │ │ ├── pyreq3_11.txt │ │ │ ├── pythonreq.txt │ │ │ └── skel │ │ │ │ └── .config │ │ │ │ ├── state │ │ │ │ └── CACHEDIR.TAG │ │ │ │ └── systemd │ │ │ │ └── user │ │ │ │ ├── default.target.wants │ │ │ │ └── agent.service │ │ │ │ └── transfer-state.target.wants │ │ │ │ └── agent.service │ │ ├── profile.d │ │ │ ├── api-cli.sh │ │ │ ├── nethserver.sh │ │ │ ├── runagent.sh │ │ │ └── volumectl.sh │ │ └── systemd │ │ │ ├── system-generators │ │ │ └── limit-load │ │ │ ├── system │ │ │ ├── agent@.service │ │ │ ├── api-server-motd.service │ │ │ ├── api-server.service │ │ │ ├── apply-updates.service │ │ │ ├── apply-updates.timer │ │ │ ├── check-subscription.service │ │ │ ├── node_exporter.service │ │ │ ├── overlay-cleanup.service │ │ │ ├── password-warning.service │ │ │ ├── password-warning.timer │ │ │ ├── phonehome.service │ │ │ ├── phonehome.timer │ │ │ ├── promtail.service │ │ │ ├── rclone-webdav.service │ │ │ ├── redis.service │ │ │ ├── refresh-node-info.service │ │ │ ├── send-backup.service │ │ │ ├── send-backup.timer │ │ │ ├── send-heartbeat.service │ │ │ ├── send-inventory.service │ │ │ ├── send-inventory.timer │ │ │ ├── support.service │ │ │ ├── tun-manager@.service │ │ │ ├── user@.service.d │ │ │ │ └── 20-after-redis.conf │ │ │ ├── user@0.service.d │ │ │ │ └── 20-after-redis.conf │ │ │ └── wg-quick@wg0.service.d │ │ │ │ └── 10-ns8.conf │ │ │ └── user │ │ │ ├── agent.service │ │ │ ├── api-moduled.service │ │ │ └── transfer-state.target │ ├── usr │ │ └── local │ │ │ ├── agent │ │ │ ├── actions │ │ │ │ ├── clone-module │ │ │ │ │ ├── 02pullrsync │ │ │ │ │ ├── 05create_volumes │ │ │ │ │ ├── 10recvstate │ │ │ │ │ ├── 90finalize │ │ │ │ │ └── validate-input.json │ │ │ │ ├── configure-backup │ │ │ │ │ ├── 50write_systemd_units │ │ │ │ │ └── validate-input.json │ │ │ │ ├── create-module │ │ │ │ │ ├── 05create_volumes │ │ │ │ │ ├── 05pullimages │ │ │ │ │ ├── 10selfadm_role │ │ │ │ │ └── validate-input.json │ │ │ │ ├── destroy-module │ │ │ │ │ ├── 50destroy │ │ │ │ │ └── 95cleanup_images │ │ │ │ ├── get-name │ │ │ │ │ └── 50get_name │ │ │ │ ├── get-status │ │ │ │ │ ├── 20read │ │ │ │ │ ├── validate-input.json │ │ │ │ │ └── validate-output.json │ │ │ │ ├── import-module │ │ │ │ │ ├── 00validate_import │ │ │ │ │ ├── 02pullrsync │ │ │ │ │ ├── 05create_volumes │ │ │ │ │ ├── 10recvstate │ │ │ │ │ ├── 99mark_completed │ │ │ │ │ └── validate-input.json │ │ │ │ ├── list-backup-repositories │ │ │ │ │ ├── 50list_backup_repositories │ │ │ │ │ └── validate-output.json │ │ │ │ ├── list-service-providers │ │ │ │ │ ├── 10list_service_providers │ │ │ │ │ ├── validate-input.json │ │ │ │ │ └── validate-output.json │ │ │ │ ├── list-volumes │ │ │ │ │ ├── 20list_volumes │ │ │ │ │ └── validate-output.json │ │ │ │ ├── restore-module │ │ │ │ │ ├── 00progress │ │ │ │ │ ├── 05replace │ │ │ │ │ ├── 10restore │ │ │ │ │ ├── 20label │ │ │ │ │ ├── 20note │ │ │ │ │ └── validate-input.json │ │ │ │ ├── run-backup │ │ │ │ │ ├── 50run_backup │ │ │ │ │ └── validate-input.json │ │ │ │ ├── set-name │ │ │ │ │ ├── 50set_name │ │ │ │ │ └── validate-input.json │ │ │ │ ├── set-note │ │ │ │ │ ├── 50set_note │ │ │ │ │ └── validate-input.json │ │ │ │ ├── transfer-state │ │ │ │ │ ├── 01set_weight │ │ │ │ │ ├── 02pullrsync │ │ │ │ │ ├── 05waitserver │ │ │ │ │ ├── 10sendpayload │ │ │ │ │ ├── 50sendstate │ │ │ │ │ └── validate-input.json │ │ │ │ └── update-module │ │ │ │ │ ├── 05pullimages │ │ │ │ │ ├── 50run_scriptdir │ │ │ │ │ ├── 95cleanup_images │ │ │ │ │ ├── 96cleanup_core_images │ │ │ │ │ └── validate-input.json │ │ │ ├── bin │ │ │ │ ├── extract-image │ │ │ │ ├── extract-ui │ │ │ │ ├── get-certificate │ │ │ │ ├── module-backup │ │ │ │ ├── ns8-sendmail │ │ │ │ ├── podman-pull-missing │ │ │ │ ├── rclone-wrapper │ │ │ │ ├── redis-dump │ │ │ │ ├── redis-exec │ │ │ │ ├── redis-get │ │ │ │ ├── redis-hgetall │ │ │ │ ├── redis-restore │ │ │ │ └── restic-wrapper │ │ │ ├── pyenv │ │ │ │ └── .gitignore │ │ │ └── pypkg │ │ │ │ ├── agent │ │ │ │ ├── __init__.py │ │ │ │ ├── ldapclient │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ad.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── rfc2307.py │ │ │ │ ├── ldapproxy.py │ │ │ │ ├── tasks │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── apiclient.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── redisclient.py │ │ │ │ │ └── run.py │ │ │ │ └── volumes.py │ │ │ │ ├── cluster │ │ │ │ ├── __init__.py │ │ │ │ ├── alerts.py │ │ │ │ ├── backup.py │ │ │ │ ├── grants.py │ │ │ │ ├── inventory.py │ │ │ │ ├── modules.py │ │ │ │ ├── userdomains.py │ │ │ │ └── vpn.py │ │ │ │ └── node │ │ │ │ └── ports_manager.py │ │ │ ├── bin │ │ │ ├── acl-load │ │ │ ├── api-cli │ │ │ ├── api-server-motd │ │ │ ├── logcli │ │ │ ├── redis-wait-ready │ │ │ ├── runagent │ │ │ └── volumectl │ │ │ └── sbin │ │ │ ├── add-module │ │ │ ├── add-user │ │ │ ├── apply-vpn-routes │ │ │ ├── create-cluster │ │ │ ├── disk-performance │ │ │ ├── grant-actions │ │ │ ├── join-cluster │ │ │ ├── overlay-cleanup │ │ │ ├── redis-cli │ │ │ ├── remove-module │ │ │ ├── remove-user │ │ │ ├── revoke-actions │ │ │ ├── switch-leader │ │ │ └── tun-manager │ └── var │ │ └── lib │ │ └── nethserver │ │ ├── cluster │ │ ├── actions │ │ │ ├── add-backup-repository │ │ │ │ ├── 10validate │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── add-backup │ │ │ │ ├── 10validate │ │ │ │ ├── 50add_backup │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── add-external-domain │ │ │ │ ├── 05validate_domain │ │ │ │ ├── 10validate_ldap_provider │ │ │ │ ├── 50add_ldap_domain │ │ │ │ └── validate-input.json │ │ │ ├── add-external-provider │ │ │ │ ├── 05validate_provider │ │ │ │ ├── 50add_provider │ │ │ │ └── validate-input.json │ │ │ ├── add-favorite │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── add-internal-provider │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── add-module │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── add-node │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── add-repository │ │ │ │ ├── 10validate │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── add-user │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── alter-backup-repository │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── alter-backup │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── alter-external-domain │ │ │ │ ├── 10validate_ldap_provider │ │ │ │ ├── 50alter_ldap_domain │ │ │ │ └── validate-input.json │ │ │ ├── alter-repository │ │ │ │ ├── 10validate │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── alter-user │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── bind-user-domains │ │ │ │ ├── 50bind_user_domains │ │ │ │ └── validate-input.json │ │ │ ├── change-user-password │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── clean-repositories-cache │ │ │ │ └── 10clean │ │ │ ├── clone-module │ │ │ │ ├── 50clone_module │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── create-cluster │ │ │ │ ├── 00validate_cluster │ │ │ │ ├── 10validate_network │ │ │ │ ├── 50update │ │ │ │ ├── 60wgboot │ │ │ │ ├── 70start_node_exporter │ │ │ │ ├── 70start_promtail │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── determine-restore-eligibility │ │ │ │ ├── 50determine_restore_eligibility │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── download-cluster-backup │ │ │ │ ├── 50backup │ │ │ │ ├── 60link │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── get-cluster-status │ │ │ │ ├── 50read │ │ │ │ └── validate-output.json │ │ │ ├── get-defaults │ │ │ │ ├── 50read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── get-domain-group │ │ │ │ ├── 50get_group │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── get-domain-user │ │ │ │ ├── 50get_user │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── get-facts │ │ │ │ └── 50get │ │ │ ├── get-metrics-id │ │ │ │ ├── 10base │ │ │ │ └── validate-output.json │ │ │ ├── get-name │ │ │ │ └── 50get_name │ │ │ ├── get-password-warning │ │ │ │ ├── 20_read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── get-smarthost │ │ │ │ ├── 10base │ │ │ │ └── validate-output.json │ │ │ ├── get-subscription │ │ │ │ ├── 10get_subscription │ │ │ │ └── validate-output.json │ │ │ ├── get-user-info │ │ │ │ ├── 50get │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── grant-actions │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── import-module │ │ │ │ ├── 50import │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── join-cluster │ │ │ │ ├── 00validate_cluster │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── join-node │ │ │ │ ├── 20wgboot │ │ │ │ ├── 30start_replication │ │ │ │ ├── 40subscription │ │ │ │ ├── 70start_node_exporter │ │ │ │ ├── 70start_promtail │ │ │ │ └── validate-input.json │ │ │ ├── list-alerts │ │ │ │ ├── 50list_alerts │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-backup-repositories │ │ │ │ ├── 50list │ │ │ │ └── validate-output.json │ │ │ ├── list-backups │ │ │ │ ├── 50list │ │ │ │ └── validate-output.json │ │ │ ├── list-cluster-backup-endpoints │ │ │ │ ├── 10list_cluster_backup_endpoints │ │ │ │ └── validate-output.json │ │ │ ├── list-core-modules │ │ │ │ ├── 50read │ │ │ │ └── validate-output.json │ │ │ ├── list-domain-groups │ │ │ │ ├── 50list_groups │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-domain-users │ │ │ │ ├── 50list_users │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-favorites │ │ │ │ ├── 50read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-installed-modules │ │ │ │ ├── 50list │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-loki-instances │ │ │ │ ├── 10get │ │ │ │ └── validate-output.json │ │ │ ├── list-modules │ │ │ │ ├── 50read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-nodes │ │ │ │ ├── 10list_nodes │ │ │ │ └── validate-output.json │ │ │ ├── list-repositories │ │ │ │ ├── 50read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-shortcuts │ │ │ │ ├── 50read │ │ │ │ └── validate-output.json │ │ │ ├── list-updates │ │ │ │ ├── 50read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── list-user-domains │ │ │ │ ├── 50read │ │ │ │ └── validate-output.json │ │ │ ├── list-users │ │ │ │ ├── 50list │ │ │ │ └── validate-output.json │ │ │ ├── promote-node │ │ │ │ ├── 10promote_node │ │ │ │ └── validate-input.json │ │ │ ├── read-backup-repositories │ │ │ │ ├── 50read │ │ │ │ └── validate-output.json │ │ │ ├── read-backup-snapshots │ │ │ │ ├── 50read │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── remove-backup-repository │ │ │ │ ├── 50remove_backup_repository │ │ │ │ └── validate-input.json │ │ │ ├── remove-backup │ │ │ │ ├── 50remove_backup │ │ │ │ └── validate-input.json │ │ │ ├── remove-external-domain │ │ │ │ ├── 50remove_domain │ │ │ │ └── validate-input.json │ │ │ ├── remove-external-provider │ │ │ │ ├── 50remove_provider │ │ │ │ └── validate-input.json │ │ │ ├── remove-favorite │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── remove-internal-domain │ │ │ │ ├── 50remove_domain │ │ │ │ └── validate-input.json │ │ │ ├── remove-internal-provider │ │ │ │ ├── 50remove_provider │ │ │ │ └── validate-input.json │ │ │ ├── remove-module │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── remove-node │ │ │ │ ├── 00validate_inuse │ │ │ │ ├── 50remove_node │ │ │ │ └── validate-input.json │ │ │ ├── remove-repository │ │ │ │ ├── 10validate │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── remove-user │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── restore-cluster │ │ │ │ ├── 20create │ │ │ │ ├── 30load │ │ │ │ └── 40subscription │ │ │ ├── restore-module │ │ │ │ ├── 50restore_module │ │ │ │ └── validate-input.json │ │ │ ├── restore-modules │ │ │ │ ├── 50restore_modules │ │ │ │ └── validate-input.json │ │ │ ├── retrieve-cluster-backup │ │ │ │ ├── 10validate │ │ │ │ ├── 20save │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── revoke-actions │ │ │ │ ├── 50update │ │ │ │ ├── validate-input.json │ │ │ │ └── validate-output.json │ │ │ ├── run-backup │ │ │ │ ├── 50run_backup │ │ │ │ ├── 80upload_cluster_backup │ │ │ │ └── validate-input.json │ │ │ ├── set-external-provider-name │ │ │ │ ├── 50set_name │ │ │ │ └── validate-input.json │ │ │ ├── set-fqdn │ │ │ │ ├── 20set_node_fqdn │ │ │ │ └── validate-input.json │ │ │ ├── set-name │ │ │ │ ├── 50set_name │ │ │ │ └── validate-input.json │ │ │ ├── set-password-warning │ │ │ │ ├── 50_domain_notification │ │ │ │ └── validate-input.json │ │ │ ├── set-smarthost │ │ │ │ ├── 01validate_settings │ │ │ │ ├── 10base │ │ │ │ └── validate-input.json │ │ │ ├── set-subscription │ │ │ │ ├── 10set_subscription │ │ │ │ └── validate-input.json │ │ │ ├── update-core │ │ │ │ ├── 00validate_ping │ │ │ │ ├── 50update_core │ │ │ │ ├── 70update_modules │ │ │ │ ├── 99reload_cluster_agent │ │ │ │ └── validate-input.json │ │ │ ├── update-module │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ ├── update-modules │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ │ └── update-routes │ │ │ │ ├── 50update │ │ │ │ └── validate-input.json │ │ ├── bin │ │ │ ├── apply-updates │ │ │ ├── cluster-backup │ │ │ ├── notify-password-warning │ │ │ ├── print-inventory-ns │ │ │ ├── print-phonehome │ │ │ ├── run-scriptdir │ │ │ ├── send-cluster-backup │ │ │ ├── send-heartbeat │ │ │ ├── send-inventory │ │ │ ├── send-phonehome │ │ │ └── support-clusteradminctl │ │ ├── events │ │ │ └── backup-status-changed │ │ │ │ └── 10node_monitor │ │ ├── repodata-schema.json │ │ ├── ui │ │ │ └── apps │ │ │ │ └── README.txt │ │ ├── update-core-post-modules.d │ │ │ ├── 70domain_notification │ │ │ ├── 70metrics │ │ │ └── 90disable_testing │ │ ├── update-core-pre-modules.d │ │ │ └── 50update_grants │ │ └── validator-definitions.json │ │ └── node │ │ ├── actions │ │ ├── add-custom-zone │ │ │ ├── 50add │ │ │ └── validate-input.json │ │ ├── add-module │ │ │ ├── 50update │ │ │ ├── validate-input.json │ │ │ └── validate-output.json │ │ ├── add-public-service │ │ │ ├── 50add │ │ │ └── validate-input.json │ │ ├── add-rich-rules │ │ │ ├── 50add │ │ │ └── validate-input.json │ │ ├── add-tun │ │ │ ├── 50add │ │ │ └── validate-input.json │ │ ├── allocate-ports │ │ │ ├── 50allocate │ │ │ ├── validate-input.json │ │ │ └── validate-output.json │ │ ├── deallocate-ports │ │ │ ├── 50deallocate │ │ │ ├── validate-input.json │ │ │ └── validate-output.json │ │ ├── get-facts │ │ │ └── 50get │ │ ├── get-firewall-status │ │ │ ├── 20read │ │ │ └── validate-output.json │ │ ├── get-fqdn │ │ │ ├── 20get_fqdn │ │ │ └── validate-output.json │ │ ├── get-info │ │ │ ├── 20read │ │ │ └── validate-output.json │ │ ├── get-name │ │ │ └── 50get_name │ │ ├── get-node-status │ │ │ ├── 20read │ │ │ └── validate-output.json │ │ ├── get-support-session │ │ │ ├── 20get_support_session │ │ │ └── validate-output.json │ │ ├── list-mountpoints │ │ │ ├── 50list_mountpoints │ │ │ └── validate-output.json │ │ ├── remove-custom-zone │ │ │ ├── 50remove │ │ │ └── validate-input.json │ │ ├── remove-module │ │ │ ├── 50update │ │ │ ├── 60ports │ │ │ ├── validate-input.json │ │ │ └── validate-output.json │ │ ├── remove-public-service │ │ │ ├── 50remove │ │ │ └── validate-input.json │ │ ├── remove-rich-rules │ │ │ ├── 50remove │ │ │ └── validate-input.json │ │ ├── remove-tun │ │ │ ├── 50remove │ │ │ └── validate-input.json │ │ ├── restart-module │ │ │ ├── 50update │ │ │ └── validate-input.json │ │ ├── set-fqdn │ │ │ ├── 00validate_fqdn │ │ │ ├── 20set_fqdn │ │ │ ├── 25adjust_vpn_endpoint │ │ │ ├── 30send_event │ │ │ └── validate-input.json │ │ ├── set-name │ │ │ ├── 50set_name │ │ │ └── validate-input.json │ │ ├── start-support-session │ │ │ ├── 50start_support_session │ │ │ ├── 51publish_event │ │ │ └── validate-output.json │ │ ├── stop-support-session │ │ │ ├── 50stop_support_session │ │ │ └── 51publish_event │ │ ├── update-core │ │ │ ├── 50update │ │ │ ├── 60condrestart_redis │ │ │ ├── 60run_scriptdir │ │ │ ├── 95cleanup_images │ │ │ └── validate-input.json │ │ ├── update-os │ │ │ └── 50update_os │ │ └── validate-leader-fqdn │ │ │ ├── 00validate_leader_fqdn │ │ │ └── validate-input.json │ │ ├── bin │ │ ├── check-subscription │ │ ├── configure-home-basedir │ │ ├── generate-promtail-config │ │ ├── generate-support-env │ │ ├── install-coreimage │ │ ├── refresh-node-info │ │ └── support-sshkeyctl │ │ ├── etc │ │ └── support │ │ │ ├── nft.conf │ │ │ ├── openvpn.pem │ │ │ └── ssh-rsa.pub │ │ ├── events │ │ ├── acl-changed │ │ │ └── 50acl │ │ ├── default-instance-changed │ │ │ └── 10loki │ │ ├── leader-changed │ │ │ └── 10switch_leader │ │ ├── subscription-changed │ │ │ └── 10check_subscription │ │ └── vpn-changed │ │ │ └── 10vpn_routes │ │ ├── install-core.sh │ │ ├── install-finalize.sh │ │ ├── migrate-home-disk.sh │ │ ├── uninstall.sh │ │ ├── update-core.d │ │ ├── 05set_agentenv_path │ │ ├── 10reload_agents │ │ ├── 10upgrade_ports │ │ ├── 20restart_apiserver │ │ ├── 20restart_webdav │ │ ├── 30restart_redis │ │ ├── 30restart_subscription │ │ ├── 50python_updates │ │ ├── 50start_node_exporter │ │ ├── 50start_promtail │ │ ├── 50update_grants │ │ ├── 80node_monitor │ │ ├── 95cleanup_images │ │ └── 96cleanup_restic_images │ │ └── validator-definitions.json ├── install.sh ├── restic │ └── usr │ │ └── local │ │ └── bin │ │ └── rclone-wrapper ├── rsync │ ├── README.md │ └── entrypoint.sh ├── support │ ├── README.md │ ├── entrypoint.sh │ └── usr │ │ └── local │ │ └── templates │ │ └── openvpn.conf ├── test-module.sh ├── tests │ ├── .gitignore │ ├── 10__cluster_sanity │ │ ├── 00__install.robot │ │ ├── 10__redis.robot │ │ ├── 20__api_server.robot │ │ ├── 21__default_name.robot │ │ ├── 30__cluster_users.robot │ │ ├── 30__create_cluster.robot │ │ ├── 31__phonehome.robot │ │ ├── 40__cluster_admin.robot │ │ ├── 40__cluster_backup.robot │ │ ├── 50__vpn.robot │ │ ├── 60__clone_module.robot │ │ ├── 70__logs.robot │ │ ├── 80__traefik_check_certificate_apis.robot │ │ ├── 80__userdomain_openldap.robot │ │ ├── 80__userdomain_samba.robot │ │ ├── 99__uninstall.robot │ │ ├── __init__.robot │ │ ├── _dummy │ │ │ ├── README.md │ │ │ ├── build-images.sh │ │ │ ├── imageroot │ │ │ │ └── actions │ │ │ │ │ ├── create-module │ │ │ │ │ └── 20start_service │ │ │ │ │ └── get-configuration │ │ │ │ │ └── 10getconf │ │ │ └── ui │ │ │ │ └── index.html │ │ ├── api.resource │ │ └── userdomain.resource │ ├── 20__cluster_ui │ │ ├── 00__install.robot │ │ ├── 10__create_cluster.robot │ │ ├── 20__login.robot │ │ ├── 30__openldap_domain.robot │ │ ├── 35__samba_domain.robot │ │ ├── 40__software_center.robot │ │ ├── 50__system_logs.robot │ │ ├── 99__uninstall.robot │ │ └── __init__.robot │ ├── keywords.resource │ └── pythonreq.txt └── ui │ ├── .browserslistrc │ ├── .env │ ├── .eslintrc.js │ ├── .gitignore │ ├── .storybook │ ├── main.js │ └── preview.js │ ├── .yarn │ └── releases │ │ └── yarn-3.3.1.cjs │ ├── .yarnrc.yml │ ├── Containerfile │ ├── README.md │ ├── babel.config.js │ ├── container-entrypoint.sh │ ├── package.json │ ├── public │ ├── config │ │ ├── config.development.js.sample │ │ └── config.production.js │ ├── favicon.ico │ ├── i18n │ │ ├── ar │ │ │ └── translation.json │ │ ├── de │ │ │ └── translation.json │ │ ├── en │ │ │ └── translation.json │ │ ├── es │ │ │ └── translation.json │ │ ├── eu │ │ │ └── translation.json │ │ ├── fr │ │ │ └── translation.json │ │ ├── it │ │ │ └── translation.json │ │ ├── nl │ │ │ └── translation.json │ │ ├── pt │ │ │ └── translation.json │ │ └── pt_BR │ │ │ └── translation.json │ ├── index.html │ └── shortcuts.json │ ├── src │ ├── App.vue │ ├── assets │ │ ├── azure.png │ │ ├── backblaze.png │ │ ├── logo.png │ │ ├── module_default_logo.png │ │ ├── s3-generic.png │ │ ├── s3.png │ │ └── samba.png │ ├── components │ │ ├── applications-center │ │ │ └── AddNoteModal.vue │ │ ├── backup │ │ │ ├── AddRepositoryModal.vue │ │ │ ├── BackupDetailsModal.vue │ │ │ ├── BackupInstanceSelector.vue │ │ │ ├── BackupPasswordModal.vue │ │ │ ├── CreateOrEditBackupModal.vue │ │ │ ├── EditRepositoryModal.vue │ │ │ ├── InstanceToRestoreInfo.vue │ │ │ ├── RepoDetailsModal.vue │ │ │ ├── RestoreMultipleInstancesSelector.vue │ │ │ ├── RestoreSingleInstanceModal.vue │ │ │ ├── RestoreSingleInstanceSelector.vue │ │ │ └── RestoreSingleInstanceSnapshotSelector.vue │ │ ├── domains │ │ │ ├── AddExternalProviderModal.vue │ │ │ ├── AddInternalProviderModal.vue │ │ │ ├── ChangeUserPasswordModal.vue │ │ │ ├── CreateDomainModal.vue │ │ │ ├── CreateOrEditGroupModal.vue │ │ │ ├── CreateOrEditUserModal.vue │ │ │ ├── DeleteSambaProviderModal.vue │ │ │ ├── DomainGroups.vue │ │ │ ├── DomainUsers.vue │ │ │ ├── DomainUsersAndGroups.vue │ │ │ ├── EditExternalDomainModal.vue │ │ │ ├── EditPasswordPolicy.vue │ │ │ ├── EditPasswordWarningModal.vue │ │ │ └── ImportUsersModal.vue │ │ ├── error │ │ │ ├── TaskErrorInfo.vue │ │ │ ├── TaskErrorInfoHierarchy.vue │ │ │ ├── TaskErrorModal.vue │ │ │ └── TaskTreeHierarchy.vue │ │ ├── initialize-cluster │ │ │ ├── SetFqdn.vue │ │ │ ├── SkipRestoreAppsModal.vue │ │ │ └── WelcomeLogo.vue │ │ ├── nodes │ │ │ ├── NewLeaderModal.vue │ │ │ ├── NodeCard.vue │ │ │ ├── NodeSelector.vue │ │ │ ├── PromoteNodeModal.vue │ │ │ ├── RemoveNodeModal.vue │ │ │ └── SetFqdnModal.vue │ │ ├── settings │ │ │ ├── 2FaQrCodeModal.vue │ │ │ ├── ChangeAdminPasswordModal.vue │ │ │ ├── CloudLogManagerConfigureModal.vue │ │ │ ├── ConfirmRevoke2FaModal.vue │ │ │ ├── CreateAdminModal.vue │ │ │ ├── CreateOrEditHttpRouteModal.vue │ │ │ ├── DeleteObsoleteCertificatesModal.vue │ │ │ ├── EditAcmeServerModal.vue │ │ │ ├── EditAdminDisplayNameModal.vue │ │ │ ├── Enable2FaModal.vue │ │ │ ├── HttpRouteDetailModal.vue │ │ │ ├── LokiCard.vue │ │ │ ├── RequestTlsCertificateModal.vue │ │ │ ├── SyslogConfigureModal.vue │ │ │ └── UploadTlsCertificateModal.vue │ │ ├── shell │ │ │ ├── AppDrawer.vue │ │ │ ├── GlobalSearch.vue │ │ │ ├── HeaderGlobalMenu.vue │ │ │ ├── MobileSideMenu.vue │ │ │ ├── NotificationDrawer.vue │ │ │ ├── ShellHeader.vue │ │ │ ├── SideMenu.vue │ │ │ └── SideMenuContent.vue │ │ ├── software-center │ │ │ ├── AppInfoModal.vue │ │ │ ├── AppList.vue │ │ │ ├── CertificationLevelBadge.vue │ │ │ ├── CloneOrMoveAppModal.vue │ │ │ ├── ImageGallery.vue │ │ │ ├── InstallAppModal.vue │ │ │ ├── RestartModuleModal.vue │ │ │ ├── SetInstanceLabelModal.vue │ │ │ └── UpdateAppModal.vue │ │ └── system-logs │ │ │ ├── LogOutput.vue │ │ │ └── LogSearch.vue │ ├── i18n │ │ └── index.js │ ├── main.js │ ├── mixins │ │ ├── 2fa.js │ │ ├── audit.js │ │ ├── login.js │ │ ├── node.js │ │ ├── notification.js │ │ └── websocket.js │ ├── router │ │ └── index.js │ ├── store │ │ └── index.js │ ├── stories │ │ ├── Introduction.stories.mdx │ │ ├── NsBackupCard.stories.js │ │ ├── NsButton.stories.js │ │ ├── NsByteSlider.stories.js │ │ ├── NsCheckbox.stories.js │ │ ├── NsCircleTimer.stories.js │ │ ├── NsCodeSnippet.stories.js │ │ ├── NsComboBox.stories.js │ │ ├── NsComboSearchBox.stories.js │ │ ├── NsDangerDeleteModal.stories.js │ │ ├── NsDataTable.stories.js │ │ ├── NsDropdownAction.stories.js │ │ ├── NsEmptyState.stories.js │ │ ├── NsIconMenu.stories.js │ │ ├── NsInfoCard.stories.js │ │ ├── NsInlineNotification.stories.js │ │ ├── NsLottieAnimation.stories.js │ │ ├── NsMenuItem.stories.js │ │ ├── NsMeterChart.stories.js │ │ ├── NsModal.stories.js │ │ ├── NsMultiSelect.stories.js │ │ ├── NsPasswordInput.stories.js │ │ ├── NsProgressBar.stories.js │ │ ├── NsSlider.stories.js │ │ ├── NsStatusCard.stories.js │ │ ├── NsSystemLogsCard.stories.js │ │ ├── NsSystemdServiceCard.stories.js │ │ ├── NsTextInput.stories.js │ │ ├── NsTile.stories.js │ │ ├── NsTimePicker.stories.js │ │ ├── NsToastNotification.stories.js │ │ ├── NsToggle.stories.js │ │ ├── NsWizard.stories.js │ │ └── assets │ │ │ ├── code-brackets.svg │ │ │ ├── colors.svg │ │ │ ├── comments.svg │ │ │ ├── direction.svg │ │ │ ├── flow.svg │ │ │ ├── ghost.json │ │ │ ├── plugin.svg │ │ │ ├── repo.svg │ │ │ ├── rocket.json │ │ │ └── stackalt.svg │ ├── styles │ │ ├── _branding.scss │ │ ├── _carbon-fixes.scss │ │ ├── _carbon-utils.scss │ │ ├── _carbon.scss │ │ ├── _core.scss │ │ ├── _responsive.scss │ │ └── _utils.scss │ └── views │ │ ├── About.vue │ │ ├── Applications.vue │ │ ├── ApplicationsCenter.vue │ │ ├── AuditTrail.vue │ │ ├── Backup.vue │ │ ├── ClusterStatus.vue │ │ ├── DomainConfiguration.vue │ │ ├── Domains.vue │ │ ├── InitializeCluster.vue │ │ ├── Login.vue │ │ ├── NodeDetail.vue │ │ ├── NodeFirewall.vue │ │ ├── Nodes.vue │ │ ├── SoftwareCenter.vue │ │ ├── SoftwareCenterAppInstances.vue │ │ ├── SoftwareCenterCoreApps.vue │ │ ├── SystemLogs.vue │ │ └── settings │ │ ├── ClusterAdmins.vue │ │ ├── Settings.vue │ │ ├── SettingsAccount.vue │ │ ├── SettingsAcmeServers.vue │ │ ├── SettingsCluster.vue │ │ ├── SettingsFirewall.vue │ │ ├── SettingsHttpRoutes.vue │ │ ├── SettingsMetrics.vue │ │ ├── SettingsSmartHost.vue │ │ ├── SettingsSoftwareRepositories.vue │ │ ├── SettingsSubscription.vue │ │ ├── SettingsSystemLogs.vue │ │ └── SettingsTlsCertificates.vue │ ├── vue.config.js │ └── yarn.lock ├── docs ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── api.md ├── build_system.md ├── core │ ├── agents.md │ ├── api_server.md │ ├── backup_restore.md │ ├── clone_module.md │ ├── database.md │ ├── events.md │ ├── filesystem.md │ ├── firewall.md │ ├── index.md │ ├── logs.md │ ├── metrics.md │ ├── phone_home.md │ ├── port_allocation.md │ ├── proxy_certificates.md │ ├── smarthost.md │ ├── software_repositories.md │ ├── subscription.md │ ├── testing.md │ ├── tun.md │ ├── updates.md │ ├── user_domains.md │ ├── validation.md │ └── vpn.md ├── design.md ├── development_process.md ├── favicon.ico ├── index.md ├── license.md ├── modules │ ├── agent.md │ ├── certificates.md │ ├── certification.md │ ├── code_snippets.md │ ├── database.md │ ├── images.md │ ├── index.md │ ├── metadata.md │ ├── network.md │ ├── new_module.md │ ├── port_allocation.md │ ├── rootless_rootfull.md │ ├── service_providers.md │ ├── systemd_units.md │ ├── updates.md │ └── volumes.md ├── quickstart.md └── ui │ ├── core.md │ ├── index.md │ ├── library.md │ ├── modules.md │ └── translation.md └── renovate.json /.apidoc/id-rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.apidoc/id-rename.js -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/analyze-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/analyze-module.yml -------------------------------------------------------------------------------- /.github/workflows/apidoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/apidoc.yml -------------------------------------------------------------------------------- /.github/workflows/build-disk-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/build-disk-images.yml -------------------------------------------------------------------------------- /.github/workflows/core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/core.yml -------------------------------------------------------------------------------- /.github/workflows/images_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/images_cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/swagdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/swagdoc.yml -------------------------------------------------------------------------------- /.github/workflows/test-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/test-agent.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/README.md -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | .golang-cache 2 | -------------------------------------------------------------------------------- /core/agent/.gitignore: -------------------------------------------------------------------------------- 1 | agent 2 | tstate 3 | 4 | -------------------------------------------------------------------------------- /core/agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/README.md -------------------------------------------------------------------------------- /core/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/agent.go -------------------------------------------------------------------------------- /core/agent/envstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/envstate.go -------------------------------------------------------------------------------- /core/agent/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/go.mod -------------------------------------------------------------------------------- /core/agent/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/go.sum -------------------------------------------------------------------------------- /core/agent/hbuiltin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/hbuiltin.go -------------------------------------------------------------------------------- /core/agent/hevent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/hevent.go -------------------------------------------------------------------------------- /core/agent/htask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/htask.go -------------------------------------------------------------------------------- /core/agent/models/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/models/event.go -------------------------------------------------------------------------------- /core/agent/models/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/models/processor.go -------------------------------------------------------------------------------- /core/agent/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/models/task.go -------------------------------------------------------------------------------- /core/agent/test-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test-agent.sh -------------------------------------------------------------------------------- /core/agent/test/actions/fail-validation/10validation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/fail-validation/10validation -------------------------------------------------------------------------------- /core/agent/test/actions/obfuscate-test/10success: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/read-environment/30printvar: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo -n "${VAR1}${AGENT_TASK_USER:?}" 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-failure/10failure: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 1 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-failure/20success: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT" 4 | exit 0 5 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-longlasting/10step1: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-longlasting/20step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/run-longlasting/20step2 -------------------------------------------------------------------------------- /core/agent/test/actions/run-longlasting/30step3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-success/10success: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-termhandler/10step1: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "WARNING_MESSAGE" 1>&2 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /core/agent/test/actions/run-termhandler/20step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/run-termhandler/20step2 -------------------------------------------------------------------------------- /core/agent/test/actions/run-termhandler/30step3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "UNEXPECTED-MESSAGE" 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/set-weight/00noweight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/set-weight/00noweight -------------------------------------------------------------------------------- /core/agent/test/actions/set-weight/10step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/set-weight/10step1 -------------------------------------------------------------------------------- /core/agent/test/actions/set-weight/20step2: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/set-weight/30step3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/set-weight/40step4: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo DONE 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update-fail/10controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/simulate-update-fail/10controller -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update-fail/20skipped_step: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT1" 4 | exit 0 -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update-fail/30skipped_step: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT2" 4 | exit 0 -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update-fail/40failure: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 1 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update/10controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/simulate-update/10controller -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update/20skipped_step: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT1" 4 | exit 0 -------------------------------------------------------------------------------- /core/agent/test/actions/simulate-update/30skipped_step: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT2" 4 | exit 0 -------------------------------------------------------------------------------- /core/agent/test/actions/validate-schema/10echoinput: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat - 4 | -------------------------------------------------------------------------------- /core/agent/test/actions/validate-schema/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/validate-schema/validate-input.json -------------------------------------------------------------------------------- /core/agent/test/actions/validate-schema/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/actions/validate-schema/validate-output.json -------------------------------------------------------------------------------- /core/agent/test/events/echo-received/10handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/events/echo-received/10handler -------------------------------------------------------------------------------- /core/agent/test/events/handler-errored/10failing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/events/handler-errored/10failing -------------------------------------------------------------------------------- /core/agent/test/events/handler-errored/20never_run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT" 4 | exit 0 5 | -------------------------------------------------------------------------------- /core/agent/test/events/long-run/10handler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sleep 1 4 | -------------------------------------------------------------------------------- /core/agent/test/events/update-received/10controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/events/update-received/10controller -------------------------------------------------------------------------------- /core/agent/test/events/update-received/20skipped_step: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT1" 4 | exit 0 -------------------------------------------------------------------------------- /core/agent/test/events/update-received/30skipped_step: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "NEVER REACH THIS POINT2" 4 | exit 0 -------------------------------------------------------------------------------- /core/agent/test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/requirements.txt -------------------------------------------------------------------------------- /core/agent/test/suite/10__exit_codes.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/10__exit_codes.robot -------------------------------------------------------------------------------- /core/agent/test/suite/10__obfuscate_input.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/10__obfuscate_input.robot -------------------------------------------------------------------------------- /core/agent/test/suite/20__environment.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/20__environment.robot -------------------------------------------------------------------------------- /core/agent/test/suite/30__events.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/30__events.robot -------------------------------------------------------------------------------- /core/agent/test/suite/30__heartbeat.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/30__heartbeat.robot -------------------------------------------------------------------------------- /core/agent/test/suite/30__progress.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/30__progress.robot -------------------------------------------------------------------------------- /core/agent/test/suite/40__validation.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/40__validation.robot -------------------------------------------------------------------------------- /core/agent/test/suite/50__cancellation.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/50__cancellation.robot -------------------------------------------------------------------------------- /core/agent/test/suite/60__shutdown.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/60__shutdown.robot -------------------------------------------------------------------------------- /core/agent/test/suite/taskrun.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/test/suite/taskrun.resource -------------------------------------------------------------------------------- /core/agent/validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/validation/validation.go -------------------------------------------------------------------------------- /core/agent/worklimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/agent/worklimit.go -------------------------------------------------------------------------------- /core/api-moduled/.gitignore: -------------------------------------------------------------------------------- 1 | api-moduled -------------------------------------------------------------------------------- /core/api-moduled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/README.md -------------------------------------------------------------------------------- /core/api-moduled/api-moduled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/api-moduled.go -------------------------------------------------------------------------------- /core/api-moduled/example/handlers/create/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/example/handlers/create/post -------------------------------------------------------------------------------- /core/api-moduled/example/handlers/create/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/example/handlers/create/validate-input.json -------------------------------------------------------------------------------- /core/api-moduled/example/handlers/list/post: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | env 1>&2 4 | 5 | printf '{ 6 | "objects": [{"id":123456}] 7 | }\n' 8 | -------------------------------------------------------------------------------- /core/api-moduled/example/handlers/list/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/example/handlers/list/validate-output.json -------------------------------------------------------------------------------- /core/api-moduled/example/handlers/login/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/example/handlers/login/post -------------------------------------------------------------------------------- /core/api-moduled/example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/example/public/index.html -------------------------------------------------------------------------------- /core/api-moduled/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/go.mod -------------------------------------------------------------------------------- /core/api-moduled/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/go.sum -------------------------------------------------------------------------------- /core/api-moduled/validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-moduled/validation/validation.go -------------------------------------------------------------------------------- /core/api-server/.gitignore: -------------------------------------------------------------------------------- 1 | api-server -------------------------------------------------------------------------------- /core/api-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/README.md -------------------------------------------------------------------------------- /core/api-server/api-server-logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/api-server-logs.go -------------------------------------------------------------------------------- /core/api-server/api-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/api-server.go -------------------------------------------------------------------------------- /core/api-server/audit/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/audit/audit.go -------------------------------------------------------------------------------- /core/api-server/configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/configuration/configuration.go -------------------------------------------------------------------------------- /core/api-server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/go.mod -------------------------------------------------------------------------------- /core/api-server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/go.sum -------------------------------------------------------------------------------- /core/api-server/methods/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/methods/audit.go -------------------------------------------------------------------------------- /core/api-server/methods/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/methods/auth.go -------------------------------------------------------------------------------- /core/api-server/methods/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/methods/tasks.go -------------------------------------------------------------------------------- /core/api-server/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/middleware/middleware.go -------------------------------------------------------------------------------- /core/api-server/models/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/models/audit.go -------------------------------------------------------------------------------- /core/api-server/models/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/models/event.go -------------------------------------------------------------------------------- /core/api-server/models/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/models/socket.go -------------------------------------------------------------------------------- /core/api-server/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/models/task.go -------------------------------------------------------------------------------- /core/api-server/models/user_authorizations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/models/user_authorizations.go -------------------------------------------------------------------------------- /core/api-server/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/redis/redis.go -------------------------------------------------------------------------------- /core/api-server/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/response/response.go -------------------------------------------------------------------------------- /core/api-server/socket/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/socket/action.go -------------------------------------------------------------------------------- /core/api-server/socket/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/socket/socket.go -------------------------------------------------------------------------------- /core/api-server/utils/muclock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/utils/muclock.go -------------------------------------------------------------------------------- /core/api-server/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/api-server/utils/utils.go -------------------------------------------------------------------------------- /core/build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/build-image.sh -------------------------------------------------------------------------------- /core/imageroot/etc/containers/containers.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | log_driver="journald" 3 | -------------------------------------------------------------------------------- /core/imageroot/etc/containers/registries.conf.d/800-nethserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/containers/registries.conf.d/800-nethserver.conf -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/agent.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/agent.env -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/nethserver.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/nethserver.repo -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/password_warning/default_en.sbj: -------------------------------------------------------------------------------- 1 | Password expiration 2 | -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/password_warning/default_en.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/password_warning/default_en.tmpl -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/password_warning/default_it.sbj: -------------------------------------------------------------------------------- 1 | Scadenza password 2 | -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/password_warning/default_it.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/password_warning/default_it.tmpl -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/pyreq3_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/pyreq3_11.txt -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/pythonreq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/pythonreq.txt -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/skel/.config/state/CACHEDIR.TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/nethserver/skel/.config/state/CACHEDIR.TAG -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/skel/.config/systemd/user/default.target.wants/agent.service: -------------------------------------------------------------------------------- 1 | ../../../../../../etc/systemd/user/agent.service -------------------------------------------------------------------------------- /core/imageroot/etc/nethserver/skel/.config/systemd/user/transfer-state.target.wants/agent.service: -------------------------------------------------------------------------------- 1 | ../../../../../../etc/systemd/user/agent.service -------------------------------------------------------------------------------- /core/imageroot/etc/profile.d/api-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/profile.d/api-cli.sh -------------------------------------------------------------------------------- /core/imageroot/etc/profile.d/nethserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/profile.d/nethserver.sh -------------------------------------------------------------------------------- /core/imageroot/etc/profile.d/runagent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/profile.d/runagent.sh -------------------------------------------------------------------------------- /core/imageroot/etc/profile.d/volumectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/profile.d/volumectl.sh -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system-generators/limit-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system-generators/limit-load -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/agent@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/agent@.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/api-server-motd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/api-server-motd.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/api-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/api-server.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/apply-updates.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/apply-updates.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/apply-updates.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/apply-updates.timer -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/check-subscription.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/check-subscription.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/node_exporter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/node_exporter.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/overlay-cleanup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/overlay-cleanup.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/password-warning.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/password-warning.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/password-warning.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/password-warning.timer -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/phonehome.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/phonehome.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/phonehome.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/phonehome.timer -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/promtail.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/promtail.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/rclone-webdav.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/rclone-webdav.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/redis.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/redis.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/refresh-node-info.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/refresh-node-info.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/send-backup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/send-backup.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/send-backup.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/send-backup.timer -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/send-heartbeat.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/send-heartbeat.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/send-inventory.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/send-inventory.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/send-inventory.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/send-inventory.timer -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/support.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/support.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/tun-manager@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/tun-manager@.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/user@.service.d/20-after-redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/system/user@.service.d/20-after-redis.conf -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/user@0.service.d/20-after-redis.conf: -------------------------------------------------------------------------------- 1 | # 2 | # Empty file placeholder, just for uid 0 (root) 3 | # 4 | -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/system/wg-quick@wg0.service.d/10-ns8.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionPathExists=/etc/wireguard/wg0.conf 3 | -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/user/agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/user/agent.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/user/api-moduled.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/user/api-moduled.service -------------------------------------------------------------------------------- /core/imageroot/etc/systemd/user/transfer-state.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/etc/systemd/user/transfer-state.target -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/clone-module/02pullrsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/clone-module/02pullrsync -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/clone-module/05create_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/clone-module/05create_volumes -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/clone-module/10recvstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/clone-module/10recvstate -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/clone-module/90finalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/clone-module/90finalize -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/clone-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/clone-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/configure-backup/50write_systemd_units: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/configure-backup/50write_systemd_units -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/configure-backup/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/configure-backup/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/create-module/05create_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/create-module/05create_volumes -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/create-module/05pullimages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/create-module/05pullimages -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/create-module/10selfadm_role: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/create-module/10selfadm_role -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/create-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/create-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/destroy-module/50destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/destroy-module/50destroy -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/destroy-module/95cleanup_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/destroy-module/95cleanup_images -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/get-name/50get_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/get-name/50get_name -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/get-status/20read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/get-status/20read -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/get-status/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/get-status/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/get-status/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/get-status/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/import-module/00validate_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/import-module/00validate_import -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/import-module/02pullrsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/import-module/02pullrsync -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/import-module/05create_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/import-module/05create_volumes -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/import-module/10recvstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/import-module/10recvstate -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/import-module/99mark_completed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/import-module/99mark_completed -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/import-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/import-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/list-backup-repositories/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/list-backup-repositories/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/list-service-providers/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/list-service-providers/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/list-service-providers/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/list-service-providers/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/list-volumes/20list_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/list-volumes/20list_volumes -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/list-volumes/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/list-volumes/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/restore-module/00progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/restore-module/00progress -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/restore-module/05replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/restore-module/05replace -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/restore-module/10restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/restore-module/10restore -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/restore-module/20label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/restore-module/20label -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/restore-module/20note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/restore-module/20note -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/restore-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/restore-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/run-backup/50run_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/run-backup/50run_backup -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/run-backup/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/run-backup/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/set-name/50set_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/set-name/50set_name -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/set-name/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/set-name/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/set-note/50set_note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/set-note/50set_note -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/set-note/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/set-note/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/transfer-state/01set_weight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/transfer-state/01set_weight -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/transfer-state/02pullrsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/transfer-state/02pullrsync -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/transfer-state/05waitserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/transfer-state/05waitserver -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/transfer-state/10sendpayload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/transfer-state/10sendpayload -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/transfer-state/50sendstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/transfer-state/50sendstate -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/transfer-state/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/transfer-state/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/update-module/05pullimages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/update-module/05pullimages -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/update-module/50run_scriptdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/update-module/50run_scriptdir -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/update-module/95cleanup_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/update-module/95cleanup_images -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/update-module/96cleanup_core_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/update-module/96cleanup_core_images -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/actions/update-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/actions/update-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/extract-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/extract-image -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/extract-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/extract-ui -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/get-certificate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/get-certificate -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/module-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/module-backup -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/ns8-sendmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/ns8-sendmail -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/podman-pull-missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/podman-pull-missing -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/rclone-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/rclone-wrapper -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/redis-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/redis-dump -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/redis-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/redis-exec -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/redis-get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/redis-get -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/redis-hgetall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/redis-hgetall -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/redis-restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/redis-restore -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/bin/restic-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/bin/restic-wrapper -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pyenv/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/__init__.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/ldapclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/ldapclient/__init__.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/ldapclient/ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/ldapclient/ad.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/ldapclient/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/ldapclient/base.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/ldapclient/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/ldapclient/exceptions.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/ldapclient/rfc2307.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/ldapclient/rfc2307.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/ldapproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/ldapproxy.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/tasks/__init__.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/tasks/apiclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/tasks/apiclient.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/tasks/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/tasks/exceptions.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/tasks/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/tasks/handlers.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/tasks/redisclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/tasks/redisclient.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/tasks/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/tasks/run.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/agent/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/agent/volumes.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/alerts.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/backup.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/grants.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/inventory.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/modules.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/userdomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/userdomains.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/cluster/vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/cluster/vpn.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/agent/pypkg/node/ports_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/agent/pypkg/node/ports_manager.py -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/acl-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/acl-load -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/api-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/api-cli -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/api-server-motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/api-server-motd -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/logcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/logcli -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/redis-wait-ready: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/redis-wait-ready -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/runagent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/runagent -------------------------------------------------------------------------------- /core/imageroot/usr/local/bin/volumectl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/bin/volumectl -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/add-module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/add-module -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/add-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/add-user -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/apply-vpn-routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/apply-vpn-routes -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/create-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/create-cluster -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/disk-performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/disk-performance -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/grant-actions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/grant-actions -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/join-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/join-cluster -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/overlay-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/overlay-cleanup -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/redis-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/redis-cli -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/remove-module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/remove-module -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/remove-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/remove-user -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/revoke-actions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/revoke-actions -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/switch-leader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/switch-leader -------------------------------------------------------------------------------- /core/imageroot/usr/local/sbin/tun-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/usr/local/sbin/tun-manager -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-backup-repository/10validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-backup-repository/10validate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-backup-repository/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-backup-repository/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-backup/10validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-backup/10validate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-backup/50add_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-backup/50add_backup -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-backup/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-backup/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-backup/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-backup/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-favorite/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-favorite/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-favorite/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-favorite/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-favorite/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-favorite/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-internal-provider/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-internal-provider/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-module/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-module/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-module/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-module/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-node/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-node/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-node/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-node/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-node/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-node/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-repository/10validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-repository/10validate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-repository/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-repository/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-repository/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-repository/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-user/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-user/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-user/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-user/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/add-user/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/add-user/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/alter-backup/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/alter-backup/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/alter-repository/10validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/alter-repository/10validate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/alter-repository/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/alter-repository/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/alter-user/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/alter-user/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/alter-user/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/alter-user/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/change-user-password/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/change-user-password/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/clone-module/50clone_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/clone-module/50clone_module -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/create-cluster/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/create-cluster/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/create-cluster/60wgboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/create-cluster/60wgboot -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/create-cluster/70start_promtail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/create-cluster/70start_promtail -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/download-cluster-backup/60link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/download-cluster-backup/60link -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-cluster-status/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-cluster-status/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-defaults/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-defaults/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-domain-group/50get_group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-domain-group/50get_group -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-domain-user/50get_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-domain-user/50get_user -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-facts/50get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-facts/50get -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-metrics-id/10base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-metrics-id/10base -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-name/50get_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-name/50get_name -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-password-warning/20_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-password-warning/20_read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-smarthost/10base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-smarthost/10base -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/get-user-info/50get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/get-user-info/50get -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/grant-actions/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/grant-actions/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/import-module/50import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/import-module/50import -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-cluster/00validate_cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/join-cluster/00validate_cluster -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-cluster/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/join-cluster/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-node/20wgboot: -------------------------------------------------------------------------------- 1 | ../create-cluster/60wgboot -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-node/30start_replication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/join-node/30start_replication -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-node/40subscription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/join-node/40subscription -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-node/70start_node_exporter: -------------------------------------------------------------------------------- 1 | ../create-cluster/70start_node_exporter -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-node/70start_promtail: -------------------------------------------------------------------------------- 1 | ../create-cluster/70start_promtail -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/join-node/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/join-node/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-alerts/50list_alerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-alerts/50list_alerts -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-alerts/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-alerts/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-backup-repositories/50list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-backup-repositories/50list -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-backups/50list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-backups/50list -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-core-modules/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-core-modules/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-domain-users/50list_users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-domain-users/50list_users -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-favorites/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-favorites/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-installed-modules/50list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-installed-modules/50list -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-loki-instances/10get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-loki-instances/10get -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-modules/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-modules/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-nodes/10list_nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-nodes/10list_nodes -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-nodes/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-nodes/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-repositories/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-repositories/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-shortcuts/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-shortcuts/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-updates/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-updates/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-user-domains/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-user-domains/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-users/50list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-users/50list -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/list-users/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/list-users/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/promote-node/10promote_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/promote-node/10promote_node -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/read-backup-repositories/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/read-backup-repositories/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/read-backup-snapshots/50read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/read-backup-snapshots/50read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-backup/50remove_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-backup/50remove_backup -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-favorite/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-favorite/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-module/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-module/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-node/00validate_inuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-node/00validate_inuse -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-node/50remove_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-node/50remove_node -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-node/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-node/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-repository/10validate: -------------------------------------------------------------------------------- 1 | ../alter-repository/10validate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-repository/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-repository/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-user/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-user/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/remove-user/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/remove-user/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/restore-cluster/20create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/restore-cluster/20create -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/restore-cluster/30load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/restore-cluster/30load -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/restore-cluster/40subscription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/restore-cluster/40subscription -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/restore-module/50restore_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/restore-module/50restore_module -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/retrieve-cluster-backup/20save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/retrieve-cluster-backup/20save -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/revoke-actions/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/revoke-actions/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/run-backup/50run_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/run-backup/50run_backup -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/run-backup/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/run-backup/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/set-fqdn/20set_node_fqdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/set-fqdn/20set_node_fqdn -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/set-fqdn/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/set-fqdn/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/set-name/50set_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/set-name/50set_name -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/set-name/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/set-name/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/set-smarthost/10base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/set-smarthost/10base -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-core/00validate_ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-core/00validate_ping -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-core/50update_core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-core/50update_core -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-core/70update_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-core/70update_modules -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-core/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-core/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-module/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-module/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-modules/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-modules/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/actions/update-routes/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/actions/update-routes/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/apply-updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/apply-updates -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/cluster-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/cluster-backup -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/notify-password-warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/notify-password-warning -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/print-inventory-ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/print-inventory-ns -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/print-phonehome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/print-phonehome -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/run-scriptdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/run-scriptdir -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/send-cluster-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/send-cluster-backup -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/send-heartbeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/send-heartbeat -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/send-inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/send-inventory -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/send-phonehome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/send-phonehome -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/bin/support-clusteradminctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/bin/support-clusteradminctl -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/repodata-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/repodata-schema.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/ui/apps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/ui/apps/README.txt -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/update-core-post-modules.d/70metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/update-core-post-modules.d/70metrics -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/cluster/validator-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/cluster/validator-definitions.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-custom-zone/50add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-custom-zone/50add -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-module/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-module/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-module/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-module/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-public-service/50add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-public-service/50add -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-rich-rules/50add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-rich-rules/50add -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-rich-rules/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-rich-rules/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-tun/50add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-tun/50add -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/add-tun/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/add-tun/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/allocate-ports/50allocate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/allocate-ports/50allocate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/allocate-ports/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/allocate-ports/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/deallocate-ports/50deallocate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/deallocate-ports/50deallocate -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-facts/50get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-facts/50get -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-firewall-status/20read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-firewall-status/20read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-fqdn/20get_fqdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-fqdn/20get_fqdn -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-fqdn/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-fqdn/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-info/20read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-info/20read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-info/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-info/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-name/50get_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-name/50get_name -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/get-node-status/20read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/get-node-status/20read -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-custom-zone/50remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-custom-zone/50remove -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-module/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-module/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-module/60ports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-module/60ports -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-module/validate-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-module/validate-output.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-public-service/50remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-public-service/50remove -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-rich-rules/50remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-rich-rules/50remove -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-tun/50remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-tun/50remove -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/remove-tun/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/remove-tun/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/restart-module/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/restart-module/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/restart-module/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/restart-module/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-fqdn/00validate_fqdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-fqdn/00validate_fqdn -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-fqdn/20set_fqdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-fqdn/20set_fqdn -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-fqdn/25adjust_vpn_endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-fqdn/25adjust_vpn_endpoint -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-fqdn/30send_event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-fqdn/30send_event -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-fqdn/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-fqdn/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-name/50set_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-name/50set_name -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/set-name/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/set-name/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/update-core/50update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/update-core/50update -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/update-core/60condrestart_redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/update-core/60condrestart_redis -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/update-core/60run_scriptdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/update-core/60run_scriptdir -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/update-core/95cleanup_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/update-core/95cleanup_images -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/update-core/validate-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/update-core/validate-input.json -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/actions/update-os/50update_os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/actions/update-os/50update_os -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/check-subscription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/check-subscription -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/configure-home-basedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/configure-home-basedir -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/generate-promtail-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/generate-promtail-config -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/generate-support-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/generate-support-env -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/install-coreimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/install-coreimage -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/refresh-node-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/refresh-node-info -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/bin/support-sshkeyctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/bin/support-sshkeyctl -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/etc/support/nft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/etc/support/nft.conf -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/etc/support/openvpn.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/etc/support/openvpn.pem -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/etc/support/ssh-rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/etc/support/ssh-rsa.pub -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/events/acl-changed/50acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/events/acl-changed/50acl -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/events/default-instance-changed/10loki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/events/default-instance-changed/10loki -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/events/leader-changed/10switch_leader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/events/leader-changed/10switch_leader -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/events/vpn-changed/10vpn_routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/events/vpn-changed/10vpn_routes -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/install-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/install-core.sh -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/install-finalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/install-finalize.sh -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/migrate-home-disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/migrate-home-disk.sh -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/uninstall.sh -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/05set_agentenv_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/05set_agentenv_path -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/10reload_agents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/10reload_agents -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/10upgrade_ports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/10upgrade_ports -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/20restart_apiserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/20restart_apiserver -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/20restart_webdav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/20restart_webdav -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/30restart_redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/30restart_redis -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/30restart_subscription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/30restart_subscription -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/50python_updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/50python_updates -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/50start_node_exporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/50start_node_exporter -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/50start_promtail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/50start_promtail -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/50update_grants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/50update_grants -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/80node_monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/80node_monitor -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/95cleanup_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/95cleanup_images -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/update-core.d/96cleanup_restic_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/update-core.d/96cleanup_restic_images -------------------------------------------------------------------------------- /core/imageroot/var/lib/nethserver/node/validator-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/imageroot/var/lib/nethserver/node/validator-definitions.json -------------------------------------------------------------------------------- /core/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/install.sh -------------------------------------------------------------------------------- /core/restic/usr/local/bin/rclone-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/restic/usr/local/bin/rclone-wrapper -------------------------------------------------------------------------------- /core/rsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/rsync/README.md -------------------------------------------------------------------------------- /core/rsync/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/rsync/entrypoint.sh -------------------------------------------------------------------------------- /core/support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/support/README.md -------------------------------------------------------------------------------- /core/support/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/support/entrypoint.sh -------------------------------------------------------------------------------- /core/support/usr/local/templates/openvpn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/support/usr/local/templates/openvpn.conf -------------------------------------------------------------------------------- /core/test-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/test-module.sh -------------------------------------------------------------------------------- /core/tests/.gitignore: -------------------------------------------------------------------------------- 1 | outputs 2 | -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/00__install.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/00__install.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/10__redis.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/10__redis.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/20__api_server.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/20__api_server.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/21__default_name.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/21__default_name.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/30__cluster_users.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/30__cluster_users.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/30__create_cluster.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/30__create_cluster.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/31__phonehome.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/31__phonehome.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/40__cluster_admin.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/40__cluster_admin.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/40__cluster_backup.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/40__cluster_backup.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/50__vpn.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/50__vpn.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/60__clone_module.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/60__clone_module.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/70__logs.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/70__logs.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/80__traefik_check_certificate_apis.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/80__traefik_check_certificate_apis.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/80__userdomain_openldap.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/80__userdomain_openldap.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/80__userdomain_samba.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/80__userdomain_samba.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/99__uninstall.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/99__uninstall.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/__init__.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/__init__.robot -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/_dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/_dummy/README.md -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/_dummy/build-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/_dummy/build-images.sh -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/_dummy/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/_dummy/ui/index.html -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/api.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/api.resource -------------------------------------------------------------------------------- /core/tests/10__cluster_sanity/userdomain.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/10__cluster_sanity/userdomain.resource -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/00__install.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/00__install.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/10__create_cluster.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/10__create_cluster.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/20__login.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/20__login.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/30__openldap_domain.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/30__openldap_domain.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/35__samba_domain.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/35__samba_domain.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/40__software_center.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/40__software_center.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/50__system_logs.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/50__system_logs.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/99__uninstall.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/99__uninstall.robot -------------------------------------------------------------------------------- /core/tests/20__cluster_ui/__init__.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/20__cluster_ui/__init__.robot -------------------------------------------------------------------------------- /core/tests/keywords.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/keywords.resource -------------------------------------------------------------------------------- /core/tests/pythonreq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/tests/pythonreq.txt -------------------------------------------------------------------------------- /core/ui/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /core/ui/.env: -------------------------------------------------------------------------------- 1 | SASS_PATH=./node_modules 2 | -------------------------------------------------------------------------------- /core/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/.eslintrc.js -------------------------------------------------------------------------------- /core/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/.gitignore -------------------------------------------------------------------------------- /core/ui/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/.storybook/main.js -------------------------------------------------------------------------------- /core/ui/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/.storybook/preview.js -------------------------------------------------------------------------------- /core/ui/.yarn/releases/yarn-3.3.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/.yarn/releases/yarn-3.3.1.cjs -------------------------------------------------------------------------------- /core/ui/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/.yarnrc.yml -------------------------------------------------------------------------------- /core/ui/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/Containerfile -------------------------------------------------------------------------------- /core/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/README.md -------------------------------------------------------------------------------- /core/ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/babel.config.js -------------------------------------------------------------------------------- /core/ui/container-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/container-entrypoint.sh -------------------------------------------------------------------------------- /core/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/package.json -------------------------------------------------------------------------------- /core/ui/public/config/config.development.js.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/config/config.development.js.sample -------------------------------------------------------------------------------- /core/ui/public/config/config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/config/config.production.js -------------------------------------------------------------------------------- /core/ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/favicon.ico -------------------------------------------------------------------------------- /core/ui/public/i18n/ar/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/ar/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/de/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/en/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/es/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/eu/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/eu/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/fr/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/it/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/nl/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/pt/translation.json -------------------------------------------------------------------------------- /core/ui/public/i18n/pt_BR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/i18n/pt_BR/translation.json -------------------------------------------------------------------------------- /core/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/index.html -------------------------------------------------------------------------------- /core/ui/public/shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/public/shortcuts.json -------------------------------------------------------------------------------- /core/ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/App.vue -------------------------------------------------------------------------------- /core/ui/src/assets/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/azure.png -------------------------------------------------------------------------------- /core/ui/src/assets/backblaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/backblaze.png -------------------------------------------------------------------------------- /core/ui/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/logo.png -------------------------------------------------------------------------------- /core/ui/src/assets/module_default_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/module_default_logo.png -------------------------------------------------------------------------------- /core/ui/src/assets/s3-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/s3-generic.png -------------------------------------------------------------------------------- /core/ui/src/assets/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/s3.png -------------------------------------------------------------------------------- /core/ui/src/assets/samba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/assets/samba.png -------------------------------------------------------------------------------- /core/ui/src/components/applications-center/AddNoteModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/applications-center/AddNoteModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/AddRepositoryModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/AddRepositoryModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/BackupDetailsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/BackupDetailsModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/BackupInstanceSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/BackupInstanceSelector.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/BackupPasswordModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/BackupPasswordModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/CreateOrEditBackupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/CreateOrEditBackupModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/EditRepositoryModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/EditRepositoryModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/InstanceToRestoreInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/InstanceToRestoreInfo.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/RepoDetailsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/RepoDetailsModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/RestoreMultipleInstancesSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/RestoreMultipleInstancesSelector.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/RestoreSingleInstanceModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/RestoreSingleInstanceModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/RestoreSingleInstanceSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/RestoreSingleInstanceSelector.vue -------------------------------------------------------------------------------- /core/ui/src/components/backup/RestoreSingleInstanceSnapshotSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/backup/RestoreSingleInstanceSnapshotSelector.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/AddExternalProviderModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/AddExternalProviderModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/AddInternalProviderModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/AddInternalProviderModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/ChangeUserPasswordModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/ChangeUserPasswordModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/CreateDomainModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/CreateDomainModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/CreateOrEditGroupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/CreateOrEditGroupModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/CreateOrEditUserModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/CreateOrEditUserModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/DeleteSambaProviderModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/DeleteSambaProviderModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/DomainGroups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/DomainGroups.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/DomainUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/DomainUsers.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/DomainUsersAndGroups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/DomainUsersAndGroups.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/EditExternalDomainModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/EditExternalDomainModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/EditPasswordPolicy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/EditPasswordPolicy.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/EditPasswordWarningModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/EditPasswordWarningModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/domains/ImportUsersModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/domains/ImportUsersModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/error/TaskErrorInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/error/TaskErrorInfo.vue -------------------------------------------------------------------------------- /core/ui/src/components/error/TaskErrorInfoHierarchy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/error/TaskErrorInfoHierarchy.vue -------------------------------------------------------------------------------- /core/ui/src/components/error/TaskErrorModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/error/TaskErrorModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/error/TaskTreeHierarchy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/error/TaskTreeHierarchy.vue -------------------------------------------------------------------------------- /core/ui/src/components/initialize-cluster/SetFqdn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/initialize-cluster/SetFqdn.vue -------------------------------------------------------------------------------- /core/ui/src/components/initialize-cluster/SkipRestoreAppsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/initialize-cluster/SkipRestoreAppsModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/initialize-cluster/WelcomeLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/initialize-cluster/WelcomeLogo.vue -------------------------------------------------------------------------------- /core/ui/src/components/nodes/NewLeaderModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/nodes/NewLeaderModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/nodes/NodeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/nodes/NodeCard.vue -------------------------------------------------------------------------------- /core/ui/src/components/nodes/NodeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/nodes/NodeSelector.vue -------------------------------------------------------------------------------- /core/ui/src/components/nodes/PromoteNodeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/nodes/PromoteNodeModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/nodes/RemoveNodeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/nodes/RemoveNodeModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/nodes/SetFqdnModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/nodes/SetFqdnModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/2FaQrCodeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/2FaQrCodeModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/ChangeAdminPasswordModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/ChangeAdminPasswordModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/CloudLogManagerConfigureModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/CloudLogManagerConfigureModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/ConfirmRevoke2FaModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/ConfirmRevoke2FaModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/CreateAdminModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/CreateAdminModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/CreateOrEditHttpRouteModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/CreateOrEditHttpRouteModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/DeleteObsoleteCertificatesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/DeleteObsoleteCertificatesModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/EditAcmeServerModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/EditAcmeServerModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/EditAdminDisplayNameModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/EditAdminDisplayNameModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/Enable2FaModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/Enable2FaModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/HttpRouteDetailModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/HttpRouteDetailModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/LokiCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/LokiCard.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/RequestTlsCertificateModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/RequestTlsCertificateModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/SyslogConfigureModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/SyslogConfigureModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/settings/UploadTlsCertificateModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/settings/UploadTlsCertificateModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/AppDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/AppDrawer.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/GlobalSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/GlobalSearch.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/HeaderGlobalMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/HeaderGlobalMenu.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/MobileSideMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/MobileSideMenu.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/NotificationDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/NotificationDrawer.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/ShellHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/ShellHeader.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/SideMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/SideMenu.vue -------------------------------------------------------------------------------- /core/ui/src/components/shell/SideMenuContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/shell/SideMenuContent.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/AppInfoModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/AppInfoModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/AppList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/AppList.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/CertificationLevelBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/CertificationLevelBadge.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/CloneOrMoveAppModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/CloneOrMoveAppModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/ImageGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/ImageGallery.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/InstallAppModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/InstallAppModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/RestartModuleModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/RestartModuleModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/SetInstanceLabelModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/SetInstanceLabelModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/software-center/UpdateAppModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/software-center/UpdateAppModal.vue -------------------------------------------------------------------------------- /core/ui/src/components/system-logs/LogOutput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/system-logs/LogOutput.vue -------------------------------------------------------------------------------- /core/ui/src/components/system-logs/LogSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/components/system-logs/LogSearch.vue -------------------------------------------------------------------------------- /core/ui/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/i18n/index.js -------------------------------------------------------------------------------- /core/ui/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/main.js -------------------------------------------------------------------------------- /core/ui/src/mixins/2fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/mixins/2fa.js -------------------------------------------------------------------------------- /core/ui/src/mixins/audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/mixins/audit.js -------------------------------------------------------------------------------- /core/ui/src/mixins/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/mixins/login.js -------------------------------------------------------------------------------- /core/ui/src/mixins/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/mixins/node.js -------------------------------------------------------------------------------- /core/ui/src/mixins/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/mixins/notification.js -------------------------------------------------------------------------------- /core/ui/src/mixins/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/mixins/websocket.js -------------------------------------------------------------------------------- /core/ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/router/index.js -------------------------------------------------------------------------------- /core/ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/store/index.js -------------------------------------------------------------------------------- /core/ui/src/stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /core/ui/src/stories/NsBackupCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsBackupCard.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsButton.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsButton.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsByteSlider.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsByteSlider.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsCheckbox.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsCheckbox.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsCircleTimer.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsCircleTimer.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsCodeSnippet.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsCodeSnippet.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsComboBox.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsComboBox.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsComboSearchBox.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsComboSearchBox.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsDangerDeleteModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsDangerDeleteModal.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsDataTable.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsDataTable.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsDropdownAction.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsDropdownAction.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsEmptyState.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsEmptyState.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsIconMenu.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsIconMenu.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsInfoCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsInfoCard.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsInlineNotification.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsInlineNotification.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsLottieAnimation.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsLottieAnimation.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsMenuItem.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsMenuItem.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsMeterChart.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsMeterChart.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsModal.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsMultiSelect.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsMultiSelect.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsPasswordInput.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsPasswordInput.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsProgressBar.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsProgressBar.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsSlider.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsSlider.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsStatusCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsStatusCard.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsSystemLogsCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsSystemLogsCard.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsSystemdServiceCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsSystemdServiceCard.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsTextInput.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsTextInput.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsTile.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsTile.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsTimePicker.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsTimePicker.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsToastNotification.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsToastNotification.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsToggle.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsToggle.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/NsWizard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/NsWizard.stories.js -------------------------------------------------------------------------------- /core/ui/src/stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/colors.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/comments.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/direction.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/flow.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/ghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/ghost.json -------------------------------------------------------------------------------- /core/ui/src/stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/plugin.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/repo.svg -------------------------------------------------------------------------------- /core/ui/src/stories/assets/rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/rocket.json -------------------------------------------------------------------------------- /core/ui/src/stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /core/ui/src/styles/_branding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_branding.scss -------------------------------------------------------------------------------- /core/ui/src/styles/_carbon-fixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_carbon-fixes.scss -------------------------------------------------------------------------------- /core/ui/src/styles/_carbon-utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_carbon-utils.scss -------------------------------------------------------------------------------- /core/ui/src/styles/_carbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_carbon.scss -------------------------------------------------------------------------------- /core/ui/src/styles/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_core.scss -------------------------------------------------------------------------------- /core/ui/src/styles/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_responsive.scss -------------------------------------------------------------------------------- /core/ui/src/styles/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/styles/_utils.scss -------------------------------------------------------------------------------- /core/ui/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/About.vue -------------------------------------------------------------------------------- /core/ui/src/views/Applications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/Applications.vue -------------------------------------------------------------------------------- /core/ui/src/views/ApplicationsCenter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/ApplicationsCenter.vue -------------------------------------------------------------------------------- /core/ui/src/views/AuditTrail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/AuditTrail.vue -------------------------------------------------------------------------------- /core/ui/src/views/Backup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/Backup.vue -------------------------------------------------------------------------------- /core/ui/src/views/ClusterStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/ClusterStatus.vue -------------------------------------------------------------------------------- /core/ui/src/views/DomainConfiguration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/DomainConfiguration.vue -------------------------------------------------------------------------------- /core/ui/src/views/Domains.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/Domains.vue -------------------------------------------------------------------------------- /core/ui/src/views/InitializeCluster.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/InitializeCluster.vue -------------------------------------------------------------------------------- /core/ui/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/Login.vue -------------------------------------------------------------------------------- /core/ui/src/views/NodeDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/NodeDetail.vue -------------------------------------------------------------------------------- /core/ui/src/views/NodeFirewall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/NodeFirewall.vue -------------------------------------------------------------------------------- /core/ui/src/views/Nodes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/Nodes.vue -------------------------------------------------------------------------------- /core/ui/src/views/SoftwareCenter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/SoftwareCenter.vue -------------------------------------------------------------------------------- /core/ui/src/views/SoftwareCenterAppInstances.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/SoftwareCenterAppInstances.vue -------------------------------------------------------------------------------- /core/ui/src/views/SoftwareCenterCoreApps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/SoftwareCenterCoreApps.vue -------------------------------------------------------------------------------- /core/ui/src/views/SystemLogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/SystemLogs.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/ClusterAdmins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/ClusterAdmins.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/Settings.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsAccount.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsAcmeServers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsAcmeServers.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsCluster.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsCluster.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsFirewall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsFirewall.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsHttpRoutes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsHttpRoutes.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsMetrics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsMetrics.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsSmartHost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsSmartHost.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsSoftwareRepositories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsSoftwareRepositories.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsSubscription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsSubscription.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsSystemLogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsSystemLogs.vue -------------------------------------------------------------------------------- /core/ui/src/views/settings/SettingsTlsCertificates.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/src/views/settings/SettingsTlsCertificates.vue -------------------------------------------------------------------------------- /core/ui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/vue.config.js -------------------------------------------------------------------------------- /core/ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/core/ui/yarn.lock -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .bundle/ 3 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/build_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/build_system.md -------------------------------------------------------------------------------- /docs/core/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/agents.md -------------------------------------------------------------------------------- /docs/core/api_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/api_server.md -------------------------------------------------------------------------------- /docs/core/backup_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/backup_restore.md -------------------------------------------------------------------------------- /docs/core/clone_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/clone_module.md -------------------------------------------------------------------------------- /docs/core/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/database.md -------------------------------------------------------------------------------- /docs/core/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/events.md -------------------------------------------------------------------------------- /docs/core/filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/filesystem.md -------------------------------------------------------------------------------- /docs/core/firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/firewall.md -------------------------------------------------------------------------------- /docs/core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/index.md -------------------------------------------------------------------------------- /docs/core/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/logs.md -------------------------------------------------------------------------------- /docs/core/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/metrics.md -------------------------------------------------------------------------------- /docs/core/phone_home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/phone_home.md -------------------------------------------------------------------------------- /docs/core/port_allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/port_allocation.md -------------------------------------------------------------------------------- /docs/core/proxy_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/proxy_certificates.md -------------------------------------------------------------------------------- /docs/core/smarthost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/smarthost.md -------------------------------------------------------------------------------- /docs/core/software_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/software_repositories.md -------------------------------------------------------------------------------- /docs/core/subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/subscription.md -------------------------------------------------------------------------------- /docs/core/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/testing.md -------------------------------------------------------------------------------- /docs/core/tun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/tun.md -------------------------------------------------------------------------------- /docs/core/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/updates.md -------------------------------------------------------------------------------- /docs/core/user_domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/user_domains.md -------------------------------------------------------------------------------- /docs/core/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/validation.md -------------------------------------------------------------------------------- /docs/core/vpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/core/vpn.md -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/development_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/development_process.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/modules/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/agent.md -------------------------------------------------------------------------------- /docs/modules/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/certificates.md -------------------------------------------------------------------------------- /docs/modules/certification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/certification.md -------------------------------------------------------------------------------- /docs/modules/code_snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/code_snippets.md -------------------------------------------------------------------------------- /docs/modules/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/database.md -------------------------------------------------------------------------------- /docs/modules/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/images.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/metadata.md -------------------------------------------------------------------------------- /docs/modules/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/network.md -------------------------------------------------------------------------------- /docs/modules/new_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/new_module.md -------------------------------------------------------------------------------- /docs/modules/port_allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/port_allocation.md -------------------------------------------------------------------------------- /docs/modules/rootless_rootfull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/rootless_rootfull.md -------------------------------------------------------------------------------- /docs/modules/service_providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/service_providers.md -------------------------------------------------------------------------------- /docs/modules/systemd_units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/systemd_units.md -------------------------------------------------------------------------------- /docs/modules/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/updates.md -------------------------------------------------------------------------------- /docs/modules/volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/modules/volumes.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/ui/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/ui/core.md -------------------------------------------------------------------------------- /docs/ui/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/ui/index.md -------------------------------------------------------------------------------- /docs/ui/library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/ui/library.md -------------------------------------------------------------------------------- /docs/ui/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/ui/modules.md -------------------------------------------------------------------------------- /docs/ui/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/docs/ui/translation.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/ns8-core/HEAD/renovate.json --------------------------------------------------------------------------------