- Overview
- Module Description - What the modules do and why it is useful
- Setup - The basics of getting started with cicserver::install and cicserver::icsurvey
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Installs CIC, Interaction Firmware and Media Server silently. Also contains functionality to create ICSurvey files to run the Setup Assistant manually.
Uses ruby to create an xml file with the options pre-populated from a template (.erb) file. Allows quick unattended configuration of CIC.
- Installs CIC, Interaction Firmware and Media Server.
- Warning: not recommended for production environments.
- Creates an .icsurvey file.
- Warning: not recommended for production environments.
If your module requires anything extra before setting up (pluginsync enabled, etc.), mention it here.
The very basic steps needed for a user to get the module up and running.
If your most recent release breaks compatibility or requires particular steps for upgrading, you may wish to include an additional section here: Upgrading (For an example, see http://forge.puppetlabs.com/puppetlabs/firewall).
The very basic steps needed for a user to get the module up and running.
If your most recent release breaks compatibility or requires particular steps for upgrading, you may wish to include an additional section here: Upgrading (For an example, see http://forge.puppetlabs.com/puppetlabs/firewall).
class { 'cicserver::install':
ensure => installed,
survey => 'C:/I3/IC/Manifest/newsurvey.icsurvey', # Where the survey should be generated (and later on, used by the IC Setup Assistant)
installnodomain => true,
organizationname => 'demoorg',
locationname => 'demolocation',
sitename => 'demosite',
dbreporttype => 'db',
dbservertype => 'mssql',
dbtablename => 'I3_IC',
dialplanlocalareacode => '317',
emailfbmc => true,
recordingspath => 'C:/I3/IC/Recordings',
sipnic => 'Ethernet',
outboundaddress => '3178723000',
defaulticpassword => '1234',
licensefile => 'C:/vagrant-data/cic-license.i3lic',
loggedonuserpassword => 'vagrant',
}
class {'cicserver::icsurvey':
path => 'C:/I3/IC/manifest/newsurvey.icsurvey',
installnodomain => true, # set to true if no domain
organizationname => 'organizationname',
locationname => 'locationname',
sitename => 'sitename',
dbreporttype => 'db', # other types will be supported later on (i.e. access)
dbservertype => 'mssql'
dbtablename => 'I3_IC',
dialplanlocalareacode => '317', # only option supported so far
emailfbmc => true,
recordingspath => 'C:/I3/IC/Recordings',
sipnic => 'Ethernet', # use the same name as shown in windows
outboundaddress => '3178723000',
defaulticpassword => '1234', # only valid for users created by ic setup assistant
licensefile => 'C:/I3/IC/iclicense.i3lic',
loggedonuserpassword => 'vagrant',
template => 'cicserver/DefaultSurvey.ICSurvey.erb',
}
class {'cicserver::user':
ensure => installed,
username => 'testuser1', # The new CIC username
password => '1234',
extension => 8001,
pathtoscripts => 'C:/Users/Vagrant/Desktop/Scripts/posh-ic', # Path to the powershell scripts. You can download them here: https://github.com/PierrickI3/posh-ic
cicadminusername => 'vagrant', # CIC user with administrative priviledges
cicadminpassword => '1234',
cicserver => 'testregfr', # your CIC server name
}
class {'cicserver::workgroup':
ensure => installed,
workgroupname => 'testworkgroup1', # The name for the new CIC workgroup
extension => 8001,
members => ['testuser1', 'testuser2']
pathtoscripts => 'C:/Users/Vagrant/Desktop/Scripts/posh-ic', # Path to the powershell scripts. You can download them here: https://github.com/PierrickI3/posh-ic
cicadminusername => 'vagrant', # CIC user with administrative priviledges
cicadminpassword => '1234',
cicserver => 'testregfr', # your CIC server name
}
class {'cicserver::users':
ensure => installed,
cicuserdata => '{"randomidentifier":{"username":"testuser1","password":"1234","extension":"8001"}, "anotherrandomidentifier":{"username":"testuser2","password":"5678","extension":"8003"}}', # JSON data
pathtoscripts => 'C:/Users/Vagrant/Desktop/Scripts/posh-ic', # Path to the powershell scripts. You can download them here: https://github.com/PierrickI3/posh-ic
cicadminusername => 'vagrant', # CIC user with administrative priviledges
cicadminpassword => '1234',
cicserver => 'testregfr', # your CIC server name
}
class {'cicserver::workgroups':
ensure => installed,
cicworkgroupdata => '{"randomidentifier":{"workgroupname":"testworkgroup1","extension":"6001"}, "anotherrandomidentifier":{"workgroupname":"testworkgroup2","extension":"6002"}}', # JSON data
pathtoscripts => 'C:/Users/Vagrant/Desktop/Scripts/posh-ic', # Path to the powershell scripts. You can download them here: https://github.com/PierrickI3/posh-ic
cicadminusername => 'vagrant', # CIC user with administrative priviledges
cicadminpassword => '1234',
cicserver => 'testregfr', # your CIC server name
}
Here, list the classes, types, providers, facts, etc contained in your module. This section should include all of the under-the-hood workings of your module so people know what the module is touching on their system but don't need to mess with things. (We are working on automating this section!)
Only compatible with Windows Tested with Windows 2012 R2
No specific rules. Share/Use/Participate as you wish!
See http://www.inin.com for more information about Interactive Intelligence products.