[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[glibc] 04/09: debian/debhelper.in/libc.postinst, debian/debhelper.in/libc.templates, debian/po/*: do not call /etc/init.d scripts even as a fallback as invoke-rc.d is now always available.



This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch glibc-2.25
in repository glibc.

commit ad6a8be8ff6e366bd5d1cb99bfc4e3b317c49898
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Sat Aug 26 15:44:32 2017 +0200

    debian/debhelper.in/libc.postinst, debian/debhelper.in/libc.templates, debian/po/*: do not call /etc/init.d scripts even as a fallback as invoke-rc.d is now always available.
---
 debian/changelog                   |  3 ++
 debian/debhelper.in/libc.postinst  | 58 ++------------------------------------
 debian/debhelper.in/libc.templates |  2 +-
 debian/po/ar.po                    | 10 +++++--
 debian/po/ca.po                    | 10 +++++--
 debian/po/cs.po                    | 10 +++++--
 debian/po/da.po                    | 10 +++++--
 debian/po/de.po                    | 10 +++++--
 debian/po/el.po                    | 10 +++++--
 debian/po/es.po                    | 10 +++++--
 debian/po/eu.po                    | 10 +++++--
 debian/po/fi.po                    | 10 +++++--
 debian/po/fr.po                    | 14 ++++-----
 debian/po/gl.po                    | 10 +++++--
 debian/po/hu.po                    | 10 +++++--
 debian/po/it.po                    | 10 +++++--
 debian/po/ja.po                    | 10 +++++--
 debian/po/ko.po                    | 10 +++++--
 debian/po/lt.po                    | 10 +++++--
 debian/po/ml.po                    |  4 +--
 debian/po/nb.po                    | 10 +++++--
 debian/po/nl.po                    | 14 ++++-----
 debian/po/pl.po                    | 10 +++++--
 debian/po/pt.po                    | 10 +++++--
 debian/po/pt_BR.po                 | 10 +++++--
 debian/po/ro.po                    | 10 +++++--
 debian/po/ru.po                    |  8 ++++--
 debian/po/sk.po                    | 10 +++++--
 debian/po/sv.po                    | 10 +++++--
 debian/po/ta.po                    |  4 +--
 debian/po/templates.pot            |  4 +--
 debian/po/tr.po                    | 10 +++++--
 debian/po/uk.po                    |  4 +--
 debian/po/vi.po                    |  8 ++++--
 debian/po/zh_CN.po                 | 10 +++++--
 35 files changed, 209 insertions(+), 154 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a0d4af4..145dd25 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,6 +15,9 @@ glibc (2.25-0experimental2) UNRELEASED; urgency=medium
     to nscd's init script.
   * debian/debhelper.in/libc.postinst, debian/script.in/nsscheck.sh: drop
     wheezy to jessie upgrade code for samba.
+  * debian/debhelper.in/libc.postinst, debian/debhelper.in/libc.templates,
+    debian/po/*: do not call /etc/init.d scripts even as a fallback as
+    invoke-rc.d is now always available.
 
  -- Aurelien Jarno <aurel32@debian.org>  Sun, 20 Aug 2017 19:05:48 +0200
 
diff --git a/debian/debhelper.in/libc.postinst b/debian/debhelper.in/libc.postinst
index a92e331..0426d7b 100644
--- a/debian/debhelper.in/libc.postinst
+++ b/debian/debhelper.in/libc.postinst
@@ -5,51 +5,6 @@ export LC_ALL=C
 type=$1
 preversion=$2
 
-# element() is a helper function for file-rc:
-element() {
-    local element list IFS
-
-    element="$1"
-
-    [ "$2" = "in" ] && shift
-    list="$2"
-    [ "$list" = "-" ] && return 1
-    [ "$list" = "*" ] && return 0
-
-    IFS=","
-    set -- $list
-    case $element in
-	"$1"|"$2"|"$3"|"$4"|"$5"|"$6"|"$7"|"$8"|"$9")
-	    return 0
-    esac
-    return 1
-}
-
-# filerc (runlevel, service) returns /etc/init.d/service, if service is
-# running in $runlevel:
-filerc() {
-    local runlevel basename
-    runlevel=$1
-    basename=$2
-    while read LINE
-    do
-	case $LINE in
-	    \#*|"") continue
-	esac
-
-	set -- $LINE
-	SORT_NO="$1"; STOP="$2"; START="$3"; CMD="$4"
-	[ "$CMD" = "/etc/init.d/$basename" ] || continue
-
-	if element "$runlevel" in "$START" || element "S" in "$START"
-	then
-	    echo "/etc/init.d/$basename"
-	    return 0
-	fi
-    done < /etc/runlevel.conf
-    echo ""
-}
-
 checkpkgver () {
     local status pkg
     pkg=$1
@@ -138,17 +93,10 @@ then
 		    echo "Restarting services possibly affected by the upgrade:"
 		    failed=""
 		    for service in $services; do
-		    	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
-			    idl="invoke-rc.d ${service}"
-			elif [ -f /usr/share/file-rc/rc ] || [ -f /usr/lib/file-rc/rc ] && [ -f /etc/runlevel.conf ]; then
-			    idl=$(filerc $rl $service)
-			else
-			    idl=$(ls /etc/rc${rl}.d/S??${service} 2> /dev/null | head -1)
-			fi
 			case "$service" in
 			    gdm)
 				echo -n "  $service: reloading..."
-				if $idl reload > /dev/null 2>&1; then
+				if invoke-rc.d ${service} reload > /dev/null 2>&1; then
 				    echo "done."
 				else
 				    echo "FAILED! ($?)"
@@ -157,7 +105,7 @@ then
 				;;
 			    *)
 				echo -n "  $service: restarting..."
-				if $idl restart > /dev/null 2>&1; then
+				if invoke-rc.d ${service} restart > /dev/null 2>&1; then
 				    echo "done."
 				else
 				    echo "FAILED! ($?)"
@@ -176,7 +124,7 @@ then
 			else
 			    echo "The following services failed to start: $failed"
 			    echo
-			    echo "You will need to start these manually by running \`/etc/init.d/<service> start'"
+			    echo "You will need to start these manually by running \`invoke-rc.d <service> start'"
 			    echo "If the service still fails to start, you may need to file a bug on"
 			    echo "${DPKG_MAINTSCRIPT_PACKAGE}:${DPKG_MAINTSCRIPT_ARCH} or the service involved."
 			    frontend=`echo "$DEBIAN_FRONTEND" | tr '[:upper:]' '[:lower:]'`
diff --git a/debian/debhelper.in/libc.templates b/debian/debhelper.in/libc.templates
index a82c2d1..44e4be8 100644
--- a/debian/debhelper.in/libc.templates
+++ b/debian/debhelper.in/libc.templates
@@ -36,7 +36,7 @@ _Description: Failure restarting some services for GNU libc upgrade
  ${services}
  .
  You will need to start these manually by running
- '/etc/init.d/<service> start'.
+ 'invoke-rc.d <service> start'.
 
 Template: glibc/disable-screensaver
 Type: error
diff --git a/debian/po/ar.po b/debian/po/ar.po
index e8cec7f..f220a3d 100644
--- a/debian/po/ar.po
+++ b/debian/po/ar.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ar\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2010-09-09 01:07+0300\n"
 "Last-Translator: Ossama Khayat <okhayat@yahoo.com>\n"
 "Language-Team: Arabic <support@arabeyes.org>\n"
@@ -178,11 +178,15 @@ msgstr "تعذر إعادة تشغيل الخدمات التالية لترقي
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"عليك بتشغيل هذه الخدمات يدوياً بتنفيذ الأمر '/etc/init.d/<service> start'."
+"عليك بتشغيل هذه الخدمات يدوياً بتنفيذ الأمر 'invoke.rc.d <service> start'."
 
 #. Type: error
 #. Description
diff --git a/debian/po/ca.po b/debian/po/ca.po
index 9bf84a3..00b95ad 100644
--- a/debian/po/ca.po
+++ b/debian/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 2.11.2-6\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2010-10-23 11:57+0200\n"
 "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
 "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@@ -185,11 +185,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Haureu d'iniciar aquests serveis manualment executant «/etc/init.d/<servei> "
+"Haureu d'iniciar aquests serveis manualment executant «invoke.rc.d <servei> "
 "start»."
 
 #. Type: error
diff --git a/debian/po/cs.po b/debian/po/cs.po
index 190ef49..ce35dcc 100644
--- a/debian/po/cs.po
+++ b/debian/po/cs.po
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2012-07-15 20:40+0200\n"
 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
 "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -187,10 +187,14 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
-msgstr "Budete je muset spustit ručně příkazem „/etc/init.d/<služba> start“."
+msgstr "Budete je muset spustit ručně příkazem „invoke.rc.d <služba> start“."
 
 #. Type: error
 #. Description
diff --git a/debian/po/da.po b/debian/po/da.po
index 4f3ad2f..3df2ff5 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eglibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2016-07-10 14:04+0200\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
@@ -182,11 +182,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Du skal genstarte disse manuelt ved at køre »/etc/init.d/<service> start«."
+"Du skal genstarte disse manuelt ved at køre »invoke.rc.d <service> start«."
 
 #. Type: error
 #. Description
diff --git a/debian/po/de.po b/debian/po/de.po
index 1e08dbd..28d6890 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc 2.21-9\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2016-02-21 19:48+0100\n"
 "Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
 "Language-Team: de <debian-l10n-german@lists.debian.org>\n"
@@ -185,11 +185,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Sie m�ssen diese manuell starten, indem Sie �/etc/init.d/<service> start� "
+"Sie m�ssen diese manuell starten, indem Sie �invoke.rc.d <service> start� "
 "ausf�hren."
 
 #. Type: error
diff --git a/debian/po/el.po b/debian/po/el.po
index 1a731da..677a463 100644
--- a/debian/po/el.po
+++ b/debian/po/el.po
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2017-07-06 21:00+0300\n"
 "Last-Translator: Vangelis Skarmoutsos <skarmoutsosv@gmail.com>\n"
 "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
@@ -199,11 +199,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Θα χρειαστεί να τις εκκινήστε χειροκίνητα τρέχοντας '/etc/init.d/<service> "
+"Θα χρειαστεί να τις εκκινήστε χειροκίνητα τρέχοντας 'invoke.rc.d <service> "
 "start'."
 
 #. Type: error
diff --git a/debian/po/es.po b/debian/po/es.po
index 8066e7b..b042c30 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -32,7 +32,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc 2.13-24\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2012-01-14 11:44+0100\n"
 "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
 "Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -215,11 +215,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Tendrá que iniciarlos manualmente ejecutando «/etc/init.d/<servicio> start»."
+"Tendrá que iniciarlos manualmente ejecutando «invoke.rc.d <servicio> start»."
 
 #. Type: error
 #. Description
diff --git a/debian/po/eu.po b/debian/po/eu.po
index 9a1f803..0145ef8 100644
--- a/debian/po/eu.po
+++ b/debian/po/eu.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2007-09-11 09:57+0100\n"
 "Last-Translator: Piarres Beobide <pi@beobide.net>\n"
 "Language-Team: librezale <librezale@librezale.org>\n"
@@ -183,11 +183,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Hauek eskuz abiarazi beharko dituzu '/etc/init.d/<zerbitzua> start' eginaz."
+"Hauek eskuz abiarazi beharko dituzu 'invoke.rc.d <zerbitzua> start' eginaz."
 
 #. Type: error
 #. Description
diff --git a/debian/po/fi.po b/debian/po/fi.po
index 7ad7073..c9c7d0c 100644
--- a/debian/po/fi.po
+++ b/debian/po/fi.po
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2014-06-04 20:45+0200\n"
 "Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
 "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -195,11 +195,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Nämä palvelut tulee käynnistää käsin ajamalla ”/etc/init.d/<palvelu> start”."
+"Nämä palvelut tulee käynnistää käsin ajamalla ”invoke.rc.d <palvelu> start”."
 
 #. Type: error
 #. Description
diff --git a/debian/po/fr.po b/debian/po/fr.po
index b3c72bb..484e276 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc 2.24-14\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2017-08-04 14:44+0100\n"
 "Last-Translator: Alban Vidal <alban.vidal@zordhak.fr>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -194,11 +194,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Il est nécessaire de les redémarrer vous-même avec la commande « /etc/init.d/"
+"Il est nécessaire de les redémarrer vous-même avec la commande « invoke.rc.d "
 "<service> start »."
 
 #. Type: error
@@ -280,10 +284,6 @@ msgstr "Version du noyau non gérée"
 #. Type: note
 #. Description
 #: ../debhelper.in/libc.templates:7001
-#| msgid ""
-#| "This version of the GNU libc requires kernel version ${kernel_ver} or "
-#| "later.  Older versions might work but are not officially supported.  "
-#| "Please consider upgrading your kernel."
 msgid ""
 "This version of the GNU libc requires kernel version ${kernel_ver} or "
 "later.  Older versions might work but are not officially supported by "
diff --git a/debian/po/gl.po b/debian/po/gl.po
index 491db89..3c8809c 100644
--- a/debian/po/gl.po
+++ b/debian/po/gl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eglibc_2.11.2-2_gl\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2010-08-13 01:43+0200\n"
 "Last-Translator: Jorge Barreiro <yortx.barry@gmail.com>\n"
 "Language-Team: Galician <proxecto@trasno.net>\n"
@@ -185,11 +185,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Ha ter que reinicialos manualmente executando \"/etc/init.d/<servizo> start"
+"Ha ter que reinicialos manualmente executando \"invoke.rc.d <servizo> start"
 "\"."
 
 #. Type: error
diff --git a/debian/po/hu.po b/debian/po/hu.po
index 5ceffd4..da0ee82 100644
--- a/debian/po/hu.po
+++ b/debian/po/hu.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2013-05-14 18:47+0200\n"
 "Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
 "Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
@@ -185,11 +185,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Ezeket neked kell újraindítanod a '/etc/init.d/<service> start' parancs "
+"Ezeket neked kell újraindítanod a 'invoke.rc.d <service> start' parancs "
 "futtatásával."
 
 #. Type: error
diff --git a/debian/po/it.po b/debian/po/it.po
index 4632270..9d06201 100644
--- a/debian/po/it.po
+++ b/debian/po/it.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc 2.19 debconf templates\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2014-08-31 18:55+0200\n"
 "Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
 "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
@@ -184,10 +184,14 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
-msgstr "È necessario avviarli manualmente con «/etc/init.d/<servizio> start»."
+msgstr "È necessario avviarli manualmente con «invoke.rc.d <servizio> start»."
 
 #. Type: error
 #. Description
diff --git a/debian/po/ja.po b/debian/po/ja.po
index 2d5b023..fa43686 100644
--- a/debian/po/ja.po
+++ b/debian/po/ja.po
@@ -19,7 +19,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eglibc_2.13-38\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2016-02-25 13:03+0900\n"
 "Last-Translator: Takuma Yamada <tyamada@takumayamada.com>\n"
 "Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
@@ -193,11 +193,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"'/etc/init.d/<サービス> start' を実行することで、これらを手動で起動する必要が"
+"'invoke.rc.d <サービス> start' を実行することで、これらを手動で起動する必要が"
 "あります。"
 
 #. Type: error
diff --git a/debian/po/ko.po b/debian/po/ko.po
index cdd39c3..db62f60 100644
--- a/debian/po/ko.po
+++ b/debian/po/ko.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2008-03-02 20:33-0500\n"
 "Last-Translator: Sunjae Park <darehanl@gmail.com>\n"
 "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
@@ -181,11 +181,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"이 서비스들은 '/etc/init.d/<service> start'로 직접 다시 시작시키셔야 합니다."
+"이 서비스들은 'invoke.rc.d <service> start'로 직접 다시 시작시키셔야 합니다."
 
 #. Type: error
 #. Description
diff --git a/debian/po/lt.po b/debian/po/lt.po
index 16c8730..1026e11 100644
--- a/debian/po/lt.po
+++ b/debian/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lt\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2008-02-26 23:36+0200\n"
 "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
 "Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n"
@@ -182,11 +182,15 @@ msgstr "Atnaujinus GNU libc nepavyko iš naujo paleisti šių procesų:"
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Jas reikės paleisti rankiniu būdu įvykdant „/etc/init.d/tarnyba start“."
+"Jas reikės paleisti rankiniu būdu įvykdant „invoke.rc.d tarnyba start“."
 
 #. Type: error
 #. Description
diff --git a/debian/po/ml.po b/debian/po/ml.po
index b972272..d1aa41d 100644
--- a/debian/po/ml.po
+++ b/debian/po/ml.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Glibc 2007_05_26\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2007-05-26 15:09+0530\n"
 "Last-Translator: അനൂപ്|Anoop പി|P <gnuanu@gmail.com>, ലാലു|Lalu കെആര്‍|KR "
 "<frecolalu@gmail.com>,സജീവ് |Sajeev പിആര്‍|PR <saju_rrk@yahoo.com>\n"
@@ -168,7 +168,7 @@ msgstr ""
 #. Description
 #: ../debhelper.in/libc.templates:3001
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
 
diff --git a/debian/po/nb.po b/debian/po/nb.po
index b4a7620..df5b0b7 100644
--- a/debian/po/nb.po
+++ b/debian/po/nb.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc_nb\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2011-12-29 12:39+0100\n"
 "Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
@@ -184,10 +184,14 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
-msgstr "Du må starte disse manuelt ved å kjøre «/etc/init.d/<service> start»."
+msgstr "Du må starte disse manuelt ved å kjøre «invoke.rc.d <service> start»."
 
 #. Type: error
 #. Description
diff --git a/debian/po/nl.po b/debian/po/nl.po
index 2289ce7..58daf35 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc 2.21-6\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2017-06-23 20:15+0200\n"
 "Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n"
 "Language-Team: Debian Dutch l10n Team <debian-l10n-dutch@lists.debian.org>\n"
@@ -190,11 +190,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"U dient deze diensten handmatig te herstarten via het commando '/etc/init.d/"
+"U dient deze diensten handmatig te herstarten via het commando 'invoke.rc.d "
 "<dienst> start'."
 
 #. Type: error
@@ -275,10 +279,6 @@ msgstr "Niet-ondersteunde kernelversie"
 #. Type: note
 #. Description
 #: ../debhelper.in/libc.templates:7001
-#| msgid ""
-#| "This version of the GNU libc requires kernel version ${kernel_ver} or "
-#| "later.  Older versions might work but are not officially supported.  "
-#| "Please consider upgrading your kernel."
 msgid ""
 "This version of the GNU libc requires kernel version ${kernel_ver} or "
 "later.  Older versions might work but are not officially supported by "
diff --git a/debian/po/pl.po b/debian/po/pl.po
index 0e925df..4a64a48 100644
--- a/debian/po/pl.po
+++ b/debian/po/pl.po
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: debconf-glibc-locales-pl\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2012-01-28 15:33+0100\n"
 "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
 "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
@@ -182,11 +182,15 @@ msgstr "Następujące usługi nie zostały zrestartowane po aktualizacji GNU lib
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Aby zrestartować te usługi ręcznie należy wywołać \"/etc/init.d/<service> "
+"Aby zrestartować te usługi ręcznie należy wywołać \"invoke.rc.d <service> "
 "start\"."
 
 #. Type: error
diff --git a/debian/po/pt.po b/debian/po/pt.po
index 60af74e..62c97dc 100644
--- a/debian/po/pt.po
+++ b/debian/po/pt.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2012-05-28 22:55+0100\n"
 "Last-Translator: Pedro Ribeiro <p.m42.ribeiro@gmail.com>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -184,11 +184,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Terá de os inicializar manualmente correndo '/etc/init.d/<serviço> start'."
+"Terá de os inicializar manualmente correndo 'invoke.rc.d <serviço> start'."
 
 #. Type: error
 #. Description
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index ce9a56e..2c3eda1 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2015-12-19 22:38-0200\n"
 "Last-Translator: Adriano Rafael Gomes <adrianorg@arg.eti.br>\n"
 "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
@@ -187,11 +187,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Você deverá iniciá-los manualmente executando \"/etc/init.d/<serviço> start"
+"Você deverá iniciá-los manualmente executando \"invoke.rc.d <serviço> start"
 "\"."
 
 #. Type: error
diff --git a/debian/po/ro.po b/debian/po/ro.po
index f2ba148..fb4532e 100644
--- a/debian/po/ro.po
+++ b/debian/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2008-02-17 12:48+0200\n"
 "Last-Translator: stan ioan-eugen <stan.ieugen@gmail.com>\n"
 "Language-Team: romanian <debian-l10n-romanian@lists.debian.org>\n"
@@ -186,11 +186,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Va trebui să porniți aceste servicii manual executând comanda '/etc/init.d/"
+"Va trebui să porniți aceste servicii manual executând comanda 'invoke.rc.d "
 "<serviciu> start'."
 
 #. Type: error
diff --git a/debian/po/ru.po b/debian/po/ru.po
index 381bede..c310dc2 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eglibc 2.13-23\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2011-12-17 09:26+0400\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -190,8 +190,12 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
 "Вам будет нужно запустить их вручную, для чего следует выполнить '/etc/init."
diff --git a/debian/po/sk.po b/debian/po/sk.po
index 81ba979..7af5432 100644
--- a/debian/po/sk.po
+++ b/debian/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eglibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2012-06-17 20:43+0100\n"
 "Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
 "Language-Team: Slovak <debian-l10n-slovak@lists.debian.org>\n"
@@ -182,11 +182,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Budete musieť tieto služby spustiť ručne pomocou „/etc/init.d/<service> "
+"Budete musieť tieto služby spustiť ručne pomocou „invoke.rc.d <service> "
 "start“."
 
 #. Type: error
diff --git a/debian/po/sv.po b/debian/po/sv.po
index cb99a94..295e3d3 100644
--- a/debian/po/sv.po
+++ b/debian/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc_2.7-11_sv\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2014-06-12 22:58+0200\n"
 "Last-Translator: Martin Bagge / brother <brother@bsnet.se>\n"
 "Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
@@ -182,11 +182,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Du behöver starta dessa manuellt genom att köra \"/etc/init.d/<tjänst> start"
+"Du behöver starta dessa manuellt genom att köra \"invoke.rc.d <tjänst> start"
 "\"."
 
 #. Type: error
diff --git a/debian/po/ta.po b/debian/po/ta.po
index d680d3a..28736ed 100644
--- a/debian/po/ta.po
+++ b/debian/po/ta.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2007-04-24 19:42+0530\n"
 "Last-Translator: Dr.T.Vasudevan <agnihot3@gmail.com>\n"
 "Language-Team: TAMIL <ubuntu-l10n-tam@lists.ubuntu.com>\n"
@@ -163,7 +163,7 @@ msgstr ""
 #. Description
 #: ../debhelper.in/libc.templates:3001
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
 
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index f12b243..c04ef38 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -153,7 +153,7 @@ msgstr ""
 #. Description
 #: ../debhelper.in/libc.templates:3001
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
 
diff --git a/debian/po/tr.po b/debian/po/tr.po
index c06d996..18a710b 100644
--- a/debian/po/tr.po
+++ b/debian/po/tr.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2014-08-01 03:34+0200\n"
 "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
 "Language-Team: debian-l10n-turkish <debian-l10n-turkish@lists.debian.org>\n"
@@ -183,11 +183,15 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
-"Bu hizmetleri '/etc/init.d/<hizmet> start' komutunu kullanarak elle "
+"Bu hizmetleri 'invoke.rc.d <hizmet> start' komutunu kullanarak elle "
 "başlatmanız gerekmektedir."
 
 #. Type: error
diff --git a/debian/po/uk.po b/debian/po/uk.po
index 18639c9..9dd2940 100644
--- a/debian/po/uk.po
+++ b/debian/po/uk.po
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: uk\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2006-02-21 10:12+0200\n"
 "Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
 "Language-Team: Ukrainian\n"
@@ -177,7 +177,7 @@ msgstr ""
 #. Description
 #: ../debhelper.in/libc.templates:3001
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
 
diff --git a/debian/po/vi.po b/debian/po/vi.po
index 58ab916..18fdd59 100644
--- a/debian/po/vi.po
+++ b/debian/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eglibc 2.11.2-6\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2010-10-27 14:55+1030\n"
 "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
 "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@@ -184,8 +184,12 @@ msgstr ""
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
 msgstr ""
 "Bạn sẽ cần phải tự khởi chạy lại các dịch vụ này, bằng cách chạy lệnh « /etc/"
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po
index 2fd2ab9..0594dca 100644
--- a/debian/po/zh_CN.po
+++ b/debian/po/zh_CN.po
@@ -19,7 +19,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: glibc 2.7-9\n"
 "Report-Msgid-Bugs-To: glibc@packages.debian.org\n"
-"POT-Creation-Date: 2017-06-13 22:11+0200\n"
+"POT-Creation-Date: 2017-08-26 13:35+0200\n"
 "PO-Revision-Date: 2008-02-28 23:44+0800\n"
 "Last-Translator: LI Daobing <lidaobing@gmail.com>\n"
 "Language-Team: Chinese (Simplified) <debian-chinese-gb@lists.debian.org>\n"
@@ -177,10 +177,14 @@ msgstr "GNU libc 库升级,但下列服务无法重启:"
 #. Type: error
 #. Description
 #: ../debhelper.in/libc.templates:3001
+#, fuzzy
+#| msgid ""
+#| "You will need to start these manually by running 'invoke.rc.d <service> "
+#| "start'."
 msgid ""
-"You will need to start these manually by running '/etc/init.d/<service> "
+"You will need to start these manually by running 'invoke-rc.d <service> "
 "start'."
-msgstr "你需要通过手动运行 '/etc/init.d/<service> start' 来启动这些服务。"
+msgstr "你需要通过手动运行 'invoke.rc.d <service> start' 来启动这些服务。"
 
 #. Type: error
 #. Description

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-glibc/glibc.git


Reply to: