Fix some uid/gid attributes to match the actual user/group name

This commit is contained in:
Eelco Dolstra 2014-04-29 10:51:42 +02:00
parent 0e23a175de
commit a142d68b43
5 changed files with 11 additions and 11 deletions

View File

@ -52,13 +52,13 @@
osgi = 34; osgi = 34;
tor = 35; tor = 35;
cups = 36; cups = 36;
foldingAtHome = 37; foldingathome = 37;
sabnzbd = 38; sabnzbd = 38;
kdm = 39; kdm = 39;
ghostOne = 40; ghostone = 40;
git = 41; git = 41;
fourStore = 42; fourstore = 42;
fourStoreEndpoint = 43; fourstorehttp = 43;
virtuoso = 44; virtuoso = 44;
rtkit = 45; rtkit = 45;
dovecot2 = 46; dovecot2 = 46;
@ -173,8 +173,8 @@
osgi = 34; osgi = 34;
ghostOne = 40; ghostOne = 40;
git = 41; git = 41;
fourStore = 42; fourstore = 42;
fourStoreEndpoint = 43; fourstorehttpd = 43;
virtuoso = 44; virtuoso = 44;
dovecot2 = 46; dovecot2 = 46;
prayer = 49; prayer = 49;

View File

@ -54,7 +54,7 @@ with lib;
users.extraUsers = singleton users.extraUsers = singleton
{ name = endpointUser; { name = endpointUser;
uid = config.ids.uids.fourStoreEndpoint; uid = config.ids.uids.fourstorehttp;
description = "4Store SPARQL endpoint user"; description = "4Store SPARQL endpoint user";
# home = stateDir; # home = stateDir;
}; };

View File

@ -45,7 +45,7 @@ with lib;
users.extraUsers = singleton users.extraUsers = singleton
{ name = fourStoreUser; { name = fourStoreUser;
uid = config.ids.uids.fourStore; uid = config.ids.uids.fourstore;
description = "4Store database user"; description = "4Store database user";
home = stateDir; home = stateDir;
}; };

View File

@ -57,14 +57,14 @@ in
users.extraUsers = singleton users.extraUsers = singleton
{ name = ghostUser; { name = ghostUser;
uid = config.ids.uids.ghostOne; uid = config.ids.uids.ghostone;
description = "Ghost One game server user"; description = "Ghost One game server user";
home = stateDir; home = stateDir;
}; };
users.extraGroups = singleton users.extraGroups = singleton
{ name = ghostUser; { name = ghostUser;
gid = config.ids.gids.ghostOne; gid = config.ids.gids.ghostone;
}; };
services.ghostOne.config = '' services.ghostOne.config = ''

View File

@ -44,7 +44,7 @@ in {
users.extraUsers = singleton users.extraUsers = singleton
{ name = fahUser; { name = fahUser;
uid = config.ids.uids.foldingAtHome; uid = config.ids.uids.foldingathome;
description = "Folding@Home user"; description = "Folding@Home user";
home = stateDir; home = stateDir;
}; };