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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
|
Source: fence-agents
Section: admin
Priority: optional
Maintainer: Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net>
Uploaders: Adrian Vondendriesch <adrian.vondendriesch@credativ.de>,
Valentin Vidic <vvidic@debian.org>
Build-Depends: autoconf,
automake,
bison,
debhelper-compat (= 13),
dh-python,
flex,
iputils-ping,
libcpg-dev,
libglib2.0-dev,
libnet-telnet-perl,
libnspr4-dev,
libnss3-dev,
libtool,
libvirt-dev,
libxml2-dev,
libxml2-utils,
perl,
python3,
python3-boto3,
python3-google-auth,
python3-googleapi,
python3-kubernetes,
python3-pexpect,
python3-pycurl,
python3-requests,
python3-suds,
systemd-dev,
time,
uuid-dev,
xsltproc,
Rules-Requires-Root: no
Standards-Version: 4.7.2
Homepage: https://github.com/ClusterLabs/fence-agents
Vcs-Browser: https://salsa.debian.org/ha-team/fence-agents
Vcs-Git: https://salsa.debian.org/ha-team/fence-agents.git
Package: fence-agents
Section: oldlibs
Architecture: all
Depends: ${misc:Depends},
fence-agents-all
Description: Fence Agents for Red Hat Cluster - transitional package
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package is a transitional package to fence-agents-all. It can safely be
removed.
Package: fence-agents-all
Architecture: all
Depends: ${misc:Depends},
fence-agents-ack-manual,
fence-agents-aliyun,
fence-agents-alom,
fence-agents-amt,
fence-agents-apc,
fence-agents-apc-snmp,
fence-agents-aws,
fence-agents-azure-arm,
fence-agents-bladecenter,
fence-agents-brocade,
fence-agents-cdu,
fence-agents-cisco-mds,
fence-agents-cisco-ucs,
fence-agents-compute,
fence-agents-crosslink,
fence-agents-cyberpower-ssh,
fence-agents-docker,
fence-agents-drac,
fence-agents-drac5,
fence-agents-dummy,
fence-agents-eaton-snmp,
fence-agents-eaton-ssh,
fence-agents-ecloud,
fence-agents-emerson,
fence-agents-eps,
fence-agents-gce,
fence-agents-hds-cb,
fence-agents-heuristics-ping,
fence-agents-hpblade,
fence-agents-ibmblade,
fence-agents-ibm-powervs,
fence-agents-ibm-vpc,
fence-agents-ibmz,
fence-agents-ifmib,
fence-agents-ilo2,
fence-agents-ilo-moonshot,
fence-agents-ilo-mp,
fence-agents-ilo-ssh,
fence-agents-intelmodular,
fence-agents-ipdu,
fence-agents-ipmilan,
fence-agents-ironic,
fence-agents-kdump,
fence-agents-kubevirt,
fence-agents-ldom,
fence-agents-lindy-pdu,
fence-agents-lpar,
fence-agents-mpath,
fence-agents-netio,
fence-agents-nutanix-ahv,
fence-agents-openstack,
fence-agents-ovh,
fence-agents-ovm,
fence-agents-powerman,
fence-agents-pve,
fence-agents-raritan,
fence-agents-raritan-px3,
fence-agents-rcd-serial,
fence-agents-redfish,
fence-agents-rhevm,
fence-agents-rsa,
fence-agents-rsb,
fence-agents-sanbox2,
fence-agents-scsi,
fence-agents-skalar,
fence-agents-vbox,
fence-agents-virsh,
fence-agents-vmware,
fence-agents-vmware-rest,
fence-agents-vmware-soap,
fence-agents-vmware-vcloud,
fence-agents-wti,
fence-agents-xenapi,
fence-virt
Suggests: fence-agents-sbd
Replaces: fence-agents (<< 4.16.0)
Breaks: fence-agents (<< 4.16.0)
Description: Fence Agents for Red Hat Cluster - all agents
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package is a metapackage depending on all available fence agents.
Package: fence-agents-common
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
python3-pexpect,
python3-pycurl,
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Description: Fence Agents for Red Hat Cluster - common files
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides common files used by all fence agents.
Package: fence-agents-aliyun
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Aliyun agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides an I/O fencing agent for Aliyun Web Services in Alibaba
Cloud.
.
Note: This agent requires Aliyun Python SDK to be functional.
Package: fence-agents-ack-manual
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - manual ack agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ack_manual tells fenced to stop retrying and consider the node fenced.
.
It is important that this only be done after the node has been manually turned
off or prevented from writing to shared storage. Without this manual action
and verification, the storage that fencing protects may become corrupted.
Package: fence-agents-alom
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Sun ALOM agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_alom is an I/O Fencing agent which can be used with ALOM connected
machines.
Package: fence-agents-amt
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
amtterm
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Intel AMT agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_amt is an I/O Fencing agent which can be used with Intel AMT.
Package: fence-agents-apc
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - APC over telnet/ssh agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_apc is an I/O Fencing agent which can be used with the APC network power
switch. It logs into device via telnet/ssh and reboots a specified outlet.
Lengthy telnet/ssh connections should be avoided while a GFS cluster is running
because the connection will block any necessary fencing actions.
Package: fence-agents-apc-snmp
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - APC over SNMP agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides an I/O Fencing agents which can be used with the APC
network power switch or Tripplite PDU devices. It logs into a device via SNMP
and reboots a specified outlet. It supports SNMP v1, v2c, v3 with all
combinations of authenticity/privacy settings.
Package: fence-agents-aws
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-boto3,
python3-requests
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - AWS agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_aws is an I/O Fencing agent for AWS (Amazon Web Services). It uses the
boto3 library to connect to AWS.
Package: fence-agents-azure-arm
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-azure
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Azure ARM agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_azure_arm is an I/O Fencing agent for Azure Resource Manager. It uses
Azure SDK for Python to connect to Azure.
Package: fence-agents-bladecenter
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM BladeCenter telnet agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_bladecenter is an I/O Fencing agent which can be used with IBM
BladeCenters with recent enough firmware that includes telnet support. It logs
into a Brocade chasis via telnet or ssh and uses the command line interface to
power on and off blades.
Package: fence-agents-brocade
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - HP Brocade agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_brocade is an I/O Fencing agent which can be used with Brocade FC
switches. It logs into a Brocade switch via telnet and disables a specified
port. Disabling the port which a machine is connected to effectively fences
that machine. Lengthy telnet connections to the switch should be avoided while
a GFS cluster is running because the connection will block any necessary
fencing actions.
Package: fence-agents-cdu
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Sentry Switch CDU agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_cdu is an I/O Fencing agent which can be used with the Sentry Switch
CDU. It logs into the device via telnet and power's on/off an outlet.
Package: fence-agents-cisco-mds
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Cisco MDS agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_cisco_mds is an I/O Fencing agent which can be used with any Cisco MDS
9000 series with SNMP enabled device.
Package: fence-agents-cisco-ucs
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Cisco UCS agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_cisco_ucs is an I/O Fencing agent which can be used with Cisco UCS to
fence machines.
Package: fence-agents-compute
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-novaclient
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - OpenStack Compute agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
It tells Nova that compute nodes are down and to reschedule flagged instances.
Package: fence-agents-crosslink
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
iputils-ping
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - crosslink cable agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides an agent that helps two-node clusters to tackle the
situation where one node lost power and cannot be fenced by telling pacemaker
that if the node is not reachable over the crosslink cable, it can be assumed
to be dead.
Package: fence-agents-cyberpower-ssh
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - CyberPower agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_cyberpower_ssh is an I/O Fencing agent which can be used with the
CyberPower network power switch. It logs into device via ssh and reboots a
specified outlet. Lengthy ssh connections should be avoided while a GFS cluster
is running because the connection will block any necessary fencing actions.
Package: fence-agents-docker
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Docker agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_docker is I/O fencing agent which can be used with the Docker Engine
containers. You can use this fence-agent without any authentication, or you can
use TLS authentication.
Package: fence-agents-drac
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Dell DRAC 4 agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_drac is an I/O Fencing agent which can be used with the Dell Remote
Access Card (DRAC). This card provides remote access to controlling power to a
server. It logs into the DRAC through the telnet interface of the card.
Package: fence-agents-drac5
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Dell DRAC 5 agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_drac5 is an I/O Fencing agent which can be used with the Dell Remote
Access Card v5 or CMC (DRAC). This device provides remote access to controlling
power to a server. It logs into the DRAC through the telnet/ssh interface of
the card.
Package: fence-agents-dummy
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - dummy agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agent used for testing purpose.
Package: fence-agents-eaton-snmp
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Eaton SNMP agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_eaton_snmp is an I/O Fencing agent which can be used with the Eaton
network power switch. It logs into a device via SNMP and reboots a specified
outlet. It supports SNMP v1 and v3 with all combinations of
authenticity/privacy settings.
Package: fence-agents-eaton-ssh
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Eaton SSH agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_eaton_ssh is a Power Fencing agent that connects to Eaton ePDU devices.
It logs into device via ssh and reboot a specified outlet.
Package: fence-agents-ecloud
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - ANS eCloud agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ecloud is a fence agent for use with the ANS eCloud platform which is
compatible with eCloud VPC and eCloud v1.
Package: fence-agents-emerson
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Emerson SNMP agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_emerson is an I/O Fencing agent which can be used with MPX and MPH2
managed rack PDU.
Package: fence-agents-eps
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - ePowerSwitch agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_eps is an I/O Fencing agent which can be used with the ePowerSwitch 8M+
power switch to fence connected machines. Fence agent works ONLY on 8M+ device,
because this is only one, which has support for hidden page feature.
.
fence_epsr2 is an I/O Fencing agent for ePowerSwitch R2 and newer. In most
cases you want to use fence_epsr2, as fence_eps only works with older
hardware.
Package: fence-agents-gce
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-googleapi,
python3-socks
Suggests: python3-google-auth
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Google Compute Engine agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_gce is an I/O Fencing agent for GCE (Google Cloud Engine). It uses the
googleapiclient library to connect to GCE.
Package: fence-agents-hds-cb
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Hitachi Compute Blade agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_hds_cb is an I/O Fencing agent which can be used with Hitachi Compute
Blades with recent enough firmware that includes telnet support.
Package: fence-agents-heuristics-ping
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
iputils-ping,
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - heuristics ping agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_heuristics_ping uses ping-heuristics to control execution of another
fence agent on the same fencing level.
.
This is not a fence agent by itself. Its only purpose is to enable/disable
another fence agent that lives on the same fencing level but after
fence_heuristics_ping.
Package: fence-agents-hpblade
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - HPE BladeSystem agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_hpblade is an I/O Fencing agent which can be used with HPE BladeSystem
and HPE Integrity Superdome X. It logs into the onboard administrator of an
enclosure via telnet or ssh and uses the command line interface to power blades
or partitions on or off.
Package: fence-agents-ibmblade
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM BladeCenter SNMP agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ibmblade is an I/O Fencing agent which can be used with IBM BladeCenter
chassis. It issues SNMP Set request to BladeCenter chassis, rebooting, powering
up or down the specified Blade Server.
Package: fence-agents-ibm-powervs
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM PowerVS agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ibm_powervs is an I/O Fencing agent which can be used with IBM PowerVS
to fence virtual machines.
Package: fence-agents-ibm-vpc
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM Cloud VPC agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ibm_vpc is an I/O Fencing agent which can be used with IBM Cloud VPC to
fence virtual machines.
Package: fence-agents-ibmz
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM zSystems agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ibmz is a power fencing agent which uses the HMC Web Services API to
fence IBM zSystems LPARs.
Package: fence-agents-ifmib
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IF-MIB SNMP agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ifmib is an I/O Fencing agent which can be used with any SNMP IF-MIB
capable device.
.
It was written with managed ethernet switches in mind, in order to fence iSCSI
SAN connections. However, there are many devices that support the IF-MIB
interface. The agent uses IF-MIB::ifAdminStatus to control the state of an
interface.
Package: fence-agents-ilo2
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
gnutls-bin,
python3-pexpect,
python3-xmlschema
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - HP iLO2 agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agents for HP iLO2 devices that are accessed via the HTTP(s) protocol.
Package: fence-agents-ilo-moonshot
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - HP Moonshot iLO agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agent for HP iLO Moonshot devices that are accessed via telnet or SSH.
Package: fence-agents-ilo-mp
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - HP iLO MP agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agent for HP Integrated Lights-Out Management Processor devices that are
accessed via telnet or SSH.
Package: fence-agents-ilo-ssh
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - HP iLO over SSH agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ilo_ssh is a fence agent that connects to iLO device. It logs into
device via ssh and reboot a specified outlet.
Package: fence-agents-intelmodular
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Intel Modular agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_intelmodular is an I/O Fencing agent which can be used with Intel
Modular device (tested on Intel MFSYS25, should work with MFSYS35 as well).
Package: fence-agents-ipdu
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM iPDU agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ipdu is an I/O Fencing agent which can be used with the IBM iPDU network
power switch. It logs into a device via SNMP and reboots a specified outlet. It
supports SNMP v3 with all combinations of authenticity/privacy settings.
Package: fence-agents-ipmilan
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
ipmitool
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IPMI agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agents to manage nodes with available IPMI interface.
Package: fence-agents-ironic
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-openstackclient
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - OpenStack Ironic agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ironic is a Fencing agent which can be used with machines controlled by
the Ironic (Bare Metal as a service) service. This agent calls the openstack
CLI.
Package: fence-agents-kdump
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - kdump agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_kdump is an I/O fencing agent to be used with the kdump crash recovery
service. When the fence_kdump agent is invoked, it will listen for a message
from the failed node that acknowledges that the failed node it executing the
kdump crash kernel. Note that fence_kdump is not a replacement for traditional
fencing methods. The fence_kdump agent can only detect that a node has entered
the kdump crash recovery service. This allows the kdump crash recovery service
complete without being preempted by traditional power fencing methods.
Package: fence-agents-kubevirt
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-kubernetes,
python3-openshift
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - KubeVirt agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_kubevirt is an I/O Fencing agent for KubeVirt.
Package: fence-agents-ldom
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Sun LDom agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ldom is an I/O Fencing agent which can be used with LDoms virtual
machines. This agent works so, that run ldm command on host machine.
Package: fence-agents-lindy-pdu
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
snmp
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Lindy PDU agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_lindypdu is an I/O Fencing agent which can be used with the Lindy PDU
network power switch. It logs into a device via SNMP and reboots a specified
outlet. It supports SNMP v1 with all combinations of authenticity/privacy
settings.
Package: fence-agents-lpar
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM LPAR agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agent for IBM LPAR devices that are accessed via telnet or SSH.
Package: fence-agents-mpath
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
multipath-tools
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - multipath reservation agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_mpath is an I/O fencing agent that uses SCSI-3 persistent reservations
to control access multipath devices. Underlying devices must support SCSI-3
persistent reservations (SPC-3 or greater) as well as the "preempt-and-abort"
subcommand.
Package: fence-agents-netio
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
python3-pexpect,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Koukaam NETIO-230B agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides an I/O Fencing agent which can be used with the Koukaam
NETIO-230B Power Distribution Unit. It logs into device via telnet and reboots
a specified outlet. Lengthy telnet connections should be avoided while the
cluster is running because the connection will block any necessary fencing
actions.
Package: fence-agents-nutanix-ahv
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Nutanix AHV agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides a Power Fencing agent for virtual machines deployed on
Nutanix AHV cluster with the AHV cluster being managed by Prism Central.
Package: fence-agents-openstack
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-novaclient,
python3-yaml
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - OpenStack Nova agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_openstack is a Fencing agent which can be used with machines controlled
by the OpenStack's Nova service.
Package: fence-agents-ovh
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-suds
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - OVH agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ovh is an Power Fencing agent which can be used within OVH datecentre.
Poweroff is simulated with a reboot into rescue-pro mode.
Package: fence-agents-ovm
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Oracle VM agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_ovm is a Power Fencing agent which can be used with the virtual machines
managed by Oracle VM Manager.
Package: fence-agents-powerman
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
powerman
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Powerman agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides a fence agent for the Powerman management utility that
was designed for LLNL systems.
Package: fence-agents-pve
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Proxmox VE agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_pve agent can be used to fence virtual machines acting as nodes in a
virtualized cluster.
Package: fence-agents-raritan
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pexpect,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Raritan Dominion PX agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_raritan is an I/O Fencing agent which can be used with the Raritan
DPXS12-20 Power Distribution Unit. It logs into device via telnet and reboots a
specified outlet. Lengthy telnet connections should be avoided while a GFS
cluster is running because the connection will block any necessary fencing
actions.
Package: fence-agents-raritan-px3
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Raritan Dominion PX2/PX3 agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_raritan is an I/O Fencing agent which can be used with the Raritan PX2
and PX3 Power Distribution Unit series. It logs into device via telnet or ssh
and reboots a specified outlet. Single outlets and grouped outlets are
supported.
Package: fence-agents-rcd-serial
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - RCD serial agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_rcd_serial operates a serial cable that toggles a reset of an opposing
server using the reset switch on its motherboard. The cable itself is simple
with no power, network or moving parts.
Package: fence-agents-redfish
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests
Suggests: python3-urllib3
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Redfish agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_redfish is an I/O Fencing agent which can be used with Out-of-Band
controllers that support Redfish APIs. These controllers provide remote access
to control power on a server.
Package: fence-agents-rhevm
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - RHEV-M REST API agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_rhevm is an I/O Fencing agent which can be used with RHEV-M REST API to
fence virtual machines.
Package: fence-agents-rsa
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM RSA agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_rsa is an I/O Fencing agent which can be used with the IBM RSA II
management interface. It logs into an RSA II device via telnet and reboots the
associated machine. Lengthy telnet connections to the RSA II device should be
avoided while a GFS cluster is running because the connection will block any
necessary fencing actions.
Package: fence-agents-rsb
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Fujitsu-Siemens RSB agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_rsb is an I/O Fencing agent which can be used with the Fujitsu-Siemens
RSB management interface. It logs into device via telnet/ssh and reboots a
specified outlet. Lengthy telnet/ssh connections should be avoided while a GFS
cluster is running because the connection will block any necessary fencing
actions.
Package: fence-agents-sanbox2
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pexpect
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - QLogic SANBox2 FC switch agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_sanbox2 is an I/O Fencing agent which can be used with QLogic SANBox2 FC
switches. It logs into a SANBox2 switch via telnet and disables a specified
port.
Package: fence-agents-sbd
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
sbd
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - STONITH Block Device agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_sbd is I/O Fencing agent which can be used in environments where sbd can
be used (shared storage).
Package: fence-agents-scsi
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
sg3-utils
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - SCSI-3 reservation agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_scsi is an I/O fencing agent that uses SCSI-3 persistent reservations to
control access to shared storage devices. These devices must support SCSI-3
persistent reservations (SPC-3 or greater) as well as the "preempt-and-abort"
subcommand.
Package: fence-agents-skalar
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests,
python3-urllib3,
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Skala-R agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
Fence agent used to manage nodes in Skala-R.
Package: fence-agents-vbox
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - VirtualBox agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_vbox is an I/O Fencing agent which can be used with the virtual machines
managed by VirtualBox. It logs via ssh to a dom0 where it runs VBoxManage to do
all of the work.
Package: fence-agents-virsh
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - virsh agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_virsh is an I/O Fencing agent which can be used with the virtual
machines managed by libvirt. It logs via ssh to a dom0 and there run virsh
command, which does all work.
Package: fence-agents-vmware
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pexpect
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - VMware agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides an I/O Fencing agent which can be used with the VMware
ESX, VMware ESXi or VMware Server to fence virtual machines.
.
Before using this agent, VI Perl Toolkit or vmrun command needs to be
installed on every machine running this agent.
Package: fence-agents-vmware-rest
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - VMware REST API agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_vmware_rest is an I/O Fencing agent which can be used with VMware API to
fence virtual machines.
Package: fence-agents-vmware-soap
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-requests,
python3-suds
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - VMware SOAP API agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_vmware_soap is an I/O Fencing agent which can be used with the virtual
machines managed by VMWare products that have SOAP API v4.1+.
Package: fence-agents-vmware-vcloud
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pycurl
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - VMware vCloud Director API agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_vmware_vcloud is an I/O Fencing agent which can be used with VMware
vCloud Director API to fence virtual machines.
Package: fence-agents-wti
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
openssh-client,
python3-pexpect,
telnet
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - WTI Network Power Switch agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_wti is an I/O Fencing agent which can be used with the WTI Network Power
Switch (NPS). It logs into an NPS via telnet or ssh and boots a specified plug.
Lengthy telnet connections to the NPS should be avoided while a GFS cluster is
running because the connection will block any necessary fencing actions.
Package: fence-agents-xenapi
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version}),
python3-pexpect
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - Citrix XenServer agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
fence_xenapi is an I/O Fencing agent used on Citrix XenServer hosts. It uses
the XenAPI, supplied by Citrix, to establish an XML-RPC session to a XenServer
host. Once the session is established, further XML-RPC commands are issued in
order to switch on, switch off, restart and query the status of virtual
machines running on the host.
Package: fence-agents-zvm
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
fence-agents-common (>= ${source:Version})
Breaks: fence-agents (<< 4.12.1-2~exp1)
Replaces: fence-agents (<< 4.12.1-2~exp1)
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - IBM z/VM agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
This package provides a fencing agent for z/VM virtual machines using SMAPI
service over TCP/IP.
Package: fence-virt
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
fence-agents-common (>= ${source:Version})
Provides: fence-agent
Description: Fence Agents for Red Hat Cluster - virt agent
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
The fencing framework consists of the agent (fence_virt) and
the host daemon (fence_virtd). The fence_virtd host daemon is
responsible for processing fencing requests from fence_virt agents
running in virtual machines and routing the requests to the
appropriate physical machine for action.
.
This package contains the fence_virt agent to be used inside the
virtual machine.
Package: fence-virtd
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
fence-agents-common (>= ${source:Version})
Pre-Depends: ${misc:Pre-Depends}
Description: Fence Agents for Red Hat Cluster - virt daemon
Red Hat Fence Agents is a collection of scripts to handle remote power
management for several devices. They allow failed or unreachable nodes to be
forcibly restarted and removed from the cluster.
.
The fencing framework consists of the agent (fence_virt) and
the host daemon (fence_virtd). The fence_virtd host daemon is
responsible for processing fencing requests from fence_virt agents
running in virtual machines and routing the requests to the
appropriate physical machine for action.
.
This package contains the fence_virtd daemon to be used on the
physical host.
|