/
githubmirror
/
ignition
Обзор
Документация
Войти
/
githubmirror
/
ignition
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/positive/systemd/create_unit.go
65 строк
2 KB
Andrew Jeddeloh
tests/*: rename bb tests
02 май 2019, 23:05
02 май 2019, 23:05
d156383
Код
Авторство
О чём код?
// Copyright 2017 CoreOS, Inc. // // 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 systemd import ( "github.com/coreos/ignition/v2/tests/register" "github.com/coreos/ignition/v2/tests/types" ) func init() { register.Register(register.PositiveTest, CreateSystemdService()) } func CreateSystemdService() types.Test { name := "systemd.unit.create" in := types.GetBaseDisk() out := types.GetBaseDisk() config := `{ "ignition": { "version": "$version" }, "systemd": { "units": [{ "name": "example.service", "enabled": true, "contents": "[Service]\nType=oneshot\nExecStart=/usr/bin/echo Hello World\n\n[Install]\nWantedBy=multi-user.target" }] } }` configMinVersion := "3.0.0" out[0].Partitions.AddFiles("ROOT", []types.File{ { Node: types.Node{ Name: "example.service", Directory: "etc/systemd/system", }, Contents: "[Service]\nType=oneshot\nExecStart=/usr/bin/echo Hello World\n\n[Install]\nWantedBy=multi-user.target", }, { Node: types.Node{ Name: "20-ignition.preset", Directory: "etc/systemd/system-preset", }, Contents: "enable example.service\n", }, }) return types.Test{ Name: name, In: in, Out: out, Config: config, ConfigMinVersion: configMinVersion, } }