Advertisement
Guest User

Untitled

a guest
May 17th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # NOC upgrade system configuration
  4. #
  5.  
  6. #
  7. # ENABLED:
  8. # Enable upgrade system.
  9. # Read and configure following file
  10. # and change to ENABLED=yes
  11. #
  12. ENABLED=yes
  13.  
  14. #
  15. # NOC_USER:
  16. # Default system user for NOC daemons
  17. # Leave empty for current user
  18. #
  19. NOC_USER=noc
  20.  
  21. #
  22. # NOC_GROUP:
  23. # Default system group for NOC daemons
  24. # Leave empty for current user's group
  25. #
  26. NOC_GROUP=noc
  27.  
  28. #
  29. # REPO:
  30. # Hg repo to pull updates
  31. #
  32. REPO=https://bitbucket.org/nocproject/noc
  33.  
  34. #
  35. # BRANCH:
  36. # Branch to follow
  37. # Possible values are:
  38. # default - production releases
  39. # develop - stable development branch
  40. # release/<version> - pre-release testing branch
  41. # feature/<name> - feature development branch
  42. # hotfix/<version> - hotfix development branch
  43. # none - do not pull and apply repo updates
  44. #
  45. BRANCH=default
  46.  
  47. #
  48. # LOCAL_REPO:
  49. # Path to local repos (configs, dns zones, etc)
  50. #
  51. LOCAL_REPO=/var/noc/repo
  52.  
  53. #
  54. # BACKUP:
  55. # Path to the backup directory
  56. #
  57. BACKUP=/var/noc/backup
  58.  
  59. #
  60. # LOG:
  61. # Path to the LOG directory
  62. #
  63. LOG=/var/log/noc
  64.  
  65. #
  66. # PIDDIR:
  67. # Path to the pidfiles directory
  68. #
  69. PIDDIR=/var/run/noc
  70.  
  71. #
  72. # PostgreSQL database connection
  73. #
  74. PG_DB=noc
  75. PG_USER=noc
  76. PG_PASSWORD=fpowsrj83245
  77. PG_HOST=10.133.252.250
  78. PG_PORT=5432
  79. #
  80. # Mongodb database connection
  81. #
  82. MONGO_DB=noc
  83. MONGO_USER=noc
  84. MONGO_PASSWORD=sdfgoie
  85. MONGO_HOST=10.133.252.250
  86. MONGO_PORT=27017
  87. #
  88. # Additional index to search noc-pkg-* packages
  89. #
  90. PIP_FIND_LINKS=https://cdn.nocproject.org/pkg/simple/
  91. #
  92. # Install debugging versions of JS packages
  93. #
  94. # INSTALL_DEBUG=yes
  95. INSTALL_DEBUG=yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement