# python-rac **Repository Path**: mirrors_iamseth/python-rac ## Basic Information - **Project Name**: python-rac - **Description**: Python module to work with Dell's RAC - **Primary Language**: Unknown - **License**: WTFPL - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README python-rac ============= Implementation of racadm in pure Python Installation ============= ### PyPi ```bash pip install rac ``` ### Manually ```bash python setup.py test python setup.py build sudo python setup.py install ``` Usage ============= ### View server config information ```bash racadm -H 10.0.0.100 -u root -p calvin -c "getconfig -g cfgServerInfo" ``` ### Set first boot device to PXE just once ```bash racadm -H 10.0.0.100 -u root -p calvin -c "getconfig -g cfgServerInfo -o cfgServerFirstBootDevice pxe" racadm -H 10.0.0.100 -u root -p calvin -c "getconfig -g cfgServerInfo -o cfgServerBootOnce 1" ``` ### Reboot the host ```bash racadm -H 10.0.0.100 -u root -p calvin -c "serveraction powercycle" ```