Changeset 1225


Ignore:
Timestamp:
01/16/12 21:49:50 (4 months ago)
Author:
tschmitt
Message:
  • postinst: adduser statt useradd zum Anlegen des Bittorrent Users.
Location:
main/linuxmuster-linbo/branches/testing
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/linuxmuster-linbo/branches/testing/debian/changelog

    r1224 r1225  
    11linuxmuster-linbo (2.0.3-1) unstable; urgency=low 
    22 
    3   * postinst: create bittorrent user as a system user. 
    4  
    5  -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2011 21:09:17 +0100 
     3  * postinst: using adduser instead of useradd to create bittorrent user. 
     4 
     5 -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 16 Jan 2011 21:44:17 +0100 
    66 
    77linuxmuster-linbo (2.0.3-0) unstable; urgency=low 
  • main/linuxmuster-linbo/branches/testing/debian/postinst

    r1224 r1225  
    145145 # add bittorrent user if not present 
    146146 if ! id bittorrent &> /dev/null; then 
    147   useradd -r -c "BitTorrent User" -d /var/lib/bittorrent -g nogroup -r bittorrent 
     147  adduser --gecos "BitTorrent User" --home /var/lib/bittorrent --ingroup nogroup --system bittorrent 
    148148  dpkg-statoverride --add bittorrent nogroup 755 /var/lib/bittorrent 
    149149  dpkg-statoverride --add bittorrent nogroup 755 /var/log/bittorrent 
  • main/linuxmuster-linbo/branches/testing/linbo/etc/linbo-version

    r1215 r1225  
    1 LINBO 2.0.3-0 
     1LINBO 2.0.3-1 
Note: See TracChangeset for help on using the changeset viewer.