Advertisement
Guest User

Untitled

a guest
Jul 16th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. root@nocip:/opt/noc# cat etc/upgrade.conf
  2. #!/bin/sh
  3. #
  4. # NOC upgrade system configuration
  5. #
  6.  
  7. #
  8. # ENABLED:
  9. # Enable upgrade system.
  10. # Read and configure following file
  11. # and change to ENABLED=yes
  12. #
  13. ENABLED=yes
  14.  
  15. #
  16. # NOC_USER:
  17. # Default system user for NOC daemons
  18. # Leave empty for current user
  19. #
  20. NOC_USER=noc
  21.  
  22. #
  23. # NOC_GROUP:
  24. # Default system group for NOC daemons
  25. # Leave empty for current user's group
  26. #
  27. NOC_GROUP=noc
  28.  
  29. #
  30. # REPO:
  31. # Hg repo to pull updates
  32. #
  33. REPO=https://bitbucket.org/nocproject/noc
  34.  
  35. #
  36. # FOLLOW:
  37. # Tag to pull from repo
  38. # Possible values
  39. # none - disable pull
  40. # tip - fetch last revision
  41. # release - fetch last release
  42. # rXXXX - fetch revision XXXX
  43. # XXXXX - fetch tag XXXXX
  44. #
  45. FOLLOW=tip
  46.  
  47. #
  48. # LOCAL_REPO:
  49. # Path to local repos (configs, dns zones, etc)
  50. #
  51. LOCAL_REPO=/srv/noc/repo
  52.  
  53. #
  54. # BACKUP:
  55. # Path to the backup directory
  56. #
  57. BACKUP=/srv/noc/backup
  58.  
  59. #
  60. # LOG:
  61. # Path to the LOG directory
  62. #
  63. LOG=/srv/noc/log
  64.  
  65. #
  66. # PIDDIR:
  67. # Path to the pidfiles directory
  68. #
  69. PIDDIR=/srv/noc/log/run
  70.  
  71. #
  72. # PostgreSQL database connection
  73. #
  74. PG_DB=noc
  75. PG_USER=noc
  76. PG_PASSWORD=thenocproject
  77. PG_HOST=
  78. PG_PORT=
  79. #
  80. # Mongodb database connection
  81. #
  82. MONGO_DB=noc
  83. MONGO_USER=noc
  84. MONGO_PASSWORD=thenocproject
  85. MONGO_HOST=
  86. MONGO_PORT=
  87. #
  88. # Additional index to search noc-pkg-* packages
  89. #
  90. PIP_FIND_LINKS=http://cdn.nocproject.org/pkg/simple/
  91. #
  92. # Install debugging versions of JS packages
  93. #
  94. INSTALL_DEBUG=yes
  95. #INSTALL_DEBUG=no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement