| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package fsdriver
- import (
- "yunion.io/x/pkg/utils"
- "yunion.io/x/onecloud/pkg/apis"
- "yunion.io/x/onecloud/pkg/cloudcommon/types"
- deployapi "yunion.io/x/onecloud/pkg/hostman/hostdeployer/apis"
- )
- type SEsxiRootFs struct {
- *sGuestRootFsDriver
- }
- func NewEsxiRootFs(part IDiskPartition) IRootFsDriver {
- return &SEsxiRootFs{sGuestRootFsDriver: newGuestRootFsDriver(part)}
- }
- func (m *SEsxiRootFs) IsFsCaseInsensitive() bool {
- return false
- }
- func (m *SEsxiRootFs) GetName() string {
- return "Esxi"
- }
- func (m *SEsxiRootFs) String() string {
- return "EsxiRootFs"
- }
- func (m *SEsxiRootFs) RootSignatures() []string {
- return []string{
- "/boot.cfg", "/imgdb.tgz",
- }
- }
- func (m *SEsxiRootFs) GetLoginAccount(rootFs IDiskPartition, user string, defaultRootUser bool, windowsDefaultAdminUser bool) (string, error) {
- return "root", nil
- }
- func (m *SEsxiRootFs) GetOs() string {
- return "VMWare"
- }
- func (m *SEsxiRootFs) ChangeUserPasswd(part IDiskPartition, account, gid, publicKey, password string, isRandomPassword bool) (string, error) {
- return utils.EncryptAESBase64(gid, "(blank)")
- }
- func (m *SEsxiRootFs) DeployHostname(part IDiskPartition, hostname, domain string) error {
- return nil
- }
- func (m *SEsxiRootFs) DeployHosts(part IDiskPartition, hn, domain string, ips []string) error {
- return nil
- }
- func (m *SEsxiRootFs) GetReleaseInfo(IDiskPartition) *deployapi.ReleaseInfo {
- spath := "/boot.cfg"
- lines, _ := m.rootFs.FileGetContents(spath, false)
- prop := ParsePropStr(string(lines))
- version, _ := prop["build"]
- return &deployapi.ReleaseInfo{
- Distro: "ESXi",
- Version: version,
- Arch: apis.OS_ARCH_X86_64,
- }
- }
- func (m *SEsxiRootFs) DeployPublicKey(rootfs IDiskPartition, uname string, pubkeys *deployapi.SSHKeys) error {
- return nil
- }
- func (m *SEsxiRootFs) PrepareFsForTemplate(IDiskPartition) error {
- return nil
- }
- func (m *SEsxiRootFs) DeployNetworkingScripts(rootfs IDiskPartition, nics []*types.SServerNic) error {
- return nil
- }
- func (d *SEsxiRootFs) ConfigSshd(loginAccount, loginPassword string, sshPort int) error {
- return nil
- }
|