forked from ClusterLabs/resource-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1251 lines (1223 loc) · 61 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* Fri Mar 6 2020 resource-agents contributors
- stable release 4.5.0
- iSCSILogicalUnit: fix default value for OCF_RESKEY_liot_bstype
- aws-vpc-move-ip: add parameter for role to use to query/update route table
* Fri Feb 28 2020 resource-agents contributors
- release candidate 4.5.0 rc1
- Filesystem: add trigger_udev_rules_if_need() for -U, -L, or /dev/xxx device
- Filesystem: refresh UUID in the start phase
- IPaddr2: add noprefixroute parameter
- IPaddr2: add info to metadata that ipt_CLUSTERIP "iptables" extension is not "nft" backend compatible, and iptables-legacy support for distros that still support it
- IPsrcaddr: replace local rule if using local table, and set src back to primary for device on stop
- IPsrcaddr: fix failure during probe when using destination/table parameters
- LVM-activate: add OCF_CHECK_LEVEL 10 check that can be enabled to verify vg or lv validity with an additional "read 1 byte" test in special cases like iSCSI SAN
- MailTo: fix variable expansion
- SAPInstance: clear the $DIR_EXECUTABLE variable so we catch the situation when we lose the directory with binaries after first sapinstance_init invokation
- aliyun-vpc-move-ip: add support for both 'go' and 'python' versions of Aliyun CLI, and auto-detect which to use by default
- apache: use get_release_id() to detect OS/distro, and fix LOAD_STATUS_MODULE issue
- azure-lb set socat to default on SUSE distributions.
- exportfs: allow multiple exports of same directory
- iSCSILogicalUnit: add liot_bstype to handle block/fileio for targetcli, and change behavior of lio-t with portals which do not use 0.0.0.0
- ldirectord: support sched-flags
- lvmlockd: fix for LVM2 v2.03+ removing lvmetad
- mysql-common: return correct rc during start-action
- oralsnr: allow using the same tns_admin directory for different listeners
- pgsql: Support for PostgreSQL 12
- podman: improve the code for checking if an image exists
- rabbitmq-cluster: ensure we delete nodename if stop action fails
- redis: validate_all: fix file status tests
- spec: add missing requirement (lsb-release)
* Wed Oct 23 2019 resource-agents contributors
- stable release 4.4.0
- NodeUtilization: fix Xen detection and improve logging
* Wed Oct 16 2019 resource-agents contributors
- release candidate 4.4.0 rc1
- All RA: Use _default variables for all parameters
- Build: improvements and fixes to make "make rpm" work on all archs in CI
- CTDB: add support for v4.9+
- Delay: protect grep regex argument from shell globbing
- Filesystem: don't call readlink on path if it doesnt exist
- Filesystem: fix to avoid killing all root user processeswhen bind mounting a directory on /
- Filesystem: improve "/" check for bind mounts
- IPaddr2: fix to work properly with unsanitized IPv6 addresses
- IPsrcaddr: add destination and table parameters
- LVM-activate: add partial-activation support
- LVM-activate: fix monitor might hang due to lvm_validate, which was added by accident
- LVM-activate: move pvscan --cache to validate
- Route: dont fence node when parameters arent set
- apache: check if SUSE binaries are executable
- apache: fix to also detect mod_status.so when it is a symlink
- apache: improve PidFile pattern to support multiple instances
- apache: load status module on SUSE distros
- aws-vpc-route53: improved API error handling and fix to avoid race-condition during probe
- aws-vpc-route53: replace ec2metada with curl to fetch the IP address directly from EC2 metadata
- azure-lb: add support for using socat instead of nc
- docker: improve the check for the docker daemon being up
- exportfs: doc clarification for clientspec format
- gcp-pd-move: add stackdriver_logging parameter
- iSCSILogicalUnit: only create acls if it doesnt exist
- mysql/mariadb/galera: use runuser/su to avoid using SELinux DAC_OVERRIDE
- mysql: add support for SSL replication
- nfsserver: performance improvements for systemd enabled systems
- ora-common: fix to fail when sid parameter is invalid
- podman: generate drop-in dependencies for podman containers
- podman: only use exec to manage container's lifecycle
- rabbitmq-cluster: also restore users/perms/policies when starting in single node mode
- redis: fix master_is_active() erroneously reporting there is master when there is not (fixes issue #1399)
- redis: use optimal password passing method and warning filtering workaround
* Fri Jun 21 2019 resource-agents contributors
- stable release 4.3.0
- Filesystem: remove removed notify-action from metadata
* Fri Jun 14 2019 resource-agents contributors
- release candidate 4.3.0 rc1
- Build: improve to be able to build and install on RHEL 6
- CTDB: add ctdb_max_open_files parameter
- CTDB: fix version string with vendor trailer comparison
- Filesystem: Fix missing mount point due to corrupted mount list
- Filesystem: fix umount not executed in the event of a disk failure
- IPaddr2: add network namespace support
- IPsrcaddr: make proto optional to fix regression when used without NetworkManager
- LVM-activate: align dmsetup report command to standard
- LVM-activate: dont count "No devices" as device in dm_count
- LVM-activate: dont fail initial probe
- LVM-activate: make vgname not uniqe
- LVM-activate: only check locking_type when LVM < v2.03
- LVM-activate: return OCF_NOT_RUNNING on initial probe
- LVM: return $OCF_ERR_GENERIC when start fails
- Maint: introduce optional spellchecking for {short,long}desc (make spellcheck)
- Route: make family parameter optional
- SAPDatabase: metadata: add HANA usage example and improved the Monitor Services defaults documentation
- Squid: fix PID file issue w/newer Squid versions
- aws-vpc-move-ip: add support for multiple network interfaces
- aws-vpc-move-ip: add support for multiple routing tables
- aws-vpc-move-ip: get NETWORK_INTERFACE_ID from metadata instead of using awscli
- aws-vpc-move-ip: improve MAC address detection
- aws-vpc-move-ip: use --query to avoid possible race condition w/old grep implementation
- azure-events: fix implicit bytes conversion that breaks Python 3
- clvm: support exclusive mode
- configure: add Python library detection
- dhcpd: keep SELinux context when copying to chroot
- docker: fail gracefully when command not found
- docker: use --type=container to avoid matches from other types
- dovecot: new RA
- ethmonitor: check if interface exists by link
- galera: Allow empty password for "check_passwd" parameter
- galera: Log message when changing content of grastate.dat file
- galera: ignore safe_to_bootstrap in grastate.dat in some cases
- gcp-vpc-move-route/gcp-vpc-move-vip: fix Python 3 encoding issue
- lxc: add support for lxc-stop
- named: add host_options parameter
- ocf-distro: add regex for RedHat version
- ocf.py: add support for role argument to actions
- ocf: do not log at debug log level when HA_debug is unset (e.g. w/Pacemaker remote)
- openstack*: add support for re-attaching volumes, v3 API
- pgsql: enhance checks in pgsql_real_start to prevent incorrect status
- pgsql: set initial score for primary and hot standby in probe
- podman: avoid double call to podman inspect
- ra-dev-guide: correct notify action documentation
- rabbitmq-cluster: always use quiet flag for eval calls
- rabbitmq-cluster: debug log detailed output when mnesia query fails
- rabbitmq-cluster: ensure node attributes are removed
- rabbitmq-cluster: fix regression in rmq_stop
- redis: Filter warning from stderr when calling 'redis-cli -a'
- tomcat: use systemd on RHEL when catalina.sh is unavailable
- vdo-vol: new RA
- vsftpd: fix missing $ on invalid exit code detected by CI
* Wed Oct 24 2018 resource-agents contributors
- stable release 4.2.0
- apache: fix return value for silent_status
- rabbitmq-cluster: fail monitor when node is in minority partition
- ocf.py: only add s-suffix to timeout and interval
- ZFS: check status without locks when possible
- pgsql: fix to avoid failing on masters re-promote
- azure-events: new RA
* Wed Oct 17 2018 resource-agents contributors
- release candidate 4.2.0 rc1
- CI: fixes for bash path, strncpy in GCC 8 and missing docbook-style-xsl
- CTDB: fix "ctdb_recovery_lock" validation
- CTDB: fix version string comparison for versions containing text (e.g. beta or rc)
- CTDB: fix incorrect DB corruption reports (ensure health check is run)
- Filesystem: support symlink as mountpoint directory
- IPaddr2: return OCF_ERR_GENERIC when failing due to IPv4 address collision
- LVM-activate: fix for dashes in volume group and logical volume names
- LVM-activate: read parameters for stop-action
- LVM-activate: return OCF_ERR_CONFIGURED for incorrect vg_access_mode
- LVM: added missing dash for activation parameters
- README: added links and IRC info
- SAPDatabase: add info to meta-data
- SAPInstance: add monitored services for ENSA2 (bsc#1092384)
- SAPInstance: implement reload action to avoid resource restarts after a non-unique parameter has been changed
- SAPInstance: improve SAP instance profile detection
- SAPInstance: improve stop-action logging
- Squid: use ss if netstat is not available
- VirtualDomain: add stateless support
- VirtualDomain: correctly create logfile and set permissions
- Xen: add utilization support for cpu and hv_memory
- aliyun-vpc-move-ip: new RA
- apache: retry PID check.
- aws-vpc-move-ip: check routing table during monitor probe action
- aws-vpc-move-ip: fix backward-compatibility
- aws-vpc-move-ip: use ip utility to check address
- awseip: fix allocation_id not found error
- awseip: update required IAM role permissions
- awsvip: get network-id from metadata
- awsvip: improve secondary-private-ip query
- configure: add Python path detection
- exportfs: fix square bracket stripping in clientspec
- findif: improve IPv6 NIC detection
- findif: only match lines containing netmasks
- galera: do not call ocf_attribute_target() for meta-data action
- garbd: support netstat and ss
- gcp-pd-move: new RA
- gcp-vpc-move-ip: new RA
- gcp-vpc-move-route: new RA (improved Python version of gcp-vpc-move-ip)
- gcp-vpc-move-vip: new RA
- iSCSITarget: support CHAP authentication for lio-t
- ipsec: add tunnel fallback option
- ldirectord: add manpage to systemd unit file
- lvmlockd: add cmirrord support
- mysql: remove obsolete DEBUG_LOG functionality (bsc#1021689)
- nfsserver: mount based on rpcpipefs_dir parameter
- nfsserver: run prepare_directory after bind_tree and stop var-lib-nfs-rpc_pipefs.mount
- ocf-binaries: use SSH-path detected by configure
- ocf.py: new Python library and dev guide
- openstack-cinder-volume/openstack-floating-ip/openstack-info: new RA's
- oracle: improve dbopen error
- pgsql: create replication slots after promoting master
- pgsql: dont change ownership of /dev/null
- pgsql: support PostgreSQL 11 or later
- podman: new RA
- portblock: support ss and netstat (partial)
- ra-dev-guide: update instructions for GitHub
- rabbitmq-cluster: get cluster status from mnesia during monitor
- rabbitmq-cluster: retry start when cluster join fails
- redis: do not use absolute path in pidof calls
- send_arp: dont use "-Wcast-align" due to false-positive fail on ARM.
- sfex: fix errors with latest gcc
- sg_persist: correctly pickup old keys
- spec: improved path-based Requires
- sybaseASE: new resource agent
- syslog-ng: add Premium Edition 6 and 7 support
- systemd-tmpfiles: configure path with --with-rsctmpdir
* Mon Mar 5 2018 resource-agents contributors
- stable release 4.1.1
- VirtualDomain: properly migrate VMs on node shutdown (bsc#1074014)
- mpathpersist: fixed issue with reservation key parsing in status()
- pgsql: create stats temp directory if it doesnt exist
- pgsql: improved validation for replication mode
* Mon Feb 26 2018 resource-agents contributors
- release candidate 4.1.1 rc1
- awseip/awsvip: improvements (incl multi NIC support)
- Filesystem: add support for cvfs
- redis: add support for tunneling replication traffic
- Raid1: ignore transient devices after stopping a device
- tomcat: fix invalid stop option
- oracle: log warning when using using sysdba instead of "monuser"
- crm_*: use new parameter names
- syslog-ng: fix to make commercial version supported as well
- lvmlockd: change lvm.conf to use lvmlockd
- mariadb: new RA for MariaDB master/slave replication setup with GTID
- mpathpersist: new RA
- lxd-info/machine-info: new RAs
- IPsrcaddr: only check for ifconfig on BSD/Solaris
- CTDB: cope with deprecated "idmap backend" smb.conf option
- CTDB: add new possible location for CTDB_SYSCONFIG
- oracle: fix alter user syntax for set_mon_user_profile
- db2: improve monitor and simplify STANDBY/.../DISCONNECTED
- ocf-shellfuncs: fix fallback name for ocf_attribute_target()
- CTDB: fix initial probe
- jira: new RA
- azure-lb: new RA
- IPsrcaddr: match exact route to avoid failing
* Tue Nov 28 2017 resource-agents contributors
- stable release 4.1.0
- ipsec: new RA
- apache: improved stop action
- db2: fix HADR promote when master failed
- ethmonitor: add intel omnipath support
* Tue Nov 14 2017 resource-agents contributors
- release candidate 4.1.0 rc1
- nfsserver: allow stop to timeout
- LVM-activate: add new RA for LVM activation
- docker: add docker-native healthcheck query
- aws-vpc-route53: Fix tempfile race (bsc#1059312)
- aws-vpc-move-ip: cleanup and improvements
- pgsql: add support for PostgreSQL 10
- rabbitmq-cluster/redis/galera use ocf_attribute_target
- ocf-shellfuncs: add ocf_attribute_target()
- rabbitmq-cluster: Use RMQ_CTL var everywhere instead of rabbitmqctl
- CI: add libxml2-utils to package list
- systemd-tmpfiles: create the resource-agents directory
- rkt: new RA
- lvmlockd: new RA
- galera: fix instance name in master_exists()
- Route: remove debug output
- Route: add family attribute to set address family
- galera: honor "safe_to_bootstrap" flag in grastate.dat
- VirtualDomain: add shutdown_mode attribute
- aws-vpc-route53: new RA (fate#322781)
- awseip/awsvip: fixes and improvements
- ZFS: new RA
- minio: new RA
- CTDB: don't fail on empty persistent directory (bsc#1052577)
- sapdb.sh: add hdbnameserver to monitor services
- VirtualDomain: new attributes migrateuri, remoteuri, migration_user
- Raid1: handle case when mddev is a symlink
- portblock: suppress dd output
- kamailio: fixes and enhancements for v5.0
- ocf-shellfuncs: improve locking (ocf_take_lock())
- anything: create PID directory if it doesnt exist
- anything: allow multiple instances of binfiles to be run (pidfile will be unique)
- mysql: properly detect read-only state
- iSCSILogicalUnit: add emulate_tpu, emulate_3pc and emulate_caw parameters
- fs.sh: fix builds when srcdir and builddir are seperated
- LVM: warn when cache mode is not writethrough
- nginx: fix return code when configfile check fails
- SAPInstance: Add IS_ERS parameter (bsc#1036486)
- systemd: add resource-agents-deps target
- ocf-shellfuncs: simplify ocf_run returned rc
- docker: add mount_points parameter to create directories used by container if they doesnt exist
- IPaddr2: add option for specifying IPv6's preferred_lft
- galera: fix master target during promotion with cluster_host_map
- rabbitmq-cluster: backup and restore policies
- DB2: fix HADR support for DB2 V98+
- pgsql: fix regex to detect async mode
- rabbitmq-cluster: fix to work on Pacemaker remote nodes
- oraasm: new RA for Oracle ASM Disk Groups
- pgsql: fix undefined variable
- ovsmonitor: new RA
- NodeUtilization: new RA
- CTDB: fix for --logfile being replaced with --logging
- pgsql: allow dynamic membership
- redis: wait for pid file to appear after start
- redis: add check and default for redis-check-rdb
- named: add support for rndc options
- docker: deal with image name correctly
- iSCSILogicalUnit: replace openssl with md5sum
- ra-dev-guide: fix description of OCF_ERR_ARGS
- clvm: remove reload action from metadata
- galera: fix the first bootstrap when cluster has no data
- galera: fix permission of temporary log file for mariadb 10.1.21+
- kamailio: add kamctl, kamgroup and extra_options parameters
- ocf_log: use same log format as pacemaker
- pgsql: replace "crm_failcount" with "crm_resource"
- ocf-shellfuncs: ocf_run: avoid shell glob expansion of log messages
- iSCSILogicalUnit: add lio-t IPv6-support
- iSCSILogicalUnit/iSCSITarget: protect targetcli invocations with locks
- mysql: set correct master score after maintenance mode
- varnish: add support for v4.0
* Thu Feb 2 2017 resource-agents contributors
- stable release 4.0.1
- galera: remove "long SST monitoring" support due to corner-case issues
- exportfs: improve regexp handling of clientspec (only strip brackets from edges to support IPv6)
* Tue Jan 31 2017 resource-agents contributors
- stable release 4.0.0
- LVM: fix partial activation detection
- Filesystem: add ZFS support
- specfile: add metadata.rng
- redis: use "CLIENT KILL type normal" to notify clients of master being demoted
- IPaddr2: add IPv4 collision detection
- galera: add "cluster_host_map" parameter to map Pacemaker hostnames to Galera hostnames
- multiple RA: fix grammar, spelling and typos
- pgsql: add support for PostgreSQL 9.6
- rabbitmq-cluster: reset Mnesia and fetch data when joining cluster
* Tue Jan 10 2017 resource-agents contributors
- release candidate 4.0.0 rc1
- CI: add metadata verification
- ocf_mkstatedir: fix path check
- IPaddr2: return success on stop with invalid IP
- Filesystem: check if there are any mounts mounted under the mountpoint
- specfile: make requirements general and update comments
- portblock: use -w (wait) to avoid "insufficient privileges" error
- rabbitmq-cluster: fix dump/restore users for RabbitMQ ver. 3.6.x and newer
- Updated mailing list/wiki references
- pgsql: fix tr replacement for replication slot names
- IPaddr2: log refresh arp packets at debug level instead of info
- IPaddr2: add option to enable sending refresh arp packets in monitor
- findif.sh: fix to ifcheck() to not suppress stdout of "ip"
- galera: prevent promote right after demote
- galera: make last commit parsing compatible with MariaDB 10.1.18+
- specfile: add requires netstat
- multiple RA: fixed issues discovered by ShellCheck
- apache: reduce log spam for success
- rgmanager: fix RNG schema for cluster config
- LVM: add error messages for partial_activation
- slapd: improved stop processing
- docker: clarify limitations of monitor_cmd in parameter description
- redis: restore rundir security context
- docker: reduce monitor log spam
- nfsserver: dont stop rpcbind, as other services might use it
- Filesystem: improved exit reason if mount fails
- Delay: set default startdelay lower than start timeout to avoid timeout with default values
- docker: use docker exec for monitor_cmd if supported
- sapdb.sh add support for HANA Multi-Tenant Databases
- lvm.sh: fix status clustered to check specified logical volume
- sg_persist: do not spill info output to stderr
- sg_persist: allow to run resource agent in debug mode
- sg_persist: fix matching of hex node ids
- tomcat: add systemd support and option to disable it
- oracle: add quotes for monuser and monpassword and inform user to start monuser with C## if it's a container database
- rabbitmq-cluster: allow automatic cluster recovery before forcing it
- nfsserver: systemd tests to make sure all services are running and monitored
- rabbitmq-cluster: add POSIX error codes to detect node failure
- rabbitmq-cluster: forget node before 2nd joining attempt
- exportfs: add IPv6 support
- galera: source settings from /etc/default/clustercheck
- pgsql: fix to adjust stop_escalate time when it is longer than the timeout
- heartbeat/Makefile.am: add missing agents
- exportfs: fix monitor reporting wrong state after the node has been fenced
- Rename ra-dev-guide.txt to ra-dev-guide.asc
- awseip: add support to associate secondary private IP with elastic IP
- garbd: new RA
- ldirectord: fix for IPv4/IPv6 mixed environments
- ocf-tester: fix to allow non-shell based agents.
- nfsserver: add support to detect which init script to use
- ldirectord: run initial check of all services on start to make sure all services always have the correct state
- sapdb.sh: pass start/stop timeouts to saphostctrl
- SAPDatabase: Add START_TIMEOUT and STOP_TIMEOUT parameters
- rabbitmq-cluster: backup and restore RabbitMQ users during resource restart
- iSCSILogicalUnit: add support for rbd store.
- awseip: new RA to manage AWS EC2 elastic IP
- awsvip: new RA to manage AWS EC2 secondary private IP
- oracle: inform user that monprofile must start with C## for container databases
- tickle_tcp: fix "Failed to open raw socket (Invalid argument)" issue
- symlink: handle missing directories in target
- mysql: handle non-standard mysql server port
- VirtualDomain: fix unnecessary error when probing nonexistent domain
- sapdb.sh fix to evaluate parameter DBOSUSER in start and stop
- oracle: fix to be able to recover from ORA-01081
- oralsnr: fix status check fail when username is more than 8 characters long
- galera: don't bootstrap from a node with no grastate.dat when possible
- galera: fix monitoring of joining node for long running SST
- pgagent: new RA
- ocf_shellfuncs: set OCF_RESOURCE_INSTANCE default to "RESOURCE_ID" for meta-data
- ldirectord: add new "servicename" and "comment" options for alert e-mails
- clusterfs.sh / fs.sh: fix .clumanager/statd ownership
- rabbitmq-cluster: forget stopped rmq nodes with notify=true
- apache: ensure readable $TESTCONFFILE and improved error handling for testurl/testregex
- SAPDatabase: support Oracle 12c
- apache: add Debian support
- iSCSITarget: iSER enabled portal support
- SAPInstance: update SAP WebAS version support statement
- ldirectord: don't send "inaccessible real server" e-mails per child in fork=yes mode
* Wed Feb 3 2016 resource-agents contributors
- stable release 3.9.7
- ldirectord: fix unset failcount error
- iscsi: add portal check to open_iscsi_get_session_id()
- galera: use mysql's --tc-heuristic-recover if crash recovery is needed
- nfsserver: fix monitor for systemd
* Wed Jan 20 2016 resource-agents contributors
- release candidate 3.9.7 rc1
- nfsserver.sh: add hostname attribute for NFS export (required for NFSv4+Kerberos support)
- oradg.sh: new RA for Oracle Data Guard
- ocf_shellfuncs: suppress bash specific trace_ra log on dash
- sg_persist: remove uncalled for ocf_run calls
- multiple RA: replace error log messages with calls to ocf_exit_reason
- nfsserver: only do redhat specific stuff on redhat
- exportfs: don't increment fsid for single directory
- Filesystem: add tmpfs support
- netfs.sh: move defaults to metadata
- nfsserver: /var/lock/subsys is non-standard, check for it first
- nagios: new RA
- docker: check for errors in the container name
- mysql: fix grep failure on MySQL 5.6 or higher when checking read_only variable
- VirtualDomain: new attributes migration_speed and migration_downtime
- fs: remove not-working tmpfs support
- vm.sh: add migrate_options parameter
- nfsserver: Use rpc-statd.service for NFS locking in EXEC_MODE=3 (bsc#955114)
- nfsserver: Add EXEC_MODE for systemd without nfs-lock.service (bsc#955114)
- IPaddr2: Add IPv6 DAD collision detection
- Filesystem: add overlay as supported filesystem
- ldirectord: dns_check and fallbackcommand enhancements
- IPaddr2: fix potential syntax error on if-then-else
- SAPDatabase: add Oracle 12 to list of supported databases (bsc#953991)
- mysql-common.sh: fix issue where "removing old PID file" wasnt logged
- mysql-common.sh: when mysql has been stopped, mysql stop returns success
- mysql.sh: wait up to startup_wait seconds before failing if mysqld startup is slow
- orainstance.sh: fix 90s wait/killing of databases containing the name of the database being killed, and added cleanup code to kill remaining listener process
- ip.sh: Use DAD to check for IPv6 address collision
- iSCSITarget: fix to only create one IQN and add portals to it
- galera: document the bootstrap flow
- galera: start joining nodes during 'monitor' to allow long-running SST
- galera: add support for MYSQL_HOST and MYSQL_PORT from /etc/sysconfig/clustercheck
- redis: fix password parser
- pgsql fix exec_sql errors like "unknown variable select pg_ " in dash
- pgsql: fix get_my_location() sql regression
- docker: fix image variable name
- pgsql: Fix return code override in pgsql_real_start()
- slapd: add "maxfiles" parameter to set max number of open files (for ulimit -n)
- redis: use required client password when set
- send_arp: fix for infiniband, re-merge from upstream iputils arping
- CTDB: Preserve smb.conf permissions (bsc#935253)
- lxc: fix emergency stop functionality on 1.0
- tomcat: use runuser instead of su for SELinux enforcing mode
- pgsql: use runuser intead of su command for SELinux enforcing mode
- docker: image name check fixes
- iSCSITarget: properly create portals for lio-t implementation
- iSCSILogicalUnit: when deleting a LUN or initiator fails with lio-t, proceed with warning
- iSCSILogicalUnit: return OCF_NOT_RUNNING on monitor if backing path does not exist
- iSCSILogicalUnit: add check for leftover target/core entries for lio-t
- pgsql: delete old replication slot when creating a new slot.
- Filesystem: support RozoFS
- orainstance.sh: interpret listener stop results correctly
- dhcpd: use correct default chroot for RHEL based systems
- LVM: allow vgck failures if partial_activation is true
- redis: avoid 0 byte dump.rdb start failures
- docker: fix container_exist test
- redis: fixed start operation if replication sync takes > 20 seconds
- ethmonitor: add link_status_only option for skipping RX counter and arping tests
- clvm: fix issue with only first option of daemon_options being used
- IPsrcaddr: return correct error code during stop when misconfigured
- clvm: activate_vgs option for enable/disable of automatic vg activation
- galera: properly redetect bootstrap after demote
- galera: clear last know sequence number any time promote is even attempted
- asterisk: fix return code
- galera: retrieve last sequence number without using read-only mode
- redis: add wait_last_known_master option
- redis: only connect to active master instances
- redis: do not attempt to demote if redis is dead
- redis: reliable shutdown.
- pgsql: add support for replication slots
- redis: set executable bit to be able to greate docs (make rpm)
- rabbitmq-cluster: fix rmq_join_list() to only return online nodes
- rabbitmq-cluster: new RA
- Filesystem: support overlayfs
- sg_persist: use default binary setting in meta-data
- dnsupdate: use nsupdate_opts parameter
- nfsserver: merge options into existing /etc/sysconfig/nfs
- portblock: portno param can be a string like 137,138
- portblock: replace ancient heartbeat config with crm configure
- portblock: clarify TCP RST vs ICMP port unreachable
- VirtualDomain: enforce C locale in force_stop
- redis: retry on unknown error when starting
- redis: remove stop timeout and add placeholder master during election period
- CTDB: Change default socket location to CTDB's expected default.
- multiple RA: make sure that the pidfile directory exist
- multiple RA: create state-directory writable by the application
- orainstance.sh: Handle ORA-* error messages
- redis: new RA
* Thu Jan 29 2015 resource-agents contributors
- stable release 3.9.6
- VirtualDomain: add migrate_options parameter
- VirtualDomain: enforce C locale in status
- ocf-shellfuncs: add printenv to RA trace
- nginx: allow different URLs for level 10 and 20 monitor
* Tue Jan 20 2015 resource-agents contributors
- release candidate 3.9.6 rc1
- VirtualDomain: add sync_config_on_stop to sync the config to
other nodes
- mysql.sh: Allow MySQL to run as user other than mysql
- fs-lib.sh: Fix missed detection of write failure
- iscsi: run iscsi discovery only when necessary
- VirtualDomain: save the config before virsh undefine
(bnc#891915)
- sg_persist: new RA
- ldirectord: Add Install section for systemd unit file.
- kamilio: new RA
- findif.sh: Use the most specific matching route
- LVM: volgrpname is unique (meta-data update)
- ldirectord: Get correct user for sending email (bnc#910497)
- iSCSILogicalUnit: do not set write_back when creating
backstore/block
- portblock: Feature: reset_tcp_on_unblock_stop
- nfsserver: prevent error messages on platforms without rpcuser
- Xen: fix regression with xm and quoting (lf#2671)
- lxc: re-add LXCpre1.0 logic
- lxc: fix for missing lxc-ps command
- Route: some unique attributes are not unique (meta-data)
- IPaddr2 findif: accept dotted quad netmask
- VirtualDomain: For Xen, prefer xl to xen-list (boo#901453)
- Xen: Use xl list $domain return code in status check
(boo#901453)
- pgsql: PostgreSQL 9.3 compatibility for unix_socket_directories
- lvm_by_vg.sh: Only strip tag on stop if we are owner
- ocf-shellfuncs: set HA_LOGD depending on HA_use_logd
- mysql: avoid use of check_binary in common validation function.
- mysql: report error when validation fails during monitor yet
pid is still active
- docker: new RA
- mysql: do not report success on 'stop' if validation fails
- anything: fix output redirection
- mysql: fix unexpected operation error that caused by MySQL
client timeout.
- Middle: anything: Prevent stop failure, even if the job takes
time to stop.
- doc: Add pcs to man page example section
- multiple RA: exit reason support
- Build: add --compat-habindir option for HA_BIN backward
compatibility
- iSCSITarget: monitor operation must pass before start is
considered complete
- iSCSILogicalUnit: monitor operation must pass before start is
considered complete
- iSCSILogicalUnit: Fixes the check for pre-existing LUN ACLs
- iSCSITarget: fixes syntax error caused by targetcli update
- Filesystem: when loading kernel modules wait for filesystem to
initialize
- ethmonitor: add infiniband status monitoring support
- Xinetd: refine exit codes when xinetd is stopped
- Xen: Properly quote domain name in call to create
- Xen: Use xenstore-ls to get status if available
- Xen: Replace use of xm with xl (bnc#882548)
- oracle: fix setting monitor user profile for other languages
(nls)
- apache: Revised fix for init script reference on SUSE
(bnc#884674)
- VirtualDomain: Try xenstore-ls if no emulator is set
(bnc#885292)
- galera: new RA
- VirtualDomain: Add support for qemu-dm as emulator (bnc#885292)
- CTDB: add ctdb_rundir parameter and create on startup
- VirtualDomain: new parameter save_config_on_stop to enable
saving running VM's configuration
- fs-lib.sh: Force kill processes with access to shared libraries
on mount point
- iSCSILogicalUnit: add targetcli support
- Filesystem: Add force_unmount option
- nfsserver: regenerate statd state file before starting nfs
- nfsnotify: new RA
- nfsserver: introducing nfs_no_notify option for suppressing
reboot notifications
- nfsserver: Keep statd directories synced with ha backup
- oracle: reset MONUSR password if expired
- oracle: try as sysdba if monitor as MONUSR fails
- oracle: Make monitoring user configurable (bnc#850589)
- oralistener.sh: Do not fail during stop if listener has already
stopped
- nfsserver: Add options for explicitly setting nfs daemon ports
- vsftpd: new RA
- fs-lib.sh: Fix usage of findmnt to work for filesystems
containing bind mounts
- exportfs: allow multiple exports
- ldirectord: Update .spec file with systemd support (bnc#863250)
- ldirectord: Add systemd unit file (bnc#863250)
- nfsserver: Do not require shared info directory when cloned
- nfsserver: Allow dynamically setting rpc.nfsd options.
- iscsi: iscsi status fails with open-iscsi with support for
flash (bnc#878039)
- Med: rgmanager/fs: typo preventing passing some mount opts
- nfsserver.sh: add an optional option for the rpc.statd
listening port
- Feature: addition of bind-mount resource agent for rgmanager
- exportfs: Do not fail during monitor and stop operations if dir
has trailing slash
- nfsserver: Do not fail monitor if lock services are enabled
- nfsserver: let systemd service files handle lock notifications
- vm.sh: 'no_kill' option for preventing auto destruction of vm
after timeout period
- vm.sh: Monitor kvm resources without requiring libvirtd to be
up
- nfsserver: preserve statd directory permissions during
sm-notify or else lock recovery fails
- kamailio: new RA
- nfsserver.sh: On stop, kill sm-notify so /var/lib/nfs/statd can
be unmounted
- db2: Report OCF_ERR_GENERIC instead of OCF_NOT_RUNNING when
instance is not completely up
- named.sh: Fix issues running named daemon as a non-root user
- db2.sh: rgmanager wrapper for the heartbeat db2 agent
- CTDB: do not fail monitor operation when ctdb socket does not
exist
- exportfs: set unlock_on_stop_default=1 (bnc#864263)
- dnsupdate: new RA
- clvm: new RA
- mysql: handle $secs_behind = NULL
- dhcpd: Added a restart-function
- high: conntrackd: allow probe to return OCF_RUNNING_MASTER
- VirtualDomain: check process table for qemu-system-* too, not
just qemu-kvm
- VirtualDomain: avoid running "virsh uri" if hypervisor is set
- apache.sh: Add ability to set custom httpd binary
- db2: Allow db2 agent to work without crm_master binary
- VirtualDomain: Attempt to determine vm status even when libvirt
is unavailable
- VirtualDomain: Fixes parsing domain name from xml file.
- fs-lib.sh: Fixes failure to unmount local fs when process runs
with cwd inside fs mount
- ldirectord: Fix sockaddr_in6 redefined error
- Pure-FTPd: Create pid directory if needed
- VirtualDomain: support more virsh domstate output formats
- varnish: Added support for ulimit -l and ulimit -n
- lxc: support up-to-date lxc-ps versions
- tomcat: Override default tomcat config with resource options
- nfsserver: nfsserver not starting due to missing etab file
- tomcat: Avoid unnecessary force kill of tomcat on stop
- tomcat: Avoid race condition in reading pid file on stop
- slapd: find the correct default slapd config in fedora
- tomcat: Detect start script location
- pgsql: Support for non-standard port and library locations
- fix netfs unmount/self_fence integration
- Med: oracledb.sh: Remove quotes around listener name
- IPaddr2/findif.sh: Do a sanity check only on start and
validate-all
- ldirectord: Disable HTTPS SSL certificate hostname checking
- tomcat: Monitor rotatelogs process and restart when it is
stopped
- jboss: Monitor rotatelogs process and restart when it is
stopped
- mysql: Fix for the issue of detecting an unconfigured slave
with empty master_host since setting empty master_host is not
allowed with 5.5
- IPaddr2/findif.sh: Robust parameter checking for 'nic'
- VirtualDomain: Ensure it is possible to manage a libvirt domain
defined outside of VirtualDomain
- VirtualDomain: Fix ability to use default libvirt hypervisor
without explicitly setting agent attribute
- tomcat-6.sh: Fixes setting TOMCAT_USER correctly
- tomcat-s.sh: Do not fail on stop if config validation fails.
- fs-lib.sh: Removes usage of fuser -kvm from fs-lib.sh based
agents.
- ldirectord: Use an alarm for LDAP check to ensure it times out
- exportfs: stop with no directory should succeed
- Xen: retry domain lookup in repeating monitor and stop
- Fixes lvm metadata corruption caused when activating by lv
using tags.
- ldirector: fix using service name instead of port number
(bnc#836759)
- Filesystem: remove SLES10 compatibility code
- Raid1: disallow md raid arrays as clone resources to avoid data
corruption
- apache: put back config file existence test
- VirtualDomain: Do not attempt graceful shutdown if force_stop
is enabled
- Med: oracledb.sh: Fix process name grep in exit_idle
- VirtualDomain: use virsh create instead of define to start it
non-persistent
- eDir88: multiple IP support
- apache: better handling of not installed apache
- jboss: add jboss_base_dir parameter to support multi-instances
on JBoss 6
- jboss: stop the JBoss daemon by sending a signal on JBoss 6
- jboss: add run_command parameter to change the start up script
- jboss: add jboss_version parameter to support JBoss 6
- tomcat: use root as the default for tomcat_user instead of
RUNASIS mode
- tomcat: multiple tomcat instances based on CATALINE_BASE
- pound: add parameter maxfiles to set ulimit
- apache: remove unnecessary and imperfect checks from
validate_all (bnc#827927)
- pgsql: set only one node into sync mode when using 3 nodes or
higher
- Med: oracledb.sh: Set RESTART_RETRIES back to 0
- Raid1: stop arrays even with block device file missing
(bnc#821861)
- oracle/oralsnr: use /bin/sh in sudo calls (bnc#825517)
- apache: Properly check meta_timeout variable during graceful
stop
- Raid1: set MDADM_NO_UDEV appropriately if udev is not used
- Raid1: wait for udevd to settle (bnc#821861)
- iSCSILogicalUnit: add tgt specific parameters bstype, bsoflags,
device_type
- apache: Attempt graceful stop before -TERM signal
- LVM: Warn user if initrd is older than lvm.conf when using
exclusive activation with tags
- LVM: Exclusive activation without clvmd using filtering with
tags.
- named: Attempt to autogen /etc/rndc.key using rndc-confgen tool
- mysql: really use log setting (bnc#823095)
- mysql: test properly for failed process start (bnc#823095)
- Med: Don't preserve SELinux context when copying files to
/var/lib/nfs/sm
- Med: Cleanup oracledb.sh rgmanager agent and add support for
Oracle 11g
- Med: Cleanup oralistener.sh and add support for Oracle 11g
- Med: Cleanup orainstance.sh and add support for Oracle 11g
- fs-lib.sh: Faster filesystem start/stop through use of
'findmnt' command for 'is_mounted' function
- named.sh: Addition of update-source option.
- LVM: Retry exclusive activation after deactivating vg
cluster-wide
- LVM: Retry deactivating vg allowing udev to settle
- ip.sh: Fixes usage of ipv6 addresses with uppercase lettering
- LVM: Verify setup on start plus verify exclusive activation is
possible.
- Route: add IPv6 support
- build: Place resource state information in /var/run/... by
default
- DRBD: remove deprecated drbd agent.
- fs-lib.sh: Always honor self_fence option when
force_unmount="on"
- postgres-8: Shutdown postgres with SIGINT before forcing
SIGQUIT
- tools: send_arp.libnet: reuse ARP packets (debian#701914)
- ethmonitor: correctly detect when the network is unplugged.
- Raid1: do not test for device existence in the stop operation
(bnc#821861)
- mysql: Attempt to auto-detect mysql binary default location.
- VirtualDomain: Support saving and restoring virtual machine
snapshot state files
- nfsserver: Cleanup shared nfs dir mount
- nfsserver: Enable file locking daemon when systemd is being
used
- nfsserver: Maintain SELinux permissions on failover for nfs v3
lock state
- nfsserver: Improve support for v3 file lock recovery
- nfsserver: Add systemd unit-file support when init scripts are
not present
- VirtualDomain: Properly detect defined lxc domains
* Thu Feb 7 2013 Linux-HA contributors
- stable release 3.9.5
- IPaddr2: support nic:iflabel format in nic parameter
- VirtualDomain: allow for custom migrateport
* Wed Jan 30 2013 Linux-HA contributors
- release candidate 3.9.5 rc1
- ocf-shellfuncs: RA tracing
- IPaddr2: make sure that some ARP send program runs
- pgsql: add check_wal_receiver parameter
- pgsql: support starting as Hot Standby
- nfsserver: improve rpc.statd support
- nfsserver: add option -n for rpc.statd (bnc#794479)
- nfsserver: make the retry time for sm-notify configurable
- nfsserver: make sm-notify running in the foreground configurable
- exportfs: handle '<world>' exportfs embelishment for '*' (bnc#791690)
- jboss: set JAVA_OPTS correctly
- pound: use correct default for control-binary
- pound: No error when stopping pound and no pound is running
- Squid: support systems using IPv6
- Xinetd: do not fail in stop if the daemon is not running
- Xinetd: improve finding Xinetd process (thanks to Vadym Chepkov)
- SendArp: add background parameter
- SendArp: fix monitor
- ocft: print the actual case names when testing
- ocft: make only the updated test-case file
- ocft: add "incremental" mode (ocft test -i)
- include a copy of LGPL license file
* Tue Nov 22 2012 Linux-HA contributors
- stable release 3.9.4
- IPaddr2: fix waiting the completion of IPv6 address allocation
- zabbixserver: RA for zabbix servers management
* Tue Nov 13 2012 Linux-HA contributors
- release candidate 3.9.4 rc1
- ocf-rarun: add the RA driver
- IPaddr2: use better test for infiniband (bnc#783353)
- IPaddr2: replace the findif binary by findif.sh
- IPaddr2: add IPv6 support
- IPaddr2: really send arps in background if requested
- IPaddr2: use send_arp instead of ipoibarping if not available
- Filesystem: include ceph in the list of non-blockdev filesystems
- Raid1: stop processes using raiddev
- Raid1: manage multiple arrays
- Raid1: discover block size for dd (bnc#781137)
- exportfs: cleanup exportfs cache on stop (bnc#770210)
- iscsi: don't fail on stop of the iscsi server fails
- iscsi: use iscsiadm -m session -r in stop
- iscsi: do discovery in start only
- iscsi: check session status in monitor
- iscsi: add try_recovery parameter
- oracle: ignore password expiry warning in monitor (bnc#770250)
- oracle: connect as a regular user in monitor
- pgsql: add option recovery_end_command
- Xen: repair node_ip_attribute use
- SAPDatabase: improvement of cleanup of saphostctrl process
- SAPInstance: monitor-master not advertised (bnc#782482)
- SAPInstance: don't wait for timeout if the stop attempt failed
- SAPInstance: failes on sapcontrol message Unauthorized (bnc#782486)
- mysql-proxy: copy in-depth monitoring action from the mysql resource agent
- mysql-proxy: add test_table, test_user and test_passwd parameters
- mysql-proxy: implement "parameters" parameter
- mysql-proxy: add the 'plugins' parameter
- mysql-proxy: version specific checks
- mysql-proxy: admin plugin auto loading
- mysql-proxy: perform SELECT for OCF_CHECK_LEVEL 20 only
- mysql-proxy: create pid/socket directories if needed
- conntrackd: resync from other hosts in start
- slapd: Gracefully handle config check during probe
- tomcat: Correction of the time-out level of the stop processing.
- tomcat: Correction of the process alive monitoring.
- ldirectord: Added READDQUIESCENT parameter
- sfex: fix sfex_init for 64-bit big endian platforms
- SendArp: exit with the right code when not properly configured
- Squid: fix getting PIDs of squid processes (lf#2653)
- portblock: use end-of-word instead of space at the end of the line
- named: use pgrep instead of searching in ps(1) output
- named: fix monitor if named_rootdir is set to /
- VIPArip: fix exit codes
- VIPArip: make start idempotent
- tools: add test-findif.sh
- tools: add send_ua binary for IPv6 support in IPaddr2
- ocft: new test for Raid1
* Fri May 25 2012 Linux-HA contributors
- stable release 3.9.3
- dhcpd: new RA to manage ISC DHCP servers
- Filesystem: add nfs4 to the list of well known types
- IPaddr2: fix regression introduce in d93b5fd, nic=lo always
"stopped"
- iSCSILogicalUnit: correctly match for target IQN and backing
device name (iet and tgt)
- jboss: implememnt rotating of console log
- mysql: improve handling of reset slave
- oracle, oralsnr: get rid of eval
- slapd: pass bind_dn correctly to ldapsearch
* Wed May 16 2012 Linux-HA contributors
- release candidate 3.9.3 rc1
- asterisk: new resource agent
- named: new RA to manage bind servers
- pound: new RA for Pound HTTP/HTTPS reverse-proxy and
load-balancer
- rsyslog: new RA to manage rsyslog servers
- slapd: new RA to manage OpenLDAP servers
- varnish: new resource agent
- apache: add support for IPv6 in monitor
- apache: create /var/run/apache2 if it doesn't exist
- apache: fix sysconfig includes & enable status for default SUSE
conf
- conntrackd: test for socket existence in monitor instead of
process grep
- conntrackd: rename parameter "conntrackd" to "binary"
- CTDB: Add smb_fileid_algorithm parameter (bnc#696978)
- CTDB: Improve monitor op (check output of ctdb status,
bnc#712192)
- CTDB: Set ctdb_start_as_disabled=no by default (bnc#712410,
required by samba 3.6)
- exportfs: allow expanding the fsid parameter to produce correct
exportfs options
- exportfs: don't grow /var/lib/nfs/rmtab indefinitely
- exportfs: fix monitor action for special characters and common
suffixes
- Filesystem: add support for glusterfs (lf#2620)
- Filesystem: add tmpfs to the list of supported filesystems
- Filesystem: allow to force cloning for local mounts
- Filesystem: don't use direct dd option in monitor depth 20 for
non-blockdevice fs
- Filesystem: fix determining if the device is a block device
- Filesystem: improve read/write checks for CHECK_LEVEL 10, 20
- Filesystem: repair the fast_stop parameter use (its value was
always false)
- Filesystem: support ceph
- Filesystem: remove a status file only when OCF_CHECK_LEVEL is
set to 20
- IPaddr: add back the local_start/stop_script code
- IPaddr: remove colon at the end of the interface name
- IPv6addr: always use the provided nic and cidr_netmask when
specified
- IPv6addr: handle a link-local address properly in send_ua
- iscsi: do not rely on iscsid.startup being set correctly
(bnc#751783)
- iscsi: proceed if iscsid is not running if iscsid.startup is
present in iscsid.conf
- iSCSILogicalUnit: fix default for scsi_sn
- iSCSITarget: treat an empty "implementation" parameter
specially
- jboss: add the java_opts parameter for java options
- ldirectord: precedence error with perl v5.8.8 in IPv6 code
- LVM: drop vgck(8) from monitor
- LVM: force dmevent monitoring for clones
- LVM: use ls instead of vgdisplay in status
- lxc: fix LXC_status to work with lxc-0.7.5 or later
- mysql: improve replication support
- mysql: check mysql status more thoroughly before stopping
- mysql: fix validation return codes
- mysql: support 5.5 slave status message format
- nfsserver: Support of multiple IP addresses (bnc#684143)
- nfsserver: don't run sm-notify in foreground (bnc#759616)
- ocf-shellfuncs: fix loglevel variable scope in ha_log
- ocft: new tests for named, IPv6addr, oracle, Xinetd
- ocft: several improvements
- oracle: improve managing IPC objects
- oracle: improve matching instance specific files and processes
- pgsql: support for replication
- postfix: multiple fixes
- Raid1: support for multiple MD arrays, as specified in raidconf
- SAPDatabase: add support for Sybase ASE and SAP HANA database
- SAPDatabase: correcting the unique values of RAs parameters
- SAPDatabase: replace method for checking responsiveness of
saphostexec
- SAPDatabase: version 2.00 make use of saphostagent
- SAPInstance : correcting the unique values of RAs parameters
- slapd: always set the exit code correctly in monitor
- tomcat: remove pidfile before start, it may prevent some tomcat
releases from starting
- VirtualDomain: add a functionality that modifies utilization of
resource automatically
- VirtualDomain: if the configuration file is missing on stop
exit with success
- VirtualDomain: honor virsh "in shutdown" state
- Xen: add support for HVM ACPI graceful shutdown
- Xen: wait in migrate_from for the migration to finish instead
of bailing out immediately
- Tools: findif: Use most specific matching route (bnc#740738)
- Tools: send_arp.libnet: fix for big endian platforms
(bnc#721334)
- doc: add the RA developer's guide
* Wed Jun 29 2011 Dejan Muhamedagic <[email protected]> and others
- stable release 3.9.2
- ethermon: new resource agent
- iscsi: fix regression in 3.9.1 for open-iscsi version 2.0-872 (lf#2562)
- pgsql: fix regression in 3.9.1 in directories on probes
- VirtualDomain: if there's no config exit on stop with success
- doc: add sfex_init(8) man page
* Wed Jun 15 2011 Dejan Muhamedagic <[email protected]> and others
- stable release 3.9.1
- ocf-tester: tolerate OCF_ERR_INSTALLED on probes and missing binaries
- pgsql: improve configuration check and probe handling
* Wed Jun 01 2011 Dejan Muhamedagic <[email protected]> and others
- release candidate 3.9.1 rc1
- first release since establishing joined repository with RHCS agents
- build: new spec file and autoconf to support both agents' sets
- build: use ./configure --with-ras-set=linux-ha to configure for
heartbeat RA set
- build: create compatibility symlinks in autofoo not in spec
- build: GNUmakefile removed
- lxc: new RA to manage lxc linux containers
- symlink: new RA to manage symbolic links
- db2: new implementation with master/slave mode
- oracle: improve oracle process list test (bnc#673027)
- exportfs: backup and restore rmtab to ensure smooth client
failover on node failures
- CTDB: Allow stop to succeed when using pkill on ctdbd (bnc#695829)
- mysql: --skip-slave-start option is default now
- mysql: set connect timeout to 10 seconds rather than 1 second
- mysql: keep replication state (prevents data loss on master reset)
- mysql: don't rely on state information from pacemaker, but
check if the instance is in the read-only mode
- mysql: if test parameters are all set, assume OCF_CHECK_LEVEL=10
- mysql: support for master/slave for more than two nodes
- mysql: don't wait for replication to finish, when not replicating
- mysql: store replication state in separate attributes for each master
- VirtualDomain: correctly create migration URI when target is an FQDN
- VirtualDomain: properly wait until domain_name is non-empty