mirror of
https://github.com/unman/shaker.git
synced 2024-10-01 01:25:41 -04:00
14 lines
422 B
Plaintext
14 lines
422 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# This script will be executed at every VM startup, you can place your own
|
||
|
# custom commands here. This includes overriding some configuration in /etc,
|
||
|
# starting services etc.
|
||
|
|
||
|
# Example for overriding the whole CUPS configuration:
|
||
|
# rm -rf /etc/cups
|
||
|
# ln -s /rw/config/cups /etc/cups
|
||
|
# systemctl --no-block restart cups
|
||
|
cp snort.service /usr/lib/systemd/system
|
||
|
systemctl unmask snort
|
||
|
systemctl start snort
|