Guest User

Untitled

a guest
Dec 21st, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. case node['fmw']['shortname']
  2. when /oid1/
  3. IS_SECOND_OID_INSTALL = "false"
  4. CONFIGURE_OVD_COMPONENT = "true"
  5. CREATE_OID_SCHEMA = "true"
  6. USE_EXISTING_SCHEMA = "false"
  7. when /oid2/
  8. IS_SECOND_OID_INSTALL = "true"
  9. CONFIGURE_OVD_COMPONENT = "false"
  10. CREATE_OID_SCHEMA = "false"
  11. USE_EXISTING_SCHEMA = "true"
  12. if CREATE_OID_SCHEMA == "true" do
  13. CREATE_DATABASE_USERNAME == true
  14. CREATE_DATABASE_PASSWORD == true
  15. end
  16.  
  17. #Provide the database user name. The user must have SYSDBA user privileges in order to create the metadata repository.
  18. CREATE_DATABASE_USERNAME=USERNAME
  19.  
  20. #Provide the database password. The user must have SYSDBA user privileges in order to create the metadata repository.
  21. CREATE_DATABASE_PASSWORD=<%= @admin_pass %>
Add Comment
Please, Sign In to add comment