aboutsummaryrefslogtreecommitdiffstats
path: root/langs/ca/community.po
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@ukr.net>2019-07-03 21:29:42 +0300
committerYuri Chornoivan <yurchor@ukr.net>2019-07-03 21:29:42 +0300
commit05f3c2d58222e70620e38c83be762a120676f983 (patch)
tree6310b300ba610b117cf98f8ad8c0e0d2d4af18db /langs/ca/community.po
parent9f76a6c0d4f72bda1eee722cb333e848a568e01c (diff)
downloadwww-05f3c2d58222e70620e38c83be762a120676f983.tar
www-05f3c2d58222e70620e38c83be762a120676f983.tar.gz
www-05f3c2d58222e70620e38c83be762a120676f983.tar.bz2
www-05f3c2d58222e70620e38c83be762a120676f983.tar.xz
www-05f3c2d58222e70620e38c83be762a120676f983.zip
Update Catalan translation
Diffstat (limited to 'langs/ca/community.po')
0 files changed, 0 insertions, 0 deletions
class='rem' style='width: 16.7%;'/> -rw-r--r--examples/gui/files/halt-local.service23
-rwxr-xr-xexamples/gui/files/halt.local24
-rw-r--r--examples/minimal/config/build.cfg4
-rw-r--r--examples/minimal/files/halt-local.service23
-rwxr-xr-xexamples/minimal/files/halt.local24
-rw-r--r--examples/xfce/config/build.cfg4
-rw-r--r--examples/xfce/files/halt-local.service23
-rwxr-xr-xexamples/xfce/files/halt.local24
9 files changed, 0 insertions, 153 deletions
diff --git a/examples/gui/config/build.cfg b/examples/gui/config/build.cfg
index 3948478..ef691ba 100644
--- a/examples/gui/config/build.cfg
+++ b/examples/gui/config/build.cfg
@@ -112,10 +112,6 @@ my $config = {
# Disable suspend and hibernate in live mode.
[ 'files/50-disable-suspend.pkla', '/etc/polkit-1/localauthority/50-local.d/50-disable-suspend.pkla', { mode => 0644, no_install => 1 } ],
- # Eject medium before live system halt/reboot.
- [ 'files/halt-local.service', '/etc/systemd/system/halt-local.service', { mode => 0644, no_install => 1 } ],
- [ 'files/halt.local', '/sbin/halt.local', { mode => 0755, no_install => 1 } ],
-
# sysconfig files for first boot after install.
[ 'files/draklive-install.d/finish-install', '/etc/draklive-install.d/sysconfig/finish-install', { mode => 0644 } ],
[ 'files/draklive-install.d/firstboot', '/etc/draklive-install.d/sysconfig/firstboot', { mode => 0644 } ],
diff --git a/examples/gui/files/halt-local.service b/examples/gui/files/halt-local.service
deleted file mode 100644
index bc7f284..0000000
--- a/examples/gui/files/halt-local.service
+++ /dev/null
@@ -1,23 +0,0 @@
-# This file is part of systemd.
-#
-# systemd is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-
-[Unit]
-Description=/sbin/halt.local Compatibility
-ConditionFileIsExecutable=/sbin/halt.local
-DefaultDependencies=no
-After=shutdown.target
-Before=final.target
-
-[Service]
-Type=oneshot
-ExecStartPre=-/bin/kill -54 1
-ExecStartPre=-/usr/bin/plymouth quit
-ExecStartPre=-/usr/bin/chvt 1
-ExecStart=/sbin/halt.local
-TimeoutSec=0
-StandardOutput=tty
-RemainAfterExit=yes
diff --git a/examples/gui/files/halt.local b/examples/gui/files/halt.local
deleted file mode 100755
index e27ad1d..0000000
--- a/examples/gui/files/halt.local
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl
-
-use lib qw(/usr/lib/libDrakX);
-use MDK::Common;
-use detect_devices;
-use c;
-
-my ($device) = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+/live/media\s+iso9660!;
-$device or exit;
-
-# try to put halt/reboot in cache, if not called directly from them
-# mount is also needed by end of /etc/init.d/halt
-system("$_ --help &>/dev/null") foreach qw(halt mount reboot);
-
-my $f = detect_devices::tryOpen($device);
-# see openCdromTray() from install::any
-ioctl($f, c::CDROM_LOCKDOOR(), 0); # unlock door
-ioctl($f, c::CDROMEJECT(), 0);
-
-system("clear");
-print "\n\n\nPlease press <Enter> (or <CTRL><J>) once the medium is removed.\n";
-system("read < /dev/console");
-
-ioctl($f, c::CDROMCLOSETRAY(), 0);
diff --git a/examples/minimal/config/build.cfg b/examples/minimal/config/build.cfg
index 089467e..21ac42f 100644
--- a/examples/minimal/config/build.cfg
+++ b/examples/minimal/config/build.cfg
@@ -117,10 +117,6 @@ my $config = {
# Disable suspend and hibernate in live mode.
[ 'files/50-disable-suspend.pkla', '/etc/polkit-1/localauthority/50-local.d/50-disable-suspend.pkla', { mode => 0644, no_install => 1 } ],
-
- # Eject medium before live system halt/reboot.
- [ 'files/halt-local.service', '/etc/systemd/system/halt-local.service', { mode => 0644, no_install => 1 } ],
- [ 'files/halt.local', '/sbin/halt.local', { mode => 0755, no_install => 1 } ],
],
remove_files => [
(map { "/etc/modprobe.preload.d/$_" } qw(cpufreq pcmcia rfswitch)),
diff --git a/examples/minimal/files/halt-local.service b/examples/minimal/files/halt-local.service
deleted file mode 100644
index bc7f284..0000000
--- a/examples/minimal/files/halt-local.service
+++ /dev/null
@@ -1,23 +0,0 @@
-# This file is part of systemd.
-#
-# systemd is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-
-[Unit]
-Description=/sbin/halt.local Compatibility
-ConditionFileIsExecutable=/sbin/halt.local
-DefaultDependencies=no
-After=shutdown.target
-Before=final.target
-
-[Service]
-Type=oneshot
-ExecStartPre=-/bin/kill -54 1
-ExecStartPre=-/usr/bin/plymouth quit
-ExecStartPre=-/usr/bin/chvt 1
-ExecStart=/sbin/halt.local
-TimeoutSec=0
-StandardOutput=tty
-RemainAfterExit=yes
diff --git a/examples/minimal/files/halt.local b/examples/minimal/files/halt.local
deleted file mode 100755
index e27ad1d..0000000
--- a/examples/minimal/files/halt.local
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl
-
-use lib qw(/usr/lib/libDrakX);
-use MDK::Common;
-use detect_devices;
-use c;
-
-my ($device) = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+/live/media\s+iso9660!;
-$device or exit;
-
-# try to put halt/reboot in cache, if not called directly from them
-# mount is also needed by end of /etc/init.d/halt
-system("$_ --help &>/dev/null") foreach qw(halt mount reboot);
-
-my $f = detect_devices::tryOpen($device);
-# see openCdromTray() from install::any
-ioctl($f, c::CDROM_LOCKDOOR(), 0); # unlock door
-ioctl($f, c::CDROMEJECT(), 0);
-
-system("clear");
-print "\n\n\nPlease press <Enter> (or <CTRL><J>) once the medium is removed.\n";
-system("read < /dev/console");
-
-ioctl($f, c::CDROMCLOSETRAY(), 0);
diff --git a/examples/xfce/config/build.cfg b/examples/xfce/config/build.cfg