Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mika/sssd
  • guillem/debian-pkg-sssd
  • john.veitch/sssd
  • jgullberg/sssd
  • gioele/sssd
  • oktay454/sssd
  • sergiodj/sssd
  • 3v1n0/sssd
  • jfalk-guest/sssd
  • sathieu/sssd
  • dpward/sssd
  • sssd-team/sssd
  • ahasenack/sssd
  • jbicha/sssd
  • yrro-guest/sssd
15 results
Show changes
Commits on Source (29)
Showing with 168 additions and 159 deletions
......@@ -21,24 +21,31 @@ outputs:
runs:
using: 'composite'
steps:
# '-' is an illegal character for RPM version tag
- name: Sanitize version
id: sanitize
shell: bash
run: |
version="$(echo ${{ inputs.version }} | sed 's/-/_/g')"
echo "version=$version" >> $GITHUB_OUTPUT
- name: Generate tarball and spec file
shell: bash
run: |
pushd '${{ inputs.working-directory }}'
version="${{ inputs.version }}"
release="${{ inputs.release }}"
name="sssd-$version"
name="sssd-${{ steps.sanitize.outputs.version }}"
tar -cvzf "$name.tar.gz" --transform "s,^,$name/," *
cp contrib/sssd.spec.in ./sssd.spec
sed -iE "s/@PACKAGE_NAME@/sssd/g" ./sssd.spec
sed -iE "s/@PACKAGE_VERSION@/$version/g" ./sssd.spec
sed -iE "s/@PACKAGE_VERSION@/${{ steps.sanitize.outputs.version }}/g" ./sssd.spec
sed -iE "s/@PRERELEASE_VERSION@/$release/g" ./sssd.spec
popd
- name: Build source rpm
id: srpm
uses: next-actions/build-srpm@master
with:
tarball: ${{ inputs.working-directory }}/sssd-${{ inputs.version }}.tar.gz
tarball: ${{ inputs.working-directory }}/sssd-${{ steps.sanitize.outputs.version }}.tar.gz
specfile: ${{ inputs.working-directory }}/sssd.spec
name: "Analyze (target)"
on:
pull_request_target:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
......@@ -13,7 +13,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
......@@ -35,13 +35,13 @@ jobs:
contents: read
steps:
- name: Checkout target branch
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.base_ref }}
path: target
- name: Checkout pull request branch
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
path: pr
......
name: "ci"
on:
push:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
pull_request:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
......@@ -15,7 +15,7 @@ jobs:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dependencies
id: dependencies
......@@ -63,7 +63,7 @@ jobs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Get matrix
id: matrix
......@@ -80,7 +80,7 @@ jobs:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: sssd
......@@ -145,7 +145,7 @@ jobs:
contents: read
steps:
- name: Checkout sssd repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: sssd
......
......@@ -21,7 +21,7 @@
name: copr
on:
pull_request_target:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
......@@ -41,7 +41,7 @@ jobs:
contents: read
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
......@@ -53,7 +53,7 @@ jobs:
version: ${{ env.COPR_PROJECT }}
- name: Upload source rpm as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ steps.srpm.outputs.file }}
path: ${{ steps.srpm.outputs.path }}
......@@ -114,7 +114,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Downlooad source rpm
uses: actions/download-artifact@v2
......
name: copr cleanup
on:
pull_request_target:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
types: [closed]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
......
......@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/install-dependencies
......
name: "Static code analysis"
on:
push:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
pull_request:
branches: [master, sssd-2-7]
branches: [master, sssd-2-7, sssd-2-8]
schedule:
# Everyday at midnight
- cron: '0 0 * * *'
......@@ -17,7 +17,7 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dependencies
id: dependencies
......@@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run flake8
uses: grantmcconnaughey/lintly-flake8-github-action@d9db4fd0be9fb1cd19206a48ec0773bd93b82cbd
......
......@@ -10,6 +10,7 @@
import json
import requests
import argparse
import os
def get_fedora_releases(type, exclude=[]):
......@@ -59,4 +60,5 @@ if __name__ == "__main__":
print(json.dumps(matrix, indent=2))
if args.action:
print(f'::set-output name=matrix::{json.dumps(matrix)}')
with open(os.environ['GITHUB_OUTPUT'], 'a') as f:
f.write(f'matrix={json.dumps(matrix)}')
sssd (2.8.0-1) UNRELEASED; urgency=medium
sssd (2.8.1-1) unstable; urgency=medium
* New upstream release.
* watch: Updated for current github behaviour.
* support-krb5-1.20.diff: Dropped, upstream.
-- Timo Aaltonen <tjaalton@debian.org> Thu, 27 Oct 2022 12:39:02 +0300
-- Timo Aaltonen <tjaalton@debian.org> Wed, 23 Nov 2022 10:10:41 +0200
sssd (2.7.4-1) unstable; urgency=medium
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2014-12-14 11:44-0500\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1822,48 +1822,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Продължава като демон (по подразбиране)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Интерактивна работа (а не като демон)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Задаване на друг (не подразбиращия се) конфиг файл"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr ""
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2017-10-15 03:02-0400\n"
"Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1941,48 +1941,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Esdevé un dimoni (per defecte)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Executa en mode interactiu (no com a dimoni)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Especifica un fitxer de configuració diferent del predeterminat"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr "Imprimeix el número de versió i surt"
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2022-05-20 09:18+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
"Language-Team: Czech <https://translate.fedoraproject.org/projects/sssd/sssd-"
......@@ -1964,50 +1964,50 @@ msgstr "Popis umístění souborových zdrojů passwd."
msgid "Path of group file sources."
msgstr "Popis umístění souborových zdrojů group."
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Přejít v proces služby (výchozí)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Spustit interaktivně (ne jako proces služby)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr "Vypnout netlink rozhraní"
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Zadat nevýchozí soubor s nastaveními"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr "Znovu načíst databázi s nastaveními, pak skončit"
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr "Podobné s --genconf, ale znovu načte pouze danou sekci"
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr "Vypsat číslo verze a skončit"
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
"Volbu -i|--interactive (interaktivní) není možné použít současně s -D|--"
"daemon (proces služby)\n"
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr "Volba -g není kompatibilní s -D nebo -i\n"
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr "Spuštěné pod %<PRIu64>, je třeba, aby bylo root\n"
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr "SSSD už je spuštěné\n"
......
......@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2022-07-01 09:40+0000\n"
"Last-Translator: Joachim Philipp <joachim.philipp@gmail.com>\n"
"Language-Team: German <https://translate.fedoraproject.org/projects/sssd/"
......@@ -1924,48 +1924,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Zum Hintergrunddienst werden (Vorgabe)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Interaktiv ausführen (nicht als Hintergrunddienst)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Angabe einer nicht standardmäßigen Konfigurationsdatei"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr "Versionsnummer ausgeben und das Programm beenden"
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2022-09-11 10:19+0000\n"
"Last-Translator: Emilio Herrera <ehespinosa57@gmail.com>\n"
"Language-Team: Spanish <https://translate.fedoraproject.org/projects/sssd/"
......@@ -2034,48 +2034,48 @@ msgstr "Ruta de las fuentes del fichero passwd"
msgid "Path of group file sources."
msgstr "Ruta de las fuentes del fichero group"
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Convertirse en demonio (predeterminado)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Ejecutarse en forma interactiva (no un demonio)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr "Deshabilitar el interfaz netlink"
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Indicar un archivo de configuración diferente al predeterminado"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr "Refrescar la base de datos de configuración, después salir"
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr "Similar a --genconf, pero solo refresca la sección dada"
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr "Muestra el número de versión y finaliza"
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr "La opción -i|--interactive no está permitida junto con -D|--daemon\n"
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr "La opción -g ies incompatible con -D o -i\n"
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr "Corriendo bajo %<PRIu64>, debe ser root\n"
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr "SSSD ya está corriendo\n"
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2014-12-14 11:45-0500\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1815,48 +1815,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr ""
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr ""
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr ""
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr "Inprimatu bertsio zenbakia eta irten"
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2022-03-20 19:16+0000\n"
"Last-Translator: Jan Kuparinen <copper_fin@hotmail.com>\n"
"Language-Team: Finnish <https://translate.fedoraproject.org/projects/sssd/"
......@@ -1825,48 +1825,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr ""
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr ""
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr ""
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr ""
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2022-06-24 20:18+0000\n"
"Last-Translator: Ludek Janda <ljanda@redhat.com>\n"
"Language-Team: French <https://translate.fedoraproject.org/projects/sssd/"
......@@ -2043,48 +2043,48 @@ msgstr "Chemin des sources des fichiers passwd."
msgid "Path of group file sources."
msgstr "Chemin des sources des fichiers de groupe."
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Devenir un démon (par défaut)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Fonctionner en interactif (non démon)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr "Désactiver l'interface netlink"
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Définir un fichier de configuration différent de celui par défaut"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr "Rafraîchissez la base de données de configuration, puis quittez"
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr "Semblable à --genconf, mais ne rafraîchit que la section donnée"
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr "Afficher le numéro de version et quitte"
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr "Option -i|--interactive non authorisée avec -D|--daemon\n"
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr "Option -g incompatible avec -D ou -i\n"
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr "S’exécutant sous %<PRIu64>, doit être superutilisateur (root)\n"
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr "SSSD est déjà en cours d'exécution\n"
......
......@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2014-12-14 11:45-0500\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1818,48 +1818,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr ""
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr ""
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr ""
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr ""
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2014-12-14 11:46-0500\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1815,48 +1815,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr ""
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr ""
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr ""
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr ""
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......
......@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2022-10-07 12:50+0200\n"
"POT-Creation-Date: 2022-11-04 11:37+0100\n"
"PO-Revision-Date: 2020-09-15 08:29+0000\n"
"Last-Translator: Milo Casagrande <milo@milo.name>\n"
"Language-Team: Italian <https://translate.fedoraproject.org/projects/sssd/"
......@@ -1834,48 +1834,48 @@ msgstr ""
msgid "Path of group file sources."
msgstr ""
#: src/monitor/monitor.c:2360
#: src/monitor/monitor.c:2361
msgid "Become a daemon (default)"
msgstr "Esegui come demone (default)"
#: src/monitor/monitor.c:2362
#: src/monitor/monitor.c:2363
msgid "Run interactive (not a daemon)"
msgstr "Esegui interattivamente (non come demone)"
#: src/monitor/monitor.c:2365
#: src/monitor/monitor.c:2366
msgid "Disable netlink interface"
msgstr ""
#: src/monitor/monitor.c:2367 src/tools/sssctl/sssctl_config.c:77
#: src/monitor/monitor.c:2368 src/tools/sssctl/sssctl_config.c:77
msgid "Specify a non-default config file"
msgstr "Specificare un file di configurazione specifico"
#: src/monitor/monitor.c:2369
#: src/monitor/monitor.c:2370
msgid "Refresh the configuration database, then exit"
msgstr ""
#: src/monitor/monitor.c:2372
#: src/monitor/monitor.c:2373
msgid "Similar to --genconf, but only refreshes the given section"
msgstr ""
#: src/monitor/monitor.c:2375
#: src/monitor/monitor.c:2376
msgid "Print version number and exit"
msgstr ""
#: src/monitor/monitor.c:2413
#: src/monitor/monitor.c:2414
msgid "Option -i|--interactive is not allowed together with -D|--daemon\n"
msgstr ""
#: src/monitor/monitor.c:2419
#: src/monitor/monitor.c:2420
msgid "Option -g is incompatible with -D or -i\n"
msgstr ""
#: src/monitor/monitor.c:2432
#: src/monitor/monitor.c:2433
#, c-format
msgid "Running under %<PRIu64>, must be root\n"
msgstr ""
#: src/monitor/monitor.c:2514
#: src/monitor/monitor.c:2515
msgid "SSSD is already running\n"
msgstr ""
......