summary refs log tree commit diff
path: root/nixos/modules/services/backup/bacula.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:11:32 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:11:32 +0200
commit19ffa212af8763e84e09e1e56fba99e1d7124d84 (patch)
treef205e5a65dbea20a0bc79fa45ef75f6c577dffdf /nixos/modules/services/backup/bacula.nix
parentc738b309eea83669bbd590f7293db5d725233193 (diff)
downloadnixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar
nixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.gz
nixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.bz2
nixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.lz
nixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.xz
nixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.zst
nixlib-19ffa212af8763e84e09e1e56fba99e1d7124d84.zip
types.uniq types.int -> types.int
types.int already implies uniqueness.
Diffstat (limited to 'nixos/modules/services/backup/bacula.nix')
-rw-r--r--nixos/modules/services/backup/bacula.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/backup/bacula.nix b/nixos/modules/services/backup/bacula.nix
index c2255f688181..9e3ae66f808b 100644
--- a/nixos/modules/services/backup/bacula.nix
+++ b/nixos/modules/services/backup/bacula.nix
@@ -182,7 +182,7 @@ in {
  
       port = mkOption {
         default = 9102;
-        type = types.uniq types.int;
+        type = types.int;
         description = ''
         	This specifies the port number on which the Client listens for Director connections. It must agree with the FDPort specified in the Client resource of the Director's configuration file. The default is 9102.
         '';
@@ -237,7 +237,7 @@ in {
  
       port = mkOption {
         default = 9103;
-        type = types.uniq types.int;
+        type = types.int;
         description = ''
           Specifies port number on which the Storage daemon listens for Director connections. The default is 9103.
         '';
@@ -302,7 +302,7 @@ in {
  
       port = mkOption {
         default = 9101;
-        type = types.uniq types.int;
+        type = types.int;
         description = ''
           Specify the port (a positive integer) on which the Director daemon will listen for Bacula Console connections. This same port number must be specified in the Director resource of the Console configuration file. The default is 9101, so normally this directive need not be specified. This directive should not be used if you specify DirAddresses (N.B plural) directive.
         '';