9 lines
218 B
Bash
Executable File
9 lines
218 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
cp $SNAP/default.conf $SNAP_DATA/config
|
|
# The config file should not be world readable, but the snap user can't read it
|
|
# either if it is chmodded. How to solve this?
|
|
#chmod 600 $SNAP_DATA/config
|