ramm 0.0.43 → 0.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ramm.js +2 -2
- package/package.json +1 -1
package/dist/ramm.js
CHANGED
|
@@ -254,8 +254,8 @@ var getSystemdPathToService = (serviceName, context = defaultContext) => {
|
|
|
254
254
|
};
|
|
255
255
|
var createSystemdService = async (serviceName, content, context = defaultContext) => {
|
|
256
256
|
await createSystemdUnit(serviceName, content, context);
|
|
257
|
-
await enabledSystemdUnit(
|
|
258
|
-
await startSystemdUnit(
|
|
257
|
+
await enabledSystemdUnit(serviceName, context);
|
|
258
|
+
await startSystemdUnit(serviceName, context);
|
|
259
259
|
};
|
|
260
260
|
|
|
261
261
|
// src/nft.ts
|
package/package.json
CHANGED