]> git.ipfire.org Git - thirdparty/util-linux.git/blame - tests/ts/chfn/gecos
tests: (chfn) force to bash
[thirdparty/util-linux.git] / tests / ts / chfn / gecos
CommitLineData
02238bff
RS
1#!/bin/bash
2
3#
4# Copyright (C) 2019 Radka Skvarilova <rskvaril@redhat.com>
5#
6# This file is part of util-linux.
7#
8# This file is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This file is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18
19TS_TOPDIR="${0%/*}/../.."
20TS_DESC="gecos"
21
22. $TS_TOPDIR/functions.sh
23ts_init "$*"
24
25ts_skip_nonroot
26ts_check_test_command "$TS_CMD_CHFN"
27ts_check_prog "useradd"
28ts_check_prog "userdel"
29
30ts_log "Initialize user"
b2ef4386 31useradd -u 9899 --shell /bin/bash testuser_chfn_test
02238bff
RS
32grep testuser /etc/passwd >> $TS_OUTPUT
33$TS_CMD_CHFN -f test_gecos testuser_chfn_test >>$TS_OUTPUT
34grep testuser /etc/passwd >> $TS_OUTPUT
35userdel --remove testuser_chfn_test &> /dev/null
36ts_finalize