forked from lix-project/lix
parent
19ce732a13
commit
4b6d3c5a28
|
@ -68,7 +68,8 @@ public:
|
||||||
enabled{true} {};
|
enabled{true} {};
|
||||||
};;
|
};;
|
||||||
|
|
||||||
static std::vector<machine> read_conf() {
|
static std::vector<machine> read_conf()
|
||||||
|
{
|
||||||
auto conf = getEnv("NIX_REMOTE_SYSTEMS", SYSCONFDIR "/nix/machines");
|
auto conf = getEnv("NIX_REMOTE_SYSTEMS", SYSCONFDIR "/nix/machines");
|
||||||
|
|
||||||
auto machines = std::vector<machine>{};
|
auto machines = std::vector<machine>{};
|
||||||
|
@ -108,8 +109,9 @@ static std::vector<machine> read_conf() {
|
||||||
|
|
||||||
static string currentLoad;
|
static string currentLoad;
|
||||||
|
|
||||||
static int openSlotLock(const machine & m, unsigned long long slot) {
|
static int openSlotLock(const machine & m, unsigned long long slot)
|
||||||
auto fn_stream = std::stringstream(currentLoad, std::ios_base::ate | std::ios_base::out);
|
{
|
||||||
|
std::ostringstream fn_stream(currentLoad, std::ios_base::ate | std::ios_base::out);
|
||||||
fn_stream << "/";
|
fn_stream << "/";
|
||||||
for (auto t : m.systemTypes) {
|
for (auto t : m.systemTypes) {
|
||||||
fn_stream << t << "-";
|
fn_stream << t << "-";
|
||||||
|
|
Loading…
Reference in a new issue