+lsb (3.0-12) unstable; urgency=low
+
+ * Remove the pidfile in killproc(). (Closes: #321271)
+ * Declare $i local where it was previously omitted. (Closes: #340667)
+ * Fix syntax errors in init-skeleton. (Closes: #302009)
+ * Add sv.po. (Closes: #333595)
+
+ -- Chris Lawrence <lawrencc@debian.org> Tue, 29 Nov 2005 23:01:38 -0500
+
lsb (3.0-11) unstable; urgency=low
* Use the basename in killproc when calling start-stop-daemon.
--- /dev/null
+# Translators, if you are not familiar with the PO format, gettext
+# documentation is worth reading, especially sections dedicated to
+# this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+# Some information specific to po-debconf are available at
+# /usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans
+# Developers do not need to manually edit POT or PO files.
+# , fuzzy
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: lsb 3.0-9\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2003-03-30 12:40-0300\n"
+"PO-Revision-Date: 2005-10-13 23:09+0200\n"
+"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+"Language-Team: Swedish <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit"
+
+#. Description
+#: ../templates:4
+msgid "Should shadow passwords be enabled?"
+msgstr "Ska shadow-lösenord aktiveras?"
+
+#. Description
+#: ../templates:4
+msgid ""
+"The Linux Standard Base requires that certain features of adduser(8) be "
+"available to conforming applications (such as password aging). Debian only "
+"provides these features when shadow passwords are enabled; however, your "
+"system currently has shadow passwords disabled."
+msgstr ""
+"Linux Standard Base kräver att vissa funktioner av adduser(8) ska vara tillgängliga "
+"till anpassade applikationer (såsom ålder för lösenord). Debian erbjuder dessa funktioner "
+"om shadow-lösenord är aktiverade, men ditt system har för närvarande inte shadow-lösenord aktiverade."
+
+#. Description
+#: ../templates:4
+#, no-c-format
+msgid ""
+"Most LSB applications will work fine with either setting, but 100% "
+"conformance requires shadow passwords to be enabled."
+msgstr ""
+"De flesta LSB-applikationer fungerar fint med båda inställningarna men 100% "
+"anpassning kräver att shadow-lösenord ska aktiveras."
+
+#. Description
+#: ../templates:4
+msgid ""
+"Generally speaking, it is considered good practice to enable shadow "
+"passwords. However, there are some situations in which shadow passwords may "
+"not work properly (most notably, if non-root users need to authenticate "
+"passwords against /etc/passwd)."
+msgstr ""
+"Generellt sett är det ansett som bra tänkt att aktivera shadow-lösenord. Men det finns "
+"de situationer som shadow-lösenord kanske inte fungerar som det ska (till exempel om icke-root "
+"användare behöver autentisera lösenord mot /etc/passwd)."
+
+#. Description
+#: ../templates:4
+msgid ""
+"If you answer in the affirmative, the command 'shadowconfig on' will be run "
+"to enable shadow passwords."
+msgstr ""
+"Om du svarar ja kommer kommandot 'shadowconfig on' att köras för att "
+"aktivera shadow-lösenord."
+
#SUCH DAMAGE.
start_daemon () {
- local force nice pidfile exec
+ local force nice pidfile exec i
set -- `POSIXLY_CORRECT=1 getopt "fn:p:" $*`
force=0
nice=0
# start-stop-daemon uses the same algorithm as "pidofproc" above.
killproc () {
- local pidfile sig status base
+ local pidfile sig status base i
set -- `POSIXLY_CORRECT=1 getopt "p:" $*`
pidfile=
else
/sbin/start-stop-daemon --stop --pidfile "$pidfile" --retry 5 --quiet --oknodo --name "$base"
fi
+
+ rm -f "$pidfile"
}
log_use_fancy_output () {