]>
git.ipfire.org Git - thirdparty/util-linux.git/log
Sami Kerola [Sat, 26 Jul 2014 10:53:06 +0000 (11:53 +0100)]
swaplabel: move swapon-common to include directory
This fixes the following compiler warning.
disk-utils/swaplabel.c:175:2: warning: implicit declaration of function
'get_swap_prober' [-Wimplicit-function-declaration]
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Mon, 28 Jul 2014 10:26:17 +0000 (12:26 +0200)]
build-sys: add -Wimplicit-function-declaration to compiler warnings
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Mon, 28 Jul 2014 09:57:10 +0000 (11:57 +0200)]
fdisk: fix -l [<device>]
* don't use err(), but warn(), so don't stop after the first error
* display all errors when "-l <device> ..." specified
* display only EACCES errors when list whole disks from
/proc/partitions ("fdisk -l" )
Reported-by: Boian Bonev <bbonev@ipacct.com>
Addresses: https://github.com/karelzak/util-linux/pull/106
Signed-off-by: Karel Zak <kzak@redhat.com>
Lauri Nurmi [Sat, 26 Jul 2014 09:35:54 +0000 (12:35 +0300)]
hwclock: use pluralized translations.
Lauri Nurmi [Sat, 26 Jul 2014 09:43:42 +0000 (12:43 +0300)]
more: replace ad-hoc support for plurals with gettext plurals.
Lauri Nurmi [Fri, 11 Jul 2014 18:51:03 +0000 (21:51 +0300)]
sfdisk: use pluralized translation.
Benno Schulenberg [Fri, 25 Jul 2014 12:55:04 +0000 (14:55 +0200)]
various: erase all traces of the long-obsolete ext filesystem
The same argument as for xiafs: dead for over ten years.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Fri, 25 Jul 2014 12:55:03 +0000 (14:55 +0200)]
various: erase all traces of the long-obsolete xiafs
The xiafs filesystem was removed from the kernel fifteen years ago,
and any kernel that contained it reached end of life ten years ago.
It's time to stop mentioning it in the mount man page and elsewhere.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Fri, 25 Jul 2014 12:55:02 +0000 (14:55 +0200)]
docs: improve some wordings in the man page of mount
Also sort the command-line options alphabetically
(with the customary exception of -V and -h).
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Fri, 25 Jul 2014 12:55:01 +0000 (14:55 +0200)]
docs: fix some things that were overlooked during the first pass
Mainly more option sorting, some formatting adjustments, and the adding
of a missing --version here and there.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Andreas Henriksson [Fri, 25 Jul 2014 12:22:01 +0000 (14:22 +0200)]
cfdisk: reenable cursor when quitting
After quitting cfdisk (built with slang) the cursor would be
missing at the command prompt.
Reported-by: Martin Steigerwald <Martin@Lichtvoll.de>
Addresses-Debian-Bug: #755991
Signed-off-by: Andreas Henriksson <andreas@fatal.se>
Andreas Henriksson [Thu, 24 Jul 2014 19:28:44 +0000 (21:28 +0200)]
tests: Fall back on host/getent in ts_resolve_host
Neither dig or nslookup would be my first option for resolving,
so add the host utility of ISC/bind fame and the (slow) getent
utility shipped with libc.
This extends the conditions introduced in ...
commit
a98de9696e1a898f925c9154e5693e73aec0779d
Author: Ruediger Meier <ruediger.meier@ga-group.nl>
Date: Wed Jun 11 19:28:20 2014 +0200
tests: skip some last tests if no dns support
... and should help us not skip certain tests when we have
network connection but none of dig or nslookup available.
Signed-off-by: Andreas Henriksson <andreas@fatal.se>
Bernhard Voelker [Thu, 24 Jul 2014 13:30:54 +0000 (15:30 +0200)]
mcookie: avoid format warning
"gcc (SUSE Linux) 4.8.1
20130909 [gcc-4_8-branch revision 202388]"
issued the following warning:
warning: format ‘%zu’ expects argument of type ‘size_t’, \
but argument 3 has type ‘int’ [-Wformat=]
* misc-utils/mcookie.c (main): Change format from %zu to %d.
RAND_BYTES is an enum, thus of type int.
Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
Karel Zak [Fri, 25 Jul 2014 11:08:41 +0000 (13:08 +0200)]
mount: clean up -t info in mount.8 and fstab.5
* remove the huge and unmaintained list of filesystems, just keep
only very basic FS types in the man pages
* add info about command delimited lists to fstab.5
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 25 Jul 2014 10:40:16 +0000 (12:40 +0200)]
tests: add mount -t test
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 25 Jul 2014 10:28:34 +0000 (12:28 +0200)]
libmount: don't use /{proc,ext}/filesystems when more fs types specified
# mkfs.ext4 /dev/sda1
# mount -t foo,bar /dev/sda1 /mnt
successfully mount the device, this is unexpected as extN is no
between wanted (by -t specified) filesystems.
Summary about -t:
* "mount -t foo" mount(2) with "foo" type
* "mount -t foo,bar" try mount(2) with "foo" or "bar"
* "mount -t foo,auto" try mount(2) with "foo" or ask libblkid for
the type
* "mount -t nofoo,bar" try types from /{etc,proc}/filesystems, but
exclude "foo" and "bar"
Note that more filesystems may be specified in fstab (as comma
delimited list). The stuff from fstab is always interpreted as list
and never as a pattern ("no" prefix makes no sense in fstab).
Reported-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>
Andreas Henriksson [Wed, 23 Jul 2014 17:39:02 +0000 (19:39 +0200)]
build-sys: fix switch_root/pivot_root cut-n-paste error in configure.ac
The "linux only" check for pivot_root seems to suffer from
a cut-n-paste problem from the earlier switch_root part.
Signed-off-by: Andreas Henriksson <andreas@fatal.se>
Benno Schulenberg [Tue, 22 Jul 2014 20:56:27 +0000 (22:56 +0200)]
textual: fix some typos and inconsistencies in various messages
Fixing plain typos, miswordings, inconsistent periods, some missing
angular brackets, and a proper pluralization (even when it involves
a constant, because for some languages the precise value matters).
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Karel Zak [Tue, 22 Jul 2014 10:29:38 +0000 (12:29 +0200)]
swapon: don't print errors as data in smartcols table
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Tue, 22 Jul 2014 10:24:56 +0000 (12:24 +0200)]
swapon: don't use empty strings for smartcols output
The libsmartcols is smart enough to accept NULL for empty fields
rather than empty strings.
Signed-off-by: Karel Zak <kzak@redhat.com>
Sami Kerola [Tue, 1 Jul 2014 20:40:04 +0000 (21:40 +0100)]
swapon: share get_swap_prober() with swaplabel to print uuid and label
The swapon(8) listing was almost complete, apart from label and uuid.
This change moves the code from swaplabel(8) to shared scope to be used
for printouts in other swap commands, such as swapon.
Adding this feature to lsblk(8) was a consideration, but lsblk is not
interested of swapfiles, so the swapon seems like a better option to add
this information.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Karel Zak [Tue, 22 Jul 2014 10:12:52 +0000 (12:12 +0200)]
Merge branch 'rename' of git://github.com/kerolasa/lelux-utiliteetit
* 'rename' of git://github.com/kerolasa/lelux-utiliteetit:
tests: add rename(1) return value check
rename: use function pointer to select file or symlink operation
rename: continue despite something failed
tests: add rename(1) checks
tests: use ts_cd everywhere to change direcrory
tests: add function to change directory reliable way
rename: allow renaming in subdirectories
Karel Zak [Tue, 22 Jul 2014 10:01:50 +0000 (12:01 +0200)]
Merge branch 'master' of https://github.com/yurchor/util-linux
* 'master' of https://github.com/yurchor/util-linux:
Fix typos in user visible messages
Karel Zak [Tue, 22 Jul 2014 09:58:21 +0000 (11:58 +0200)]
Merge branch 'ioclt' of https://github.com/lanurmi/util-linux
Karel Zak [Tue, 22 Jul 2014 09:12:05 +0000 (11:12 +0200)]
build-sys: release++ (v2.25)
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Tue, 22 Jul 2014 09:11:01 +0000 (11:11 +0200)]
docs: update v2.25-ReleaseNotes
Signed-off-by: Karel Zak <kzak@redhat.com>
Benno Schulenberg [Mon, 21 Jul 2014 21:56:02 +0000 (23:56 +0200)]
docs: bring one more man page closer to standard formatting
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Karel Zak [Tue, 22 Jul 2014 08:42:32 +0000 (10:42 +0200)]
docs: update AUTHORS file
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Tue, 22 Jul 2014 08:39:11 +0000 (10:39 +0200)]
po: merge changes
Signed-off-by: Karel Zak <kzak@redhat.com>
Wylmer Wang [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update zh_CN.po (from translationproject.org)
Trần Ngọc Quân [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update vi.po (from translationproject.org)
Yuri Chornoivan [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update uk.po (from translationproject.org)
Rafael Ferreira [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update pt_BR.po (from translationproject.org)
Jakub Bogusz [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update pl.po (from translationproject.org)
Benno Schulenberg [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update nl.po (from translationproject.org)
Takeshi Hamasaki [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update ja.po (from translationproject.org)
David Prévot [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update fr.po (from translationproject.org)
Lauri Nurmi [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update fi.po (from translationproject.org)
Antonio Ceballos Roa [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update es.po (from translationproject.org)
Mario Blättermann [Tue, 22 Jul 2014 08:33:18 +0000 (10:33 +0200)]
po: update de.po (from translationproject.org)
Joe Hansen [Tue, 22 Jul 2014 08:33:17 +0000 (10:33 +0200)]
po: update da.po (from translationproject.org)
Petr Písař [Tue, 22 Jul 2014 08:33:17 +0000 (10:33 +0200)]
po: update cs.po (from translationproject.org)
Karel Zak [Mon, 21 Jul 2014 14:09:38 +0000 (16:09 +0200)]
prlimit: remove repeating words from man page
Signed-off-by: Karel Zak <kzak@redhat.com>
Benno Schulenberg [Mon, 21 Jul 2014 11:37:11 +0000 (13:37 +0200)]
cfdisk: actually translate the partition types in the menu
[kzak@redhat.com: - translate also GPT types]
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>
Benno Schulenberg [Sun, 20 Jul 2014 21:15:47 +0000 (23:15 +0200)]
docs: bring eight more man pages closer to standard formatting
Also, for chcpu, the options -c, -d, -e and -g are mutually exclusive,
and for the mode argument the option -p is not optional. For ldattach,
use the standard options separator ", " instead of the unusual " | ".
And add the missing --version to several of the pages. Besides, improve
the wording and the consistency of the spacing.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Sun, 20 Jul 2014 21:15:46 +0000 (23:15 +0200)]
docs: bring five more man pages closer to standard formatting
Also, for renice, adapt the descriptions to the behaviour: the -g,
-p and -u options do not actually need to be followed by any ID.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Karel Zak [Mon, 21 Jul 2014 08:27:25 +0000 (10:27 +0200)]
mount: update info about mtab in mount.8
Reported-by: Bernhard Voelker <mail@bernhard-voelker.de>
Signed-off-by: Karel Zak <kzak@redhat.com>
Sami Kerola [Sat, 28 Jun 2014 18:11:30 +0000 (19:11 +0100)]
tests: add rename(1) return value check
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Sun, 25 May 2014 23:41:06 +0000 (00:41 +0100)]
rename: use function pointer to select file or symlink operation
Add separate functions to different functionality, and add a function for
the stuff that is in common for both.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Sat, 28 Jun 2014 17:42:49 +0000 (18:42 +0100)]
rename: continue despite something failed
Try to do all file operations even when one or some of them fail, and
use exit value to inform what happen.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Sun, 25 May 2014 21:52:24 +0000 (22:52 +0100)]
tests: add rename(1) checks
Check basic file moves, symlink relinking, and both file moves and
symlinks when operations are have directory in destination path.
Reviewed-by: Ruediger Meier <sweet_f_a@gmx.de>
Reviewed-by: Karel Zak <kzak@redhat.com>
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Sun, 22 Jun 2014 09:43:00 +0000 (10:43 +0100)]
tests: use ts_cd everywhere to change direcrory
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Sun, 22 Jun 2014 09:20:54 +0000 (10:20 +0100)]
tests: add function to change directory reliable way
Without arguments bash cd will move to $HOME. Ensure also that when
directory is assumed to be changed the current directory and intented
destination are the same location.
Reference: http://www.spinics.net/lists/util-linux-ng/msg09509.html
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Sun, 25 May 2014 21:17:25 +0000 (22:17 +0100)]
rename: allow renaming in subdirectories
Earlier the rename(1) considered path as possible string to be renamed,
could lead to an issue with none existing destination. See below for
demonstration of this issue. After this change all directory elements
are ignored when the match finding happens.
$ cd $(mktemp -d)
$ mkdir aa ab
$ touch a{a,b}/aa
$ rename -v a x */aa
rename: aa/aa: rename to xa/aa failed: No such file or directory
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Karel Zak [Fri, 18 Jul 2014 11:22:52 +0000 (13:22 +0200)]
prlimit: clean up columns[] usage
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 11:22:52 +0000 (13:22 +0200)]
swapon: clean up columns[] usage
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 11:22:52 +0000 (13:22 +0200)]
losetup: clean up columns[] usage
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 11:17:48 +0000 (13:17 +0200)]
lslogins: more robust usage of columns[]
For more details see commit
dcc8dbdc8137cb3da5100158639b565565b89875 .
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 11:22:52 +0000 (13:22 +0200)]
wdctl: clean up columns[] usage
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 11:17:48 +0000 (13:17 +0200)]
findmnt: more robust usage of columns[]
For more details see commit
dcc8dbdc8137cb3da5100158639b565565b89875 .
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 11:08:45 +0000 (13:08 +0200)]
lslocks: clean up columns[] usage
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 15:17:46 +0000 (17:17 +0200)]
lsblk: check number of used columns
The current code does not check size of the columns[] array when add
the next on command line specified column. We check the array size for
"-o <columns>" but not for another options.
Old version:
$ for x in $(seq 0 100); do echo "-t"; done | xargs lsblk
xargs: lsblk: terminated by signal 11
new version:
$ for x in $(seq 0 100); do echo "-t"; done | xargs lsblk
lsblk: too many columns specified, the limit is 83 columns.
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 13:35:52 +0000 (15:35 +0200)]
lsblk: differentiate between infos[] and columns[]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Fri, 18 Jul 2014 10:59:46 +0000 (12:59 +0200)]
Merge branch 'patch-1' of https://github.com/bneijt/util-linux
Karel Zak [Fri, 18 Jul 2014 10:54:40 +0000 (12:54 +0200)]
cfdisk: use /dev/sda by default
.. this all is for backward compatibility.
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 13:19:34 +0000 (15:19 +0200)]
wall: add fallback for failed sysconf()
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 13:12:35 +0000 (15:12 +0200)]
umount: fix memory leak [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 13:07:49 +0000 (15:07 +0200)]
fstrim: fix memory leak [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 13:00:17 +0000 (15:00 +0200)]
findmnt: fix memory leak [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:47:20 +0000 (14:47 +0200)]
sulogin: don't use uninitialized struct sigaction [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:42:00 +0000 (14:42 +0200)]
sulogin: check result of the open() [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:39:11 +0000 (14:39 +0200)]
last: fix is_phantom() logic [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:31:05 +0000 (14:31 +0200)]
libmount: add missing assert()
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:20:03 +0000 (14:20 +0200)]
libblkid: comparing an array to null is not useful [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:11:28 +0000 (14:11 +0200)]
lib/procutils: check fgets() return value [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 12:08:18 +0000 (14:08 +0200)]
lib/loopdev: comparing an array to null is not useful [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Benno Schulenberg [Wed, 16 Jul 2014 21:09:50 +0000 (23:09 +0200)]
docs: bring four more man pages closer to standard formatting
In the IPC man pages strictly adhere to the memory, queue, semaphore
order, to reduce disorientation. And for 'ipcmk', the arguments for
-M and -S and -p are not optional. Add --version for 'mountpoint'.
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Sami Kerola [Wed, 16 Jul 2014 20:54:58 +0000 (21:54 +0100)]
fstrim: avoid TOCTOU race
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Wed, 16 Jul 2014 20:54:57 +0000 (21:54 +0100)]
fallocate: avoid unnecessary computation
Where POSIX_FADV_SEQUENTIAL and HAVE_POSIX_FADVISE are not available it
is waste of resources to have variables that are meaningful only for
posix_fadvise(). Also initialize the variables immediately to correct
values, and since cachesz is never changed mark it read only.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Sami Kerola [Wed, 16 Jul 2014 20:54:56 +0000 (21:54 +0100)]
lib/colors: remove memory leak
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Benno Schulenberg [Wed, 16 Jul 2014 11:09:53 +0000 (13:09 +0200)]
build-sys: harmonize some indentation
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Wed, 16 Jul 2014 11:09:52 +0000 (13:09 +0200)]
docs: improve the wording and conventions in the man-page howto
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Wed, 16 Jul 2014 11:09:51 +0000 (13:09 +0200)]
docs: improve the formatting and wording of two man pages
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Karel Zak [Thu, 17 Jul 2014 11:59:01 +0000 (13:59 +0200)]
cfdisk: make code more readable for analyzers [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Thu, 17 Jul 2014 11:46:27 +0000 (13:46 +0200)]
cfdisk: fix possible memory leak [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
A. Bram Neijt [Wed, 16 Jul 2014 19:07:04 +0000 (21:07 +0200)]
Add missing paragraph mark before -f
the sections on -P and -f where glued together.
Benno Schulenberg [Tue, 15 Jul 2014 21:07:38 +0000 (23:07 +0200)]
docs: bring some more man pages closer to standard formatting
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Tue, 15 Jul 2014 21:07:37 +0000 (23:07 +0200)]
docs: bring a few more man pages closer to standard formatting
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Tue, 15 Jul 2014 21:07:36 +0000 (23:07 +0200)]
docs: bring several man pages closer to standard formatting
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Karel Zak [Wed, 16 Jul 2014 09:25:03 +0000 (11:25 +0200)]
lslogins: make --notruncate more robust
- keep coldescs[] read-only
- don't expect that only COL_GECOS uses truncate flag
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Wed, 16 Jul 2014 09:19:09 +0000 (11:19 +0200)]
lslogins: add --noheadings
That's fatal mistake that this option which is required for script
is missing.
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Wed, 16 Jul 2014 09:04:53 +0000 (11:04 +0200)]
lslogins: use bit-array, cleanup SELinux code
Signed-off-by: Karel Zak <kzak@redhat.com>
Benno Schulenberg [Mon, 14 Jul 2014 20:53:36 +0000 (22:53 +0200)]
cfdisk: restore the license that was lost in January
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>
Benno Schulenberg [Mon, 14 Jul 2014 20:53:35 +0000 (22:53 +0200)]
docs: mount -o nouser is not useful, be clearer about that
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Benno Schulenberg [Mon, 14 Jul 2014 20:53:34 +0000 (22:53 +0200)]
docs: improve wording and formatting of the man page of cfdisk
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Sami Kerola [Mon, 14 Jul 2014 17:52:05 +0000 (18:52 +0100)]
tests: add kill --queue check
Correction. The final failure to catch signal exit should not use
exiter() function.
--->8----
From: Sami Kerola <kerolasa@iki.fi>
Date: Mon, 14 Jul 2014 18:35:56 +0100
Subject: [PATCH] tests: add kill --queue check
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Karel Zak [Tue, 15 Jul 2014 11:12:23 +0000 (13:12 +0200)]
cfdisk: fix warning usage, improve 's' help
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Tue, 15 Jul 2014 11:01:56 +0000 (13:01 +0200)]
cfdisk: accept 's' as well as 'S' for sectors
Reported-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Tue, 15 Jul 2014 10:41:30 +0000 (12:41 +0200)]
cfdisk: make menus sensitive to ESC
Reported-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>
Karel Zak [Tue, 15 Jul 2014 10:32:38 +0000 (12:32 +0200)]
cfdisk: use \n for messages on stdout and stderr
Reported-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>