Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
Vm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jiří Kalvoda
Vm
Compare revisions
c28157219b78d12656d43e0a906d6335dace821f to 7968cbf05439b74a48ff14eb62eb82ffebd3e091
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
jirikalvoda/vm
Select target project
No results found
7968cbf05439b74a48ff14eb62eb82ffebd3e091
Select Git revision
Branches
master
1 result
Swap
Target
jirikalvoda/vm
Select target project
jirikalvoda/vm
1 result
c28157219b78d12656d43e0a906d6335dace821f
Select Git revision
Branches
master
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
VM ...
· 071990ec
Jiří Kalvoda
authored
1 year ago
071990ec
Install script and systemd service
· 7968cbf0
Jiří Kalvoda
authored
1 year ago
7968cbf0
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
init.sh
+3
-0
3 additions, 0 deletions
init.sh
vm.py
+264
-90
264 additions, 90 deletions
vm.py
vm.service
+15
-0
15 additions, 0 deletions
vm.service
with
282 additions
and
90 deletions
init.sh
0 → 100755
View file @
7968cbf0
#!/bin/bash
ln
-sr
vm.py /usr/bin/vm
cp
vm.service /lib/systemd/system/
This diff is collapsed.
Click to expand it.
vm.py
View file @
7968cbf0
This diff is collapsed.
Click to expand it.
vm.service
0 → 100644
View file @
7968cbf0
[Unit]
Description
=
vm
After
=
network.target
[Service]
Environment
=
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/sbin:/usr/bin:/bin:/home/jiri/bin
WorkingDirectory
=
/mnt/virtual
ExecStart
=
/mnt/virtual/prog/vm.py server
Restart
=
always
RestartSec
=
10
[Install]
WantedBy
=
default.target
This diff is collapsed.
Click to expand it.