f1eb133bc5
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13429 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
153 lines
6.3 KiB
Plaintext
153 lines
6.3 KiB
Plaintext
start:makedhcp_n
|
|
os:Linux
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
cmd:makedhcp -n
|
|
check:rc==0
|
|
cmd:ls /etc/dhcp/dhcpd.conf || ls /etc/dhcpd.conf
|
|
check:rc==0
|
|
cmd:ps -e | grep dhcpd
|
|
check:rc==0
|
|
check:output=~dhcpd
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ]; then mv -f /etc/dhcp/dhcpd.conf.bak /etc/dhcp/dhcpd.conf; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf.bak /etc/dhcpd.conf; fi
|
|
end
|
|
|
|
start:makedhcp_h
|
|
description:help
|
|
cmd:makedhcp -h
|
|
check:rc==0
|
|
check:output=~Usage
|
|
end
|
|
|
|
start:makedhcp_help
|
|
description:help
|
|
cmd:makedhcp -h
|
|
check:rc==0
|
|
check:output=~Usage
|
|
end
|
|
|
|
start:makedhcp_n_linux
|
|
description:Create a new dhcp configuration file with a network statement for each network the dhcp daemon should listen on
|
|
os:Linux
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
cmd:makedhcp -n
|
|
check:rc==0
|
|
cmd:ls /etc/dhcp/dhcpd.conf || ls /etc/dhcpd.conf
|
|
check:rc==0
|
|
cmd:ps -e | grep dhcpd
|
|
check:rc==0
|
|
check:output=~dhcpd
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
end
|
|
|
|
start:makedhcp_n_aix
|
|
description:Create a new dhcp configuration file with a network statement for each network the dhcp daemon should listen on
|
|
os:Aix
|
|
cmd:mv -f /etc/dhcpsd.cnf /etc/dhcpsd.conf.bak
|
|
cmd:makedhcp -n
|
|
check:rc==0
|
|
cmd:ls /etc/dhcpsd.cnf
|
|
check:rc==0
|
|
cmd:ps -e | grep dhcpd
|
|
check:rc==0
|
|
check:output=~dhcpd
|
|
end
|
|
|
|
start:makedhcp_a_linux
|
|
description:Define all nodes to the DHCP server. (Will only add nodes that can be reached, network-wise, by this DHCP server.) The dhcp daemon does not have to be restarted after this.
|
|
os:Linux
|
|
cmd:mkdef -t node -o testnode1 groups=compute mac=11:22:33:55:66:88 arch=ppc64
|
|
cmd:chdef -t node -o testnode1 netboot=yaboot tftpserver=192.16.10.0 nfsserver=192.16.10.0 monserver=192.16.10.0 xcatmaster=192.16.10.0 installnic="mac" primarynic="mac"
|
|
cmd:lsdef -l testnode1 -z > /tmp/CN.stanza
|
|
cmd:chdef -t node -o testnode1 mac=11:22:33:44:55:66
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
cmd:makedhcp -n
|
|
cmd:makedhcp -a
|
|
check:rc==0
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases; fi
|
|
check:output=~testnode1
|
|
check:output=~11:22:33:44:55:66
|
|
cmd:cat /tmp/CN.stanza | chdef -z
|
|
cmd:rmdef testnode1
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
end
|
|
|
|
start:makedhcp_a_d_linux
|
|
os:Linux
|
|
cmd:lsdef -t node -l -z > /tmp/all.nodes
|
|
cmd:mkdef -t node -o testnode1 groups=compute mac=11:22:33:55:66:88 arch=ppc64
|
|
cmd:mkdef -t node -o testnode2 groups=compute mac=11:22:33:55:66:99 arch=ppc64
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
cmd:makedhcp -n
|
|
cmd:makedhcp -a
|
|
check:rc==0
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases > /tmp/1; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases > /tmp/1; fi
|
|
cmd:makedhcp -a -d
|
|
check:rc==0
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases > /tmp/2; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases > /tmp/2; fi
|
|
cmd:diff /tmp/1 /tmp/2
|
|
check:output=~testnode1
|
|
check:output=~deleted
|
|
check:output=~testnode2
|
|
cmd:cat /tmp/all.nodes | chdef -z
|
|
cmd:rmdef testnode1
|
|
cmd:rmdef testnode2
|
|
#cmd:rm -f /tmp/1 /tmp/2
|
|
end
|
|
|
|
start:makedhcp_d_linux
|
|
description:Delete all node entries, added by xCAT, in the noderange from the DHCP server configuration.
|
|
os:Linux
|
|
cmd:mkdef -t node -o testnode1 groups=compute mac=11:22:33:55:66:88 arch=ppc64
|
|
cmd:chdef -t node -o testnode1 netboot=yaboot tftpserver=192.16.10.0 nfsserver=192.16.10.0 monserver=192.16.10.0 xcatmaster=192.16.10.0 installnic="mac" primarynic="mac"
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ];then mv -f /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak ; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf /etc/dhcpd.conf.bak; fi
|
|
cmd:lsdef -l testnode1 -z > /tmp/CN.stanza
|
|
cmd:chdef -t node -o testnode1 mac=11:22:33:44:55:66
|
|
cmd:makedhcp -n
|
|
cmd:makedhcp testnode1
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases > /tmp/1; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases > /tmp/1; fi
|
|
cmd:makedhcp -d testnode1
|
|
check:rc==0
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases > /tmp/2; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases > /tmp/2; fi
|
|
cmd:diff /tmp/1 /tmp/2
|
|
check:output=~testnode1
|
|
check:output=~deleted
|
|
cmd:cat /tmp/CN.stanza | chdef -z
|
|
cmd:rmdef testnode1
|
|
cmd:if [ -f "/etc/dhcp/dhcpd.conf" ]; then mv -f /etc/dhcp/dhcpd.conf.bak /etc/dhcp/dhcpd.conf; elif [ -f "/etc/dhcpd.conf" ]; then mv -f /etc/dhcpd.conf.bak /etc/dhcpd.conf; fi
|
|
cmd:rm -f /tmp/1 /tmp/2
|
|
end
|
|
|
|
start:makedhcp_a
|
|
os:Linux
|
|
cmd:lsdef -l $$CN -z > /tmp/$$CN.stanza
|
|
cmd:chdef -t node -o $$CN mac=11:22:33:44:55:66
|
|
cmd:makedhcp -a
|
|
check:rc==0
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases; fi
|
|
check:output=~$$CN
|
|
check:output=~11:22:33:44:55:66
|
|
cmd:chdef -t node -o $$CN mac=
|
|
cmd:cat /tmp/$$CN.stanza | chdef -z
|
|
end
|
|
|
|
start:makedhcp_a_d
|
|
os:Linux
|
|
cmd:makedhcp -a -d
|
|
check:rc==0
|
|
cmd:service dhcpd restart
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases | grep $$CN; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases | grep $$CN; fi
|
|
check:output!~$$CN
|
|
cmd:makedhcp -a
|
|
end
|
|
|
|
start:makedhcp_d
|
|
os:Linux
|
|
cmd:makedhcp -d $$CN
|
|
check:rc==0
|
|
cmd:service dhcpd restart
|
|
cmd:if [ -f /var/lib/dhcpd/dhcpd.leases ]; then cat /var/lib/dhcpd/dhcpd.leases | grep $$CN; elif [ -f /var/lib/dhcp/db/dhcpd.leases ]; then cat /var/lib/dhcp/db/dhcpd.leases | grep $$CN; fi
|
|
check:output!~$$CN
|
|
cmd:makedhcp -a
|
|
end
|
|
|