Skip to content

Commit ae10b5d

Browse files
path typo
1 parent 04c9b60 commit ae10b5d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ollieos",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "",
55
"main": "server.js",
66
"scripts": {

src/initial_fs_setup.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ const setup_boot = async (fs: AbstractFileSystem) => {
6161
}
6262

6363
// create /etc/enable_services file if it doesn't exist
64-
const enable_services_content = `# List service IDs in this file to explicitly enable them at boot. Services not set to auto-start and aren't listed in this file won't be started at boot. This file overrides disabled_services, but is overridden by auto-start services. Lines starting with # are comments.${NEWLINE}${NEWLINE}`;
64+
const enable_services_content = `# List service IDs in this file to explicitly enable them at boot. Services not set to auto-start and aren't listed in this file won't be started at boot. This file overrides disable_services, but is overridden by auto-start services. Lines starting with # are comments.${NEWLINE}${NEWLINE}`;
6565
const absolute_enable_services = fs.absolute("/etc/enable_services");
6666
if (!(await fs.exists(absolute_enable_services))) {
6767
await fs.write_file(absolute_enable_services, enable_services_content);
6868
}
6969

70-
// create /etc/disabled_services file if it doesn't exist
70+
// create /etc/disable_services file if it doesn't exist
7171
const disabled_services_content = `# List service IDs of auto-starting services in this file to explicitly disable them at boot. Services set to auto-start that are listed in this file won't be started at boot. This file is overridden by enable_services. Lines starting with # are comments.${NEWLINE}${NEWLINE}`;
72-
const absolute_disabled_services = fs.absolute("/etc/disabled_services");
72+
const absolute_disabled_services = fs.absolute("/etc/disable_services");
7373
if (!(await fs.exists(absolute_disabled_services))) {
7474
await fs.write_file(absolute_disabled_services, disabled_services_content);
7575
}

0 commit comments

Comments
 (0)