Fix language issues and usability issue

This commit is contained in:
TomZ 2017-12-12 15:56:33 +01:00
parent 4d51ea9387
commit 3abc3b1b75
No known key found for this signature in database
GPG Key ID: C2A5545EA91CCAE7
2 changed files with 9 additions and 11 deletions

View File

@ -25,33 +25,31 @@ if mountpoint -q /rw ; then
# This script will be executed at every VM startup, you can place your own # This script will be executed at every VM startup, you can place your own
# custom commands here. This include overriding some configuration in /etc, # custom commands here. This include overriding some configuration in /etc,
# starting services etc. # starting services etc.
#
# You need to make this script executable to have it enabled.
# Example for overriding the whole CUPS configuration: # Example for overriding the whole CUPS configuration:
# rm -rf /etc/cups # rm -rf /etc/cups
# ln -s /rw/config/cups /etc/cups # ln -s /rw/config/cups /etc/cups
# systemctl --no-block restart cups # systemctl --no-block restart cups
EOF EOF
chmod 755 /rw/config/rc.local
touch /rw/config/qubes-firewall-user-script touch /rw/config/qubes-firewall-user-script
cat > /rw/config/qubes-firewall-user-script <<EOF cat > /rw/config/qubes-firewall-user-script <<EOF
#!/bin/sh #!/bin/sh
# This script is called in ProxyVM after firewall every update (configuration # This script is called in AppVMs after every firewall update (configuration
# change, starting some VM etc). This is good place to write own custom # change, starting some VM etc). This is good place to write own custom
# firewall rules, in addition to autogenerated one. Remember that in most cases # firewall rules, in addition to autogenerated ones. Remember that in most cases
# you'll need to insert the rules at the beginning (iptables -I) to have it # you'll need to insert the rules at the beginning (iptables -I) for it to be
# efective. # efective.
#
# You need to make this script executable to have it enabled.
EOF EOF
chmod 755 /rw/config/qubes-firewall-user-script
touch /rw/config/suspend-module-blacklist touch /rw/config/suspend-module-blacklist
cat > /rw/config/suspend-module-blacklist <<EOF cat > /rw/config/suspend-module-blacklist <<EOF
# You can list here modules you want to be unloaded before going to sleep. This # You can list modules here that you want to be unloaded before going to sleep. This
# file is used only if the VM has any PCI device assigned. Modules will be # file is used only if the VM has any PCI device assigned. Modules will be
# automatically loaded after resume. # automatically re-loaded after resume.
EOF EOF
fi fi

View File

@ -1,11 +1,11 @@
#!/bin/sh #!/bin/sh
if [ -z "$1" ]; then if [ -z "$1" ]; then
echo "This service require an argument" >&2 echo "This service requires an argument" >&2
exit 1 exit 1
fi fi
# make sure it have .desktop suffix, and only one of it # make sure it has .desktop suffix, and only one of it
app_basename="${1%.desktop}.desktop" app_basename="${1%.desktop}.desktop"
# Based on XDG Base Directory Specification, Version 0.7 # Based on XDG Base Directory Specification, Version 0.7