854c711ac6
Exactly one kind of setting-hostname is done, and that's entirely independent of writing /etc/hosts. Don't make it a set of flags, use an enum and a bool.
34 lines
844 B
C++
34 lines
844 B
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014 Rohan Garg <rohan@kde.org>
|
|
* SPDX-FileCopyrightText: 2015 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#ifndef SETHOSTNAMEJOB_CPP_H
|
|
#define SETHOSTNAMEJOB_CPP_H
|
|
|
|
#include "Config.h"
|
|
|
|
#include "Job.h"
|
|
|
|
class SetHostNameJob : public Calamares::Job
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SetHostNameJob( const Config* c );
|
|
QString prettyName() const override;
|
|
QString prettyDescription() const override;
|
|
QString prettyStatusMessage() const override;
|
|
Calamares::JobResult exec() override;
|
|
|
|
private:
|
|
const Config* m_config;
|
|
};
|
|
|
|
#endif // SETHOSTNAMEJOB_CPP_H
|