ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Alex Borisov <abmagic@mail.ru>
To: community@altlinux.ru
Subject: [Comm] Re[2]: [Comm] Перенос юзеров со Спринга в Мастер
Date: Fri, 24 Jan 2003 10:07:48 +0300
Message-ID: <553032987.20030124100748@mail.ru> (raw)
In-Reply-To: <200301240939.13265.mylinux02@mail.ru>

PS> 24 Январь 2003 08:35, aek написал:
>> Hello community,
>> 
>>   /etc/group
>>   /etc/gshadow
>>   /etc/passwd
>>   я думаю переносятся один к одному
>>   (куски с юзерами)
>>   а вот как поступить с /etc/shadow ???
>>   он на Мастере ПУСТОЙ и ОДИН (без /etc/shadow- ).
  
PS>    см. /etc/tcb/
PS>    можешь написать простой скриптик для переноса из /etc/shadow в /etc/tcb/* 
PS> ну или вручную если пользователей не много :)

можно например вот-так:
--------------
   
#!/usr/bin/perl

# Переносим пользователей с сохранением их старых паролей
# с одного сервера на другой. На старом сервере был единый 
# файл shadow, на новом исользуется система TCB
#
# в текущем каталоге должны быть файлы passwd и shadow
# 

open(PASS, "<./passwd") || die "Файл не найден";
while (<PASS>)
    {
    ($login, $pass, $uid, $gid, $name, $home_dir, $shell) = split(':');
    print "$login $name\n";
    system("/usr/sbin/useradd $login -u '$uid' -c '$name' -d '$home_dir'"); 
    system("cat ./shadow | grep $login > /etc/tcb/$login/shadow");
    
    }
close(PASS);   




-- 
Best regards,
 Alex



  parent reply	other threads:[~2003-01-24  7:07 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-24  4:35 aek
2003-01-24  5:39 ` Pavel Stoliarov
2003-01-24  6:22   ` [Comm] Re[2]: " aek
2003-01-24  6:26     ` Ilya Palagin
2003-01-24  7:07   ` Alex Borisov [this message]
2003-01-24  7:09     ` [Comm] " Alexey Tourbin
2003-01-24  7:58       ` [Comm] " Alex Borisov
2003-01-24  9:49     ` [Comm] Re: [Comm] Re[2]: [Comm] " aek
2003-01-26 23:57 ` Dmitry V. Levin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=553032987.20030124100748@mail.ru \
    --to=abmagic@mail.ru \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git