@@ -226,7 +226,9 @@ Manual intervention is required to upgrade the frontend file to version 0.7.0.0,
....
)
```
The incorret way is
```
@execute = (
#!/usr/bin/sh
...
...
@@ -234,13 +236,16 @@ Manual intervention is required to upgrade the frontend file to version 0.7.0.0,
....
)
```
The following is also incorrect
```
@execute = ( #!/usr/bin/sh
echo myscript
....
)
```
Failure to adhere to the correct syntax will result in an `Error format` during the execution of the service.
...
...
@@ -266,6 +271,7 @@ Manual intervention is required to upgrade the frontend file to version 0.7.0.0,
[start]
@execute=(true)
```
Certainly, you can replace the `bundle` type with the `module` type. However, depending on your specific cases, the `module` type might overcomplicate the service itself.
- The `module` type must be redefined from scratch due to significant changes in the directory `module` structure.. Refers to the [module-creation](module-creation.html) documentation for detailed information.
@@ -27,7 +27,7 @@ Primarily, expect no compatibility with previous versions due to:
- An overhaul of tree behavior. Trees now function as services, and a complete tree dependency graph has been implemented.
- Services can now depend on each other regardless of whether the service is declared on the same tree or the declaration order of the tree. For instance, if service `Sb` depends on service `Sa` and `Sa` is within `TreeB` while service `Sb` is within `TreeA`, and `TreeB` depends on `TreeA`, launching `TreeA` will start `Sa` even if `TreeB` isn't started first. When `TreeB` is executed, `Sb` will find `Sa` already started and commence directly.
For UI changes, frontend file convertion and clean of the `66` architecture, a [Rosetta stone](#rosetta.md) is available.
For UI changes, frontend file convertion and clean of the `66` architecture, a [Rosetta stone](rosetta.html) is available.