Changeset c630d09 in nscp
- Timestamp:
- 05/13/12 23:13:25 (13 months ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2
- Children:
- 1cc8566
- Parents:
- df109f9
- Files:
-
- 5 edited
-
changelog (modified) (1 diff)
-
modules/CheckExternalScripts/commands.hpp (modified) (3 diffs)
-
modules/Scheduler/schedules.hpp (modified) (3 diffs)
-
version.hpp (modified) (1 diff)
-
version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
changelog
rd6c3131 rc630d09 4 4 * Fixa dependonservice LanManWorkStation (old win) 5 5 * Fix RtlStringFromGUID problem on NT4 6 7 2012-05-13 MickeM 8 * Take 2 on fixing the empty command parsing. 6 9 7 10 2012-05-07 MickeM -
modules/CheckExternalScripts/commands.hpp
r67c6d04 rc630d09 120 120 static void read_object(boost::shared_ptr<nscapi::settings_proxy> proxy, object_type &object) { 121 121 object.set_command(object.value); 122 std::wstring alias; 122 123 //if (object.alias == _T("default")) 123 124 // Pupulate default template! … … 144 145 _T("COMMAND"), _T("Command to execute")) 145 146 146 (_T("alias"), sh::wstring_key(& object.alias),147 _T("ALIAS"), _T("The alias (service name) to report to server") )147 (_T("alias"), sh::wstring_key(&alias), 148 _T("ALIAS"), _T("The alias (service name) to report to server"), true) 148 149 149 150 (_T("parent"), nscapi::settings_helper::wstring_key(&object.parent, _T("default")), … … 166 167 settings.register_all(); 167 168 settings.notify(); 169 if (!alias.empty()) 170 object.alias = alias; 168 171 169 172 /* -
modules/Scheduler/schedules.hpp
rdf109f9 rc630d09 117 117 object.channel = _T("NSCA"); 118 118 } 119 std::wstring alias; 119 120 120 121 nscapi::settings_helper::settings_registry settings(proxy); … … 129 130 _T("SCHEDULE COMMAND"), _T("Command to execute"), object.alias == _T("default")) 130 131 131 (_T("alias"), sh::wstring_key(& object.alias),132 (_T("alias"), sh::wstring_key(&alias), 132 133 _T("SCHEDULE ALIAS"), _T("The alias (service name) to report to server"), object.alias == _T("default")) 133 134 … … 173 174 settings.notify(); 174 175 176 if (!alias.empty()) 177 object.alias = alias; 175 178 /* 176 179 BOOST_FOREACH(const object_type::options_type::value_type &kvp, options) { -
version.hpp
rdf109f9 rc630d09 1 1 #ifndef VERSION_HPP 2 2 #define VERSION_HPP 3 #define PRODUCTVER 0,4,0,17 24 #define STRPRODUCTVER "0,4,0,17 2"5 #define STRPRODUCTDATE "2012-05- 08"3 #define PRODUCTVER 0,4,0,173 4 #define STRPRODUCTVER "0,4,0,173" 5 #define STRPRODUCTDATE "2012-05-13" 6 6 #endif // VERSION_HPP -
version.txt
rdf109f9 rc630d09 1 1 version=0.4.0 2 build=17 23 date=2012-05- 082 build=173 3 date=2012-05-13
Note: See TracChangeset
for help on using the changeset viewer.








